2011-02-16 64 views
0

如果我想在iPad上使用同一個視圖中的兩個UITableView,並且我嘗試在每個視圖上設置不同的標籤。如何在iPad上使用同一視圖和委託使用拖拽UITableViews?

我可以共享同一個代表嗎?因爲我試圖通過標籤號來判斷他們,所以仍然沒有工作。

-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section { 

    if(tableView.tag==0){ 
     return [array1 count];} 

    else if(tableView.tag==1){ 
     return [array2 count];} 
} 

還是隻能在一個視圖上使用一個UITableView?

+0

似乎標籤設置正確。這部分代碼沒有問題。 – taskinoor 2011-02-16 05:39:12

回答

3

爲什麼不儲存&比較表

-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section { 

    if(tableView == myTableView1){ 
     return [array1 count];} 
    else if(tableView == myTableView2){ 
     return [array2 count];} 
} 

的指針做相同的委託&數據源方法的其餘部分。

爲此,只需在您的類中添加2個IBOutlets,並將它們連接到InterfaceBuilder中即可。

@property (nonatomic, retain) IBOutlet UITableView* myTableView1; 
@property (nonatomic, retain) IBOutlet UITableView* myTableView2; 

只記得釋放他們在-dealloc: