我正在致力於UITableView
。請告訴我如何刪除顯示在每一行的箭頭按鈕?如何刪除UITableView中的箭頭
19
A
回答
32
在你-tableView:cellForRowAtIndexPath:
,設置您的UITableViewCell到UITableViewCellAccessoryNone,的accessoryType
屬性,它是默認FYI。
1
對於C#用戶:
UITableViewCell cell = new UITableViewCell();
cell.Accessory = UITableViewCellAccessory.None;
3
//Write following code into your program
-(UITableViewCellAccessoryType)tableView:(UITableView *)tv accessoryTypeForRowWithIndexPath (NSIndexPath *)indexPath {
return UITableViewCellAccessoryNone;
}
//Create a table for different section of app
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
cell.accessoryType = UITableViewCellAccessoryNone;
}
// VKJ
+0
accessoryTypeForRowWithIndexPath方法在Swift上不可用** – swiftBoy 2016-04-01 09:36:32
12
如果您使用的界面生成器只需選擇你的細胞,並設置accessory
到none
。
0
對於斯威夫特
添加下列內容cellForRowAtIndexPath
方法剛剛結束 return
之前。
cell.accessoryType = UITableViewCellAccessoryType.None
它只是完美的工作!
0
爲雨燕3
cell.accessoryType = UITableViewCellAccessoryType.none
相關問題
- 1. 如何刪除UITableView中的信息按鈕和箭頭?
- 2. 如何刪除searchview中的箭頭?
- 3. 如何刪除JMenuItem上的箭頭?
- 4. Eclipse刪除箭頭圖標
- 5. SSRS圖表 - 刪除箭頭
- 6. Chart.js - 刪除滾動箭頭
- 7. 刪除排序箭頭
- 8. 刪除JComboBox中的向下箭頭
- 9. 刪除ContextualActionBar中的後退箭頭
- 10. 如何在Opera中刪除輸入[type =「number」]中的箭頭
- 11. 如何從codeigniter中的pagiantion中刪除箭頭標記
- 12. 從ActionBar中刪除HomeAsUpButton箭頭
- 13. 如何刪除asp.net中的下拉列表箭頭?
- 14. 如何刪除Mozilla中的下拉箭頭firefox
- 15. 如何刪除二級菜單項中的箭頭?
- 16. 如何從默認WordPress的永久鏈接中刪除箭頭
- 17. 如何刪除dijit.form.dropDownButton中的向下箭頭圖標?
- 18. 如何刪除Firefox中的下拉箭頭?
- 19. 如何刪除引導程序4中的下拉箭頭?
- 20. 刪除箭頭,使行hearver的igraph
- 21. 如何刪除UITableView節頭去除後創建的空間?
- 22. 如何從Excel工作簿中刪除過濾器箭頭?
- 23. 如何從組合框中刪除下拉箭頭?
- 24. 如何在Visual Studio 2010 IDE中刪除這些綠色箭頭?
- 25. 如何從QCombobox彈出窗口中刪除箭頭?
- 26. CSS盒除箭頭外有箭頭
- 27. 刪除IE10選擇元素箭頭
- 28. 使用箭頭鍵刪除div
- 29. 彩盒刪除幀箭頭導航
- 30. jQuery/DataTables:刪除排序箭頭
FWIW,違約與否,我有這個同樣的問題。它可能會在Interface/Storyboard Builder中設置,或者(或者像我的情況那樣),我需要一些單元格來指示更多細節,而其他細節則不會。儘管謝謝你的回答! – natevw 2014-05-08 21:40:58