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?)
            Asked
            
        
        
            Active
            
        
            Viewed 175 times
        
    1 Answers
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
- 
                    Hmm, and how would I go about and achieve that? :P – Lumpa Dec 30 '11 at 15:34
- 
                    http://stackoverflow.com/questions/626898/how-do-i-create-delegates-in-objective-c – Tom van der Woerdt Dec 30 '11 at 15:35
