我在Xcode 6中创建了一个新项目并收到警告,我无法解决。我只想设置一个自定义UITableViewCell
,因为我在Xcode 5中做了1000次。
UITableViewController
和UITableViewCell
UILabel
拖入TableViewCell.h
现在我在TableViewCell.h
自动属性合成不会合成属性'textLabel' 因为它是'readwrite'但它将通过“readonly”合成 另一个属性
这是我从Interface Builder
拖出的UILabel
@property (weak, nonatomic) IBOutlet UILabel *textLabel;
如何解决此警告?我以前从未见过它,它在Xcode 5中完美运行。
答案 0 :(得分:5)
更改属性名称,以便不覆盖现有属性,或添加
@synthesize textLabel = _textLabel;
最好以不同的方式命名。