我已經找到同樣的問題,但答案並沒有幫助我:( 也許是因爲我有具體問題。 安裝應用程序到iPhone 4S(iOS 5)後出現一些問題。已經修復他們夫婦,但是這一個比較頑固的,似乎一見鍾情cellForRowAtIndexPath not called(again)
我Xcode4打開現有Xcode3項目,這個問題出現
我會在這裏把一些代碼:。
-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView{
// Return the number of sections.
return 1;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
// Return the number of rows in the section.
return [self.townShopsArray count];
}
我檢查:self.townShopsArray不爲空
功能:
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { ...
不叫,所以我不需要在這裏把它的代碼。
任何人都可以告訴我,當我從Xcode 3升級項目到Xcode 4時會出現什麼問題?
你加的tableView委託和數據源?在引用網點文件的所有者 : - 鑑於網點節 : – Neo
當我打開的.xib文件,並選擇tableview中,然後用鼠標右鍵點擊它,我可以看到這個 - : - 數據源委託文件,主人 :文件的所有者 這是否意味着tableView的委託和數據源被正確設置? – dejan