I develop a project which is based on navigation
structure.
It is intended that in the current ViewController
to display a generic view.This view contains information about the menu of the application.
I must show this uiview when user tap a button from the navigation bar
.
I can't display this view over the current viewcontroller
.
Can anyone help me?
I have a customNAvigation "
@interface CustomNavigation : UIView
- (IBAction)goToProfileInRootVC:(id)sender;
- (IBAction)goToRootinRootVC:(id)sender;
- (IBAction)goToPreviewVC:(id)sender;
- (IBAction)goToMenu:(id)sender;
+ (CustomNavigation*)showInView:(UIView*)parentView;
@end
When user tap on the Menu button from the navigtion I must display an UIView which must contain a list with the categories from menu. This view must be displayed over the current UIViewcontroller.