0

What TablleViewCell method is called once the outlets of a custom TableViewCell are set when the TableViewCell is instantiated from a storyboard? So a method similar to viewDidLoad essentially. I tried awakeFromNib but it appears that outlets aren't set there as I would expect.

user1529956
  • 735
  • 2
  • 10
  • 24

1 Answers1

0

It seems that

layoutSubviews

does the trick.

user1529956
  • 735
  • 2
  • 10
  • 24