數據填充,但[tableView numberOfRowsInSection:0]
總是返回0.我的表中只有一個部分。什麼類型的東西會導致這種行爲?[tableView numberOfRowsInSection:0總是返回0
1
A
回答
4
如果永遠只有一個部分表格,請用以下男女同校...
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
return 1;
}
或者如果你的段數取決於數據源,您可以返回您的數據源的數。
0
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
id <NSFetchedResultsSectionInfo> sectionInfo = [[self.fetchedResultsController sections] objectAtIndex:section];
return [sectionInfo numberOfObjects];
試試這個。它可能會幫助你。
相關問題
- 1. 如果tableView numberOfRowsInSection == 0
- 2. 當numberOfRowsInSection返回0時,UITableView差距
- 3. 如果numberOfRowsInSection返回計數0
- 4. 「塊」 的方法,因爲numberOfRowsInSection返回0
- 5. ExpandableListView.getPackedPositionGroup總是返回0
- 6. $ parent。$ index總是返回0
- 7. Scope_Identity()總是返回0
- 8. mysql_num_rows總是返回0
- 9. Rainmeter Calc總是返回0
- 10. SqlCommand.ExecuteNonQuery()總是返回0
- 11. 則getIdentifier()總是返回0
- 12. pdo lastInsertId()總是返回0
- 13. NSPopUpButtonCell indexOfSelectedItem總是返回0
- 14. timespec.tv_sec總是返回0
- 15. NSD_GetState總是返回0:NSIS
- 16. .numChildren()總是返回0
- 17. 的intValue總是返回0
- 18. Datagridview.selectedrows.count總是返回0?
- 19. datatable.rows.count總是返回0
- 20. mysqli_affected_rows總是返回0
- 21. C#&MySQL - 總是返回0
- 22. UILabel pointSize總是返回0
- 23. NSOutlineView rowForItem:總是返回0
- 24. WebView getScrollY()總是返回0
- 25. sizeWithFont總是返回0
- 26. getUser總是返回0
- 27. 笨NUM_ROWS()總是返回0
- 28. getImageData總是返回0
- 29. NSSegmentedControl -selectedSegment總是返回0
- 30. mysql_insert_id()總是返回0
嘗試給它不同的數字,以查看哪個部分返回正確的行數 –
沒有運氣,但0返回無效的數字錯誤.... – mdominick
從0開始循環到'[tableView numberOfSections]'和NSLog()this語句與循環計數器作爲參數例如。 '[tableView numberOfRowsInSection:i]'我在哪裏你的循環計數器 –