1

As the title says: Is there no method being called on my other ViewController when I'm dismissing my modal view to return to it? (Apparently viewDidAppear didn't do it, perhaps because I use the Partial Curl transition?)

Lumpa
  • 57
  • 7

1 Answers1

0

No, it does not get notified in any standard way. In some cases viewDidLoad or viewDidAppear might get triggered but you really shouldn't rely on it.

Implement a delegate that tells you when the view is dismissed.

Tom van der Woerdt
  • 29,532
  • 7
  • 72
  • 105