2010-03-24 58 views
0

我可以通過僅使用UITableView而不使用UITableViewController來創建表嗎? 是否有可能,如果它如何以編程方式做到這一點?如何只創建一個UITableView?

+0

我不確定我是否理解 - 您實際想要達到的目標是什麼? – 2010-03-24 09:45:25

+0

我想創建一個應用程序與UITableView而不使用控制器,即只有視圖。我可以實現它嗎? – suse 2010-03-24 09:48:46

回答

1

它會更容易回答你的問題,如果你能告訴我們什麼是您要使用的UITableView,而不是UITableViewController中的原因是什麼?

我相信你可以使用UITableView而不是UITableViewContoller,但在這種情況下,你需要設置需要符合相應協議的應用程序代理(dataSourcedelegate)。 有關更多信息,請參閱以下文檔:http://developer.apple.com/iphone/library/documentation/UIKit/Reference/UITableView_Class/Reference/Reference.html#//apple_ref/occ/instp/UITableView/dataSource

0

是,您可以:

UITableView *table = [[UITableView alloc] initWithFrame:CGRectMake(x, y, width, height) 
               style:UITableViewStyleGrouped]; 

// Other initializations go here 
[parent_view addSubview: table]; 
[table release]; 
+0

謝謝你解決我的問題。現在應該如何將UITableViewCell添加到UITableView? – suse 2010-03-24 10:13:51

相關問題