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?
似乎標籤設置正確。這部分代碼沒有問題。 – taskinoor 2011-02-16 05:39:12