【发布时间】:2013-09-28 14:43:56
【问题描述】:
我已更新到 XCode 5,但无法使用旧方法将标签连接到插座:从连接检查器中按住 ctrl-drag 到表格视图单元格。没有弹出窗口出现
在我的表格视图中,我有一个带有两个标签的 ArticleCell:
@interface ArticleCell : UITableViewCell
@property (nonatomic, weak) IBOutlet UILabel *title;
@property (nonatomic, weak) IBOutlet UILabel *date;
@end
我想将这两个标签连接到这个插座。在 XCode 5 中有不同的方法吗?
【问题讨论】: