I got an App with a TabBar and I want to push a View on the complete display. Ok, that works.
The problem is, that the TabBar area is still clickable.
Is it possible to hide the TabBar complete?
Greetings.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can add your subview on UIWindow.
For finding the main window, you can use
UIWindow *window = (UIWindow *) [[UIApplication sharedApplication] keyWindow];then you can your subview to this window.
I hope this help.