1
我調用方法getData之後。我嘗試重新載入數據,但沒有重新載入數據。我不知道爲什麼,但我可以正確地獲取數據。哦,我設置的getData在viewDidAppear因爲我想從快速分組視圖和用戶這一觀點得到會看到加載視圖,當我完全加載數據,加載視圖會消失,tableview中會出現當我重新加載數據時,tableView會崩潰
這裏是我的簡單的代碼
.M
- (void) viewDidAppear:(BOOL)animated
{
[super viewDidAppear:animated];
[self getData];
NSLog(@"%@ %@ %@ %@",con_ad,con_po,depre,other);
[tableCommon reloadData];
[bckView removeFromSuperview];
}
.H
@interface Hoora : UIViewController {
IBOutlet UITableView *tableCommon;
}
@property (nonatomic, retain) UITableView *tableCommon;
我已經鏈接參考。出口。
它說它在main.m崩潰我怎樣才能在新數據中設置單元格。
對不起。它只是顯示EXE-BAD-ACCESS錯誤
你正在得到什麼錯誤?可能有很多很多的原因,你可能試圖在[self getData] – 2011-05-18 05:38:45
atleast發佈錯誤花花公子.. – Hisenberg 2011-05-18 05:52:42
我們需要更多的代碼來查看你的問題。 – Demones 2011-05-18 05:49:08