我正在通过以下链接关注教程:http://tempered.mobi/%20
它说:
Connect the referencing outlet (of the tableview) to the tableview property.
我有一个xib文件,其中拖入了一个表格视图 - 'tableview属性'是什么意思?
答案 0 :(得分:1)
您的Objective C代码中应该有一个tableview属性。
您需要在标题中声明它(在界面中为UITableView* tableView
,然后为@property (nonatomic,retain) IBOutlet UITableView *tableview;
);它也应该在您的.m
文件(@synthesize tableView
)中合成。
当将UI元素连接到您的类时,此属性将显示在Interface Builder中。
这就是UIKit 101,所以你可能想从更基本的iPhone教程开始,如果这对你来说很陌生。