如何以编程方式将uitableview连接到uitableviewcontroller?

时间:2010-08-30 15:50:50

标签: iphone uiview uiviewcontroller

所以我有一个:

arrangeList = [[UITableView alloc] initWithFrame:CGRectMake(attributesPadding, y, popoverWidth - 2* attributesPadding, popoverHeight - y - attributesPadding) style:UITableViewStylePlain];

这是我想要连接到控制器的tableview,我还将此tableview添加到uiview,我已根据点击动画到屏幕上。所以我将uiviewcontroller子类化并创建了这个:

arrangeListViewController = [[[ArrangeListViewController alloc] init] autorelease];

现在我如何制作它以便'arrangeList'基于'arrangeListViewController'填充?

这种方法有问题吗?欢迎任何帮助

1 个答案:

答案 0 :(得分:0)

我想你会想看看像这样的东西:

arrangeListViewController.tableView = arrangeList;
[arrangeList release]; //avoid leaking the arrangeList

就个人而言,我更喜欢在InterfaceBuilder中设置它,但它也会以编程方式工作。

希望这会有所帮助。安德鲁。