tableview的數(shù)據(jù)源方法,為什么會(huì)循環(huán)?
3 回答

慕后森
TA貢獻(xiàn)1802條經(jīng)驗(yàn) 獲得超5個(gè)贊
在UITableViewController類(lèi)里添加了一個(gè)tableview1,里面刷新界面數(shù)據(jù)的函數(shù)如下
-(void)refreshView:(BOOL)flag
{
if (flag == YES)
{
[self getData:nil];
[self.tableView1 reloadData];
}
}
在B類(lèi)中當(dāng)數(shù)據(jù)改變時(shí)調(diào)用上邊的函數(shù)
View1是上邊類(lèi)的實(shí)例
[View1 refreshView:flag];
這樣reloadData 雖然執(zhí)行了 但是界面數(shù)據(jù)并沒(méi)有更新,
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
- 3 回答
- 0 關(guān)注
- 773 瀏覽
添加回答
舉報(bào)
0/150
提交
取消