2013-11-05 118 views

回答

1

是有可能只需添加它們作爲子視圖編程在主視圖 - 控制

示例代碼:把這個在您的主視圖控制器的viewDidLoad方法

UITableView *tableview1 = [[UITableView alloc] initWithFrame:CGRectMake(0, 0, 320,200) style:UITableViewStylePlain]; 
    tableview1.delegate = self; 
    tableview1.dataSource = self; 
    tableview1.backgroundColor = [UIColor colorWithRed:1.0 green:1.0 blue:1.0 alpha:0.6]; 
    [self.view addSubview:tableview1]; 

    UITableView *tableview2 = [[UITableView alloc] initWithFrame:CGRectMake(0, 200, 320,200) style:UITableViewStylePlain]; 
    tableview2.delegate = self; 
    tableview2.dataSource = self; 
    tableview2.backgroundColor = [UIColor colorWithRed:1.0 green:1.0 blue:1.0 alpha:0.6]; 
    [self.view addSubview:tableview2]; 
+0

你能給我一個例子或任何參考?我非常搜索,但我沒有看到任何有用的東西。感謝您的回答! – HungDev

+0

非常感謝你,但我可以把我的子xib視圖和控制器爲每個表視圖? – HungDev

+0

這個例子沒有xib ...你不必爲這些視圖創建xibs ......沒有xibs就更容易了....... – Jatin