I want to put UIbutton at bottom which should be displayed on my all view like tabBar and onclick of that UIButton I want open the menu view, How can achieve this feature, I tried lot for this and also lot of google search for it, but not mention the way to achieve this properly, So please suggest me the the proper way to achieve this


I have done this before by adding a button in the Appdelegate class. I don’t know whether it’s a correct approach or not, but it’s working.
If you are not using
NavigationControllerthen simply add[self.window addSubview:mybtn];Hope it will work for you.