我有UITableview
其中我根據UISwitch
狀態顯示UIImage
。我將開關狀態存儲在NSMutableArray
中。如果我嘗試顯示兩個以上的圖標,則只能顯示兩張圖片。如果我關閉前兩個UISwitch
狀態中的任何一個狀態。新的開關狀態(我試圖在之前顯示)將顯示,也只有一個。如何在uitableviewcell上顯示UIImage
-2
A
回答
1
我假設在你的tableview中,每個單元格代表一個數組中的模型實例。這豈不是更好更新模型當開關處於?:
...
MyObject theObject= [myObjects objectAtIndex:index];
theObject.switchState = TRUE;
[self.tableView reloadData];
...
,然後重新加載的tableview細胞
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"cellidentifier";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];
MyObject *thisObject = [myObjects objectAtIndex:indexPath.row];
if(thisObject.switchState) {
... configure cell accordingly
}
return cell;
}
相關問題
- 1. 如何在CAShape層上顯示UIImage?
- 2. UIImage在UITableViewCell
- 3. UIImage UITableViewCell
- 4. 如何讓TTPhotoViewController顯示UIImage?
- 5. 在UITableviewcell佈局UIImage
- 6. UITableViewCell與UIImage,寬度不更新在初始顯示的單元
- 7. 在UITableViewCell上設置UIImage尺寸圖像
- 8. 如何從uitableviewcell顯示uidatepicker
- 9. 如何突出顯示UITableViewCell
- 10. 如何在UIImageView中顯示UIImage?
- 11. UIImage&UITableViewCell尺寸
- 12. UITableViewCell上的圖像顯示
- 13. 在UIWebview上顯示本地UIImage
- 14. 的UIImage不會在屏幕上顯示
- 15. 如何在uitableviewcell中顯示錶格
- 16. 如何在UITableviewCell中顯示Json數據
- 17. 如何顯示和URL,在UITableViewCell中
- 18. 如何在UITableViewCell中顯示FBSDKLoginButton?
- 19. 顯示UIImage
- 20. UIImage不顯示
- 21. 如何隨意在單個UIImage上顯示多個圖像
- 22. 如何在UIButton的UIImage上實現突出顯示?
- 23. 如何在EAGLView(iPhone)上顯示我的UIImage?
- 24. 在UITableViewCell中對齊UIImage
- 25. 數據不顯示在UITableViewCell上Swift
- 26. 如何將UIImage插入到UITableViewCell中
- 27. 如何刷新UITableViewCell中的UIImage?
- 28. UIImage作爲UITableViewCell中的附件視圖不顯示
- 29. 如何在單擊的UITableViewCell上顯示deleteConfirmationButton
- 30. UIImage不顯示在UIAlertAction中?
縮進你的代碼yaar ... – 2013-05-01 08:30:34
現在怎麼樣anoop? – raptor 2013-05-01 08:58:58
我等了5分鐘,然後我重新格式化了...現在這看起來不錯:) – 2013-05-01 08:59:54