Sonrobby
Sonrobby

Reputation: 3162

how to remove arrow in TableViewCell in Xcode Storyboard

I want to remove this arrow in picture bellow on XCode storyboard design when I chose master-detail application.

enter image description here

Upvotes: 1

Views: 871

Answers (3)

Vivek Molkar
Vivek Molkar

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:

enter image description here

Upvotes: 5

Karan Dua
Karan Dua

Reputation: 2411

Set it in code by:

cell.accessoryType = UITableViewCellAccessoryType.None

Upvotes: 1

Faiz Mokhtar
Faiz Mokhtar

Reputation: 948

First, select your cell. Then in the attributes inspector change the accessory value to None.

enter image description here

Upvotes: 2

Related Questions