I have a requirement where i need to add a slide menu inside a tabbed content is it possible to add a slide menu inside a UITabBarController and parent of this UITabBarController is a UINavigationController ?
how to add slide menu inside tabbar controller in ios?
3.4k Views Asked by Äñäñd Ayan At
2
There are 2 best solutions below
0
Midhun MP
On
Yes, you can do that.
I have done a similar thing for UINavigationController. And it is working for me.
I have created it as a re-usable component and added to GitHub, you can find it here: https://github.com/Midhun-MP/MMP_DrawerController
You can find a lot of controls here, better than my control ;)
Related Questions in IOS
- Overlapping UICollectionView in storyboard
- Cannot pod spec lint because of undeclared type errors
- Is the transactionReceipt data present in dataWithContentsOfURL?
- UIWebView Screen Fitting Issue
- ZXingObjC encoding issues
- iOS: None of the valid provisioning profiles allowed the specific entitlements
- How to hide "Now playing url" in control center
- CloudKit: Preventing Duplicate Records
- Slow performance on ipad erasing image
- Swift code with multiple NSDateFormatter - optimization
- iOS 8.3 Safari crashes on input type=file
- TTTTimeIntervalFormatter always returns strings in English
- How do I add multiple in app purchases in Swift Spritekit?
- Setup code for xibs in iOS. -awakFromNb:
- iOS Voice Over only reads out the title of any alert views
Related Questions in XCODE5
- When will Apple start rejecting apps built with Xcode 5.x?
- How to close a container view
- Got an error while parsing json
- Hide iAd view on pressing a button
- Can't see UIView after added to UIViewController in storyboard separately in xcode 5.1
- View controller won't return to previous view controller programmatically
- How to clean iOS Device Console from command line?
- Thread 1: signal SIGABRT on button clicked
- Compile time Error libxml2.dylib
- phonegap admob plugin get banner height in xcode
- Xcode app validation "You must supply an Apple ID"
- XCode Archive: "you must supply an apple ID"
- How to re-trigger a process repeatedly in background in xcode
- Backward compatibility for iOS build SDKs
- NSArrayM replaceObjectAtIndex:withObject: object cannot be nil'
Related Questions in MENUITEM
- wxPython Menu - deselect all Radio Buttons (wx.RADIO_ITEM)
- Disable a MenuItem when TextBox of UserControl is empty
- How can i reference a MenuItem?
- Android support:design NavigationView checked menu sub items
- Android: how to make transition animations on toolbar's menu icons?
- Context Menu ShortcutKeys do not work C#
- How to add menu items separators programmatically on Windows?
- How add a single menu item left to the toolbar in android?
- I am unable to set a submenu item as checked
- how to add menu items to action bar in more than 30 activities
- Android - The 3-dot dropdown menus does not appears if the device has a menu hardware button
- Hide menuitem in MainActivity if Listview in Android ListFragment is empty
- Menu Icons not showing up when using AppCompat Theme
- How to set the minimum height and icon with of a text menu or context menu item?
- How to get IEditorOperations from IVsTextView?
Related Questions in NAVIGATIONBAR
- html/css Vertical Navigation Bar
- NavigationView fistsSystemWindows with Translucent NavigationBar
- How to change status bar color in iOS7
- How to hide navigation bar in Android app?
- Android Navigation Bar covering viewpager content
- Navigation bar extended clickable area
- How can I make the status bar match a UINavigationBar's colour in Swift?
- Custom sticky navigation bar is very choppy
- matplotlib toolbar does not work in tkinter gui
- Navigation Menu Shrinks with Browser Sizing - CSS Issue
- HTML5/CSS can not contain ul with in ul in Microsoft Web Express
- Changing title of navigation bar from a file
- I'm trying to move the links in navigation bar to right by 160px but i can't do that
- Can't see Top Navigation Bar on Root View Controller
- Zurb Foundation topbar dropdown disappears on small screens
Related Questions in UITABCONTROLLER
- How to properly set up UITabBarController programmatically with separate storyboards
- Tab Bar Controller showing on storyboard but not at execution time
- UISearchBar error when entering Searchbar textbox
- Creating an initial view before displaying views with UITabController
- My tab controller is not visible in UIViewController
- Jump to a specific tab in a UITabBarController
- how to add slide menu inside tabbar controller in ios?
- UISplitViewController with MonoTouch.Dialog
- Core Data: changes in one UITableView/entity not being recognized by other "indirectly" related UItableviews/entity
- Controlling a nested UITabController
- How do I ensure that the right ViewController is loaded when accepting a file?
- How to launch UIViewController that is embedded in UINavigationController
- How to Create UITabController on a Button Click
- Flutter Layout error: Using webview in tabbed content
- TabController disappears when using swipe gesture
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Without knowing more about your project it will be hard to provide a more in-depth explanation, but this should work:
Basically, I would recommend finding any one of the many open source "Swipe to Reveal" menus that are out there on places like Github. With a quick google search I found an example that might be useful to you.
Really all you should need to do is set the whatever "Swipe to Reveal" class you use as the root to the selected tab that you are in (If the initial viewController of the selected tab is a NavigationController then you probably want your slide menu to be the rootViewController of the NavigationController), and then you should be able to configure the menu to work within the selected tab just fine.
Please let me know if you need any additional help, and I can update my answer. Hope that helps!