I'm hacking the multicanvas example. I want to modify it in order to trigger some event whenever a new target view is displayed, i.e. on completion of the transitionFromView method.
I understand I could probably trigger some event from the completion block of the transitionFromView method, but I'm wondering if there's an existing callback mechanism in place for that.
I've tried implementing the following in the target canvas, but that doesn't seem to be called when switching views:
- (void)viewDidAppear{
NSLog(@"my event");
}
Is there another callback I'm not aware of? Thank you.