I have 6 ViewControllers and I need to show the tab bar only in 4 of them(viewcontroller 2,viewcontroller 3,view controller 4,viewcontroller 5). When I navigate using modal view controller from the 6th viewController to the 2nd viewcontroller, Tab bar does not show.
1
There are 1 best solutions below
Related Questions in IOS5
- How to change elements positioning in landscape mode?
- How to set BarChartDataEntry labels (String not Double) not xaxis labels
- how to add variations to different phone sizes with the same size class
- can i get sim serial number from ios mobile for my ios app using ios programming?
- splash screen error with xcode 9.2
- How to open file:///private/var/mobile/Containers/Shared/AppGroup/ folder on Mac?
- Thread 1:EXC_BAD_ACCESS(code=1,address=0x20004018) How to solve this?
- Migrating 32bit iOS app to 64bit
- How to enable/disable a button while validating a button?
- in switch case i want to print nslog as per my requirement?
- how to add namearr array to my dictionary
- SearchBar method deprecated issue
- Apns notifications is not Working with Developement Certificate
- Swift Parse Race Conditions
- first page open response like classplbuildpublish error
Related Questions in IOS-4.2
- iOS 4.2 with XCode 4.2 - Catch 22?
- xcode 4.6 can't show deployment target 4.2
- What is the lowest iOS version developers can create an app for?
- Tab bar with ios storyboard
- Develop for ios 4.2 on xcode 4.5
- deploy/debug app to iPod touch 2nd generation
- How to return to my app after facetime call ends in iPhone
- My Apps not working for iOS 4.2.1
- UItable Cell Overflow ios
- didRotateFromInterfaceOrientation not called after swipe
- "Could not support development" xCode 4.4.1 to iTouch 3rd Gen (4.2.1)
- MPMoviePlayerViewController dismissing itself immediately in iOS 4.2
- Modify iPhone to Force Landscape Orientation Only
- Updating UIProgressView's progress dynamically
- What is the iOS 4.2 (and up) equivalent of Android's RecognitionListener?
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 # Hahtags
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?
If you are presenting VC2 from VC6 modally, you won't see VC2's containing controller. That is by design.
But you UI logic is probably wrong anyway. Modal presentation presents a viewController out of context - the expectation is that you will then return (pop off the stack) via the presenting controller, not navigate elsewhere (for example, via a tab).
How did you get TO VC6 from one of your tab views? If you need more help perhaps you should post a Storyboard-style sketch showing your intent.