我有以下带有以下xib的代码:
@property (nonatomic, retain) IBOutlet UITableViewCell *cellLoadMore;
当我尝试 NSLog cellLoadMore 时,它返回 null,但是,当我尝试 NSLog 视图时,它具有价值。cellLoadMore 返回 null 的问题可能是什么?
下面是我的代码:
- (void)viewDidLoad{
[super viewDidLoad];
NSLog(@"cell load more %@", cellLoadMore_);
NSLog(@"view %@", self.view);
}
控制台打印:
cell load more (null)
view <UITableView: 0x1284200; frame = (0 20; 320 460); clipsToBounds = YES; autoresize = W+H; layer = <CALayer: 0xa393b0>; contentOffset: {0, 0}>
注意:我的类是 UITableView 的子类。