我已更新到 XCode 5,但无法使用旧方法将标签连接到插座:从 Connections 检查器中按 ctrl-drag 到表格视图单元格。没有弹出窗口出现
在我的表格视图中,我有一个带有两个标签的 ArticleCell:
@interface ArticleCell : UITableViewCell
@property (nonatomic, weak) IBOutlet UILabel *title;
@property (nonatomic, weak) IBOutlet UILabel *date;
@end
我想把这两个标签连接到这个网点。在 XCode 5 中有不同的方法吗?