当使用 Xcode 的分析工具时,我会收到以下内存泄漏警告UITableView
-
Object leaked: allocated object is not referenced later in this execution path and has a retain count of +1
self.contentTableView = [[UITableView alloc] initWithFrame:CGRectMake(0, 0, 320, 300) style:UITableViewStyleGrouped];
self.contentTableView.delegate = self;
self.contentTableView.dataSource = self;
self.contentTableView.scrollEnabled = NO;
self.contentTableView.backgroundColor = [AppDelegate appMainColor];
self.contentTableView.separatorColor = [UIColor whiteColor];
self.contentTableView.separatorStyle = UITableViewCellSeparatorStyleSingleLine;
[self.view addSubview:self.contentTableView];
有人遇到过这个警告吗?解决方案?
谢谢!