在更新到iOS8.3之后,我开始收到一些新的警告,不在iOS8.2上.一个特别是我的眼睛;
@property (strong,nonatomic) IBOutlet UITableView *tableView;@H_502_4@这在’.m’文件中被声明. @H_502_4@iOS8.3中发生了什么变化,使其成为警告?
Auto property synthesis will not synthesize property 'tableView'; it will be implemented by its superclass,use @dynamic to acknowledge intention
解决方法
如果您使用的是UITableViewController,那么tableView已经被合成了. (即self.tableView是UITableViewController的tableView).