Tagged Questions
0
votes
1answer
20 views
iOS: How to get a modal view to partially cover the parent view?
I am quite new in iOS development and I am facing an issue with the design of navigation. So my goal is simple: I have a view with a right navigation button which I want to open a modal view that ...
0
votes
0answers
10 views
Disable rotation on a single UINavigationController
Is it possible to disable the rotation on a single UINavigationController without disabling rotation for other navigations controllers? I'd like to find an answer that doesn't involve subclassing. Any ...
3
votes
2answers
53 views
Interface Builder IB - Navigation Controller, skipping a view
Hello I am new to iOS and have a question about navigating through my views.
I am using IB wiring up the PREVIOUS and NEXT buttons in the nav bar that pushes my views. This all works fine. However I ...
1
vote
1answer
92 views
How to switch from one tab to another and back?
I've got a little problem on navigating through my views.
Here is my configuration :
Ive got 1 Tabbar Controller with 2 relationship segues to 2 simple views embedded inside a navigation controller.
...
0
votes
1answer
53 views
Can't use a github library in my iOS application correctly
I want to implement a custom menu based on UINavigationController, but standard Cocoa class can't automatically queue up transitions between view controllers, so I decided to use this simple ...
0
votes
0answers
67 views
UINavigationController getting view frame has no x/y value
I have a navigation controller which contains a scroll that I have setup via interface builder, within this I have placed a UIImageView (with a horrible image for demonstration purposes). Please see ...
0
votes
1answer
47 views
Change UINavigationBar with IB
I'm trying to change a UINavigationController navigation bar to my custom navigation bar (subclass of UINavigationBar) with IB.
So I have a xib file with a UINavigationController, but when I stand on ...
0
votes
0answers
85 views
Switch View to Navigation Controller from UIActionSheet
I have a UIActionSheet that works perfectly, but I want to be able to tap one of its buttons and switch to a view that I have set up in Interface Builder. This view is a navigation controller with a ...
0
votes
0answers
174 views
Swipe Gesture using push not working, but buttons do
I am trying to build a simple application and have used only Interface Builder to get this far. I have created a Navigation Controller but have hidden the Navigation Bar. On my first View Controller ...
1
vote
1answer
315 views
Change Tint of Navigation Controller's Toolbar
I'm trying to design my app's interface in IB using a storyboard and have a UINavigationController connected to a UITableViewController. In the attributes inspector, I set the navigation controller's ...
0
votes
3answers
113 views
initWithNibName : I have no scroll and no navigation bar?
So I've a button with a IBAction heading to another ViewController by its initWithNibName method. Everything is embedded in a NavigationController.
I also created a .xib for this ViewController, here ...
1
vote
2answers
90 views
Correctly link my buttons to my views (in UINavigationController)?
I'm sorry if this question sounds kinda newbie, but I'm a beginner and want to improve. So, I have a Navigation Controller embedding my whole application. My main view has a button, linking to another ...
1
vote
2answers
840 views
UINavigationController subclass - customizing Pop
Like many others, I would like to perform an action when the 'back' button is used in a UINavigationController. I am aware of some alternative approaches to this, such as adding my own button and ...
2
votes
1answer
938 views
How can I display a UIBarButtonItem without a border?
In IB I can select a UIBarButtonItem, set it to Plain, Custom and apply an Image and it looks fine in a UIToolbar or UINavigationBar.
When I try to do this in code, I get a border:
backButton = ...
0
votes
1answer
104 views
Nib/Xib not shown in interface bulider
While developing a navigation based application from scratch, I added some new uisubview Controller files to my project by the name myview.m, myview.h and myview.xib. After saving it, when i switched ...
1
vote
1answer
290 views
How should one create UINavigation toolbar subview items Interface Builder?
This blog post asks the very question I have: How can one visually manage toolbar items in Interface Builder? Sure one can use this technique for the top level view, but what about other views? Is ...
0
votes
1answer
158 views
How do I push a view controller from a custom view action using storyboards/IB?
I have a navigation controller than manages a view with a custom component that does not show up on the storyboards/interface builder. When I trigger a particular action, I would like to push on the ...
1
vote
2answers
409 views
Set up NavigationController from Modal View and set layout in interface builder?
I'm trying to set up a NavigationController from a Modal View, but I can't figure out how to set the layout options using interface builder. Here's the code I'm using.
//Create the view you want to ...
2
votes
1answer
1k views
Delegate not working, when using a modal presented NavigationController ( iOS 5 - Storyboard )
I have a problem with a protocol.
My "initial View Controller" is a Navigation Controller. On the root page i show an other Navigation Controller in which is View Controller embedded. onclick a segue ...
0
votes
1answer
173 views
Correct way of setting up UINavigationController and its RootViewController in IB
I have the following structure in my iPad App:
Application
UINavigationController (Providing the top bar with UIBarButtons etc.)
Initial Login screen
Second login screen
I am not sure how I ...
0
votes
1answer
441 views
How to make the navigationBar float on top of current view?
I use a navigation controller throughout my application. However, there is one screen that I wish to hide the navigation bar after the view as appeared. My problem is when I hide the navigation bar, I ...
0
votes
2answers
216 views
UINavigationController initiWithNibName not loading the design from the .xib file
In app delegate, inside didFinishLaunchingWithOptions function, I have the following code to load a view that is a UINavigationController:
UINavigationController *navcon=[[UINavigationController ...
2
votes
2answers
600 views
Double status bar when showing modal view controller
I have a modal view, which I show after application launch. The problem now is that the Modal view leaves 20 pixels for the status bar (See picture)
This is what my MyViewController looks like in ...
1
vote
1answer
586 views
Is it possible to set navigationitem.title from a view's NIB?
I am loading a new view from a NIB (initWithNibName) and then I am pushing it into navigation controller stack (pushViewController).
In order to have a proper "Back" button each view should have a ...
0
votes
1answer
912 views
How to get a UIView to show the navigation bar of it's navigationcontroller while in Interface Builder
I have a UINavigationController, I've added an a UIViewController under the nav controller.
The basic functionality is working fine, I'm able to click an item in my view controller and it takes me to ...
1
vote
0answers
458 views
Add UINavigationController to UIViewController using Interface Builder
As my question looks simple to all the readers but it's making me mad because I have never used Interface builder till now. Through coding I am able to achieve it but by using IB i am not.
Here is ...
0
votes
1answer
35 views
UINavigation Controller from scratch help
How do I create a NavigationController with a TableView inside of it from scratch (putting it into my existing project without using the template)? Can I do it with only one view controller and xib or ...
0
votes
1answer
589 views
iPhone UI Design for Navigation Controller - buttons moving down
I created a navigation controller based app. The view that opens up below the nvigation bar has a UIImageView and a bunch of 'detail disclosure' buttons on top of te uiimage for navigation purposes as ...
0
votes
1answer
164 views
Inserting UIButton in interface builder to control the flow of my app
I have following set up in the interface builder:
Files' Owner
First Responder
App Delegate
Window
-> Tab Bar Controller
Tab Bar
->Selected Navigation Controller (X)
Navigation Bar
->X View ...
0
votes
1answer
198 views
loading a UINavigation controller from a UIView
i am designing an app that has a login screen. it is a UIView with username/password and a button to submit. once the user authenticated successfully, i want to load a new xib file that holds a ...