3

我已更新到 XCode 5,但无法使用旧方法将标签连接到插座:从 Connections 检查器中按 ctrl-drag 到表格视图单元格。没有弹出窗口出现

在我的表格视图中,我有一个带有两个标签的 ArticleCell:

@interface ArticleCell : UITableViewCell
@property (nonatomic, weak) IBOutlet UILabel *title;
@property (nonatomic, weak) IBOutlet UILabel *date;
@end

我想把这两个标签连接到这个网点。在 XCode 5 中有不同的方法吗?

4

1 回答 1

4

如果您在情节提要或 XIB 文件中将表格视图单元格的“自定义类”ArticleCell设置为“ ”,您应该能够再次控制将您的插座拖动到您的标签。

于 2013-09-28T14:57:28.897 回答