7

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.

smtlaissezfaire
  • 437
  • 2
  • 7
  • 18

1 Answers1

11

How about [yourViewController.view setNeedsDisplay]?

Nava Carmon
  • 4,523
  • 3
  • 40
  • 74