为什么blackview总是为空?
@property (strong, nonatomic) UIView *blackView;
[_blackView setFrame:self.view.bounds];
[_blackView setBackgroundColor:[UIColor colorWithWhite:0 alpha:0.8]];
[self.view addSubview:_blackView];
NSLog(@"%@", _blackView); // i get null
我之前使用 alloc init 实例化它,但我需要在方法之间访问这个视图,所以我将它用作属性