Reputation: 3162
I want to remove this arrow in picture bellow on XCode storyboard design when I chose master-detail application.
Upvotes: 1
Views: 871
Reputation: 3960
To remove the arrow (Table cell accessory) select the corresponding prototype cell and change the Accessory view to None
in attribute inspector.
See the image below:
Upvotes: 5
Reputation: 2411
Set it in code by:
cell.accessoryType = UITableViewCellAccessoryType.None
Upvotes: 1
Reputation: 948
First, select your cell. Then in the attributes inspector change the accessory value to None
.
Upvotes: 2