I am working on a UITableView. Please tell me how to remove the arrow button displayed in the each and every row?
UITableView
For Swift
Add following to end of your cellForRowAtIndexPath method just before return.
cellForRowAtIndexPath
return
cell.accessoryType = UITableViewCellAccessoryType.None
it just works perfect!!