誰能告訴我如何刪除一個表的所有行查看如何刪除一個表的所有行查看
回答
清除數據源(例如[dataSourceMutableArray removeAllObjects]
),並重新加載表([tableView reloadData]
)
我想你可以刪除tableView的dataSource中的所有值?然後重新裝入的tableView
其實我的細胞是固定的編看給@ssteinberg 的評論,所以當我重新裝入新值的表不會取代它們 – 2011-03-30 07:58:00
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
return 0;
}
// Customize the number of rows in the table view.
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
return 0;
}
或cellForRowAtIndextPath
功能
指定return nil;
,而不是return cell;
,也可以刪除所有值陣列在cellForRowAtIndexPath
這樣的
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
}
// Configure the cell.
// remove below line
//cell.textlabel.text=[array objectAtIndex:indextPath];
return cell;
}
_please_瞭解如何使用預覽。 – hop 2011-03-30 08:01:03
thanku hop.yes我會感謝:) – 2011-03-30 08:02:29
- 1. 如何刪除列表查看所有項目
- 2. 如何刪除表中的一行時刪除所有相關的表記錄?
- 3. SQLite如何刪除除一個之外的所有重複行?
- 4. 如何刪除表中的所有行與名稱查詢
- 5. 如何刪除除SQL中的所有行外的所有行
- 6. RedBean:如何刪除所有表中的所有行
- 7. 刪除所有唯一行
- 8. 基於另一個表刪除表中的所有行
- 9. 爲一個ID刪除所有行R
- 10. Flask-SQLAlchemy如何刪除單個表中的所有行
- 11. 如何刪除setAdapterList查看
- 12. 刪除ASP.NET表中的所有錶行
- 13. 刪除行列表查看android
- 14. jQuery刪除除第一行之外的所有錶行
- 15. 如何刪除emacs中的所有行?
- 16. 如何刪除jtable中的所有行?
- 17. 如何刪除MySQL中的所有表?
- 18. 如何刪除所有表中的列
- 19. 刪除所有檢查的列表項
- 20. 刪除行時如何刪除其他表中的所有關聯行? LARAVEL 5.4
- 21. 從一個重複的數據表中刪除所有行
- 22. 如何使用一個查詢跨多個表進行刪除?
- 23. 刪除表中的所有行NHibernate的
- 24. 如何查看數據查看器中的所有行?
- 25. 刪除所有行
- 26. 如何刪除表中沒有FK關係的所有行
- 27. 刪除所有表中的特定行
- 28. 防止刪除表中的所有行
- 29. 刪除表中的所有行
- 30. 如何刪除地圖上的最後一個註釋查看
沒有其實我利用內幕以下所有代碼----- 如果(細胞==零) \t { } 因此,當我重新加載數據行時不顯示該數據 – 2011-03-30 07:56:56
然後重新考慮您的設計。無論如何,您可以通過確保tableView:numberOfRowsInSection:返回0並調用reloadData來「刪除」所有行。 – ssteinberg 2011-03-30 09:05:14