iPhone开发 - TableView属性

时间:2011-06-27 22:12:20

标签: iphone ios interface interface-builder

我正在通过以下链接关注教程:http://tempered.mobi/%20

它说:

Connect the referencing outlet (of the tableview) to the tableview property.

我有一个xib文件,其中拖入了一个表格视图 - 'tableview属性'是什么意思?

1 个答案:

答案 0 :(得分:1)

您的Objective C代码中应该有一个tableview属性。

您需要在标题中声明它(在界面中为UITableView* tableView,然后为@property (nonatomic,retain) IBOutlet UITableView *tableview;);它也应该在您的.m文件(@synthesize tableView)中合成。

当将UI元素连接到您的类时,此属性将显示在Interface Builder中。

这就是UIKit 101,所以你可能想从更基本的iPhone教程开始,如果这对你来说很陌生。