How do I reload a UIView?

18.7k Views Asked by At

How do I reload a UIView after viewDidLoad + viewWillAppear have already been called (and the view displayed)?

If it helps - I'm loading it from a xib/nib file, and expect that calling the method should only trigger viewWillAppear on the controller, not to reload the whole nib file.

1

There are 1 best solutions below

0
On BEST ANSWER

How about [yourViewController.view setNeedsDisplay]?