I have a regular UINavigationController with the UIViewController contained in it, when my view controller has a request applied to it (via UINavigationItem.prompt = @ "some prompt"), the prompt animates the UIViewController view down.
My question is: is there an apple to find out that a prompt will appear (and, possibly, the animation time it will take) so that I can relay the presentation? For example: therefore, the content does not move. Or I need to write this functionality myself. What I'm really looking for is a notification similar to the KeyboardWillShow / Hide notification.
Note that the controller is not an object using the prompt, and the prompt will appear and disappear asynchronously. Do not look for code, just advice.
source
share