tags:

views:

40

answers:

1

Hi,

I am beginner in iphone. I am working on tableview. Please tell me how to remove the arrow button displayed in the each and every row.

+1  A: 

(Remove? Really?)

In your -tableView:cellForRowAtIndexPath:, set the accessoryType property of your UITableViewCell to UITableViewCellAccessoryNone, which is the default.

KennyTM