Tagged Questions
The UINavigationController class implements a specialized iOS view controller that manages the navigation of hierarchical content.
0
votes
0answers
10 views
How to change transition effect in UINavigationController on iOS 7?
How to change transition effect in UINavigationController on iOS 7? It's very ugly on our case and can't be used with the content of the application.
0
votes
0answers
7 views
uinavigation controller delegate not work with MFSideMenu
I have an app with an "old" Tabbarcontroller and a MainWindow.xib. I have to delete the tabbarcontroller logic to transform the app and made a "Left side menu" type, like facebook. I have a problem, i ...
0
votes
1answer
39 views
UIBackButton Background Image not appearing
i'm having a problem with my UIBackbutton not appearing and i'm not sure what is causing it.
This is my code for making the back button image, it is in my first ViewController :
UIImage ...
0
votes
1answer
37 views
UIBarButtonItem not showing image
I'm having a problem with my navigation bar. The issue is that I'm trying to overwride the LeftBarButtonItem that the NavigationBar has from the super viewController like this:
"Super ViewController"
...
0
votes
1answer
25 views
Transition to a Navigation View Controller
I have the following code:
- (IBAction)buttonPressed:(UIButton *)sender
{
//sentder.titleLabel
NSString *label = [(UIButton *)sender currentTitle];
if ([label ...
0
votes
2answers
28 views
Segue to a UINavigation Controller programmatically without storyboards
I have code that uses Storyboards for seques, like so:
- (void) prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender
{
if ([segue.identifier isEqualToString:@"ShowDiagnosis"])
{
...
2
votes
1answer
66 views
navigation controller bar is cutting off
If hiding the status bar by choosing status bar style = hide during application launch and I am customizing uinavigation bar like the following
[[UINavigationBar appearance] ...
0
votes
0answers
25 views
UIView under UINavigationBar not visible in ios 7
I have a custom UIView under a UINavigationBar. When I run the app in iOS 6, the UIView is visible but its not in iOS 7. Both UIView and UINavigationBar are driven by its own controllers and are ...
0
votes
1answer
10 views
Auto Layout with UITabBarController
I'm trying to shift to Auto Layout in my app, but I'm having some trouble with my UITabBarController. Basically, I have two buttons on my home screen, and I want them to have equal sizes, one 50 ...
3
votes
2answers
57 views
Add a button next to the back button
in iOS, is it possible to add a button next to the default back button (the one that is automatically created when you use the method pushViewController)
I've tried to use the methods ...
1
vote
2answers
23 views
Calling web service in viewDidLoad resulting in screen Hang iOS
from one screen on click of a button i am navigating on other screen, i am navigating properly but screen is getting hang till the screen to which i am navigating gets web service response
(in ...
0
votes
0answers
12 views
Sague connection tab bar controller
Objective:
i am trying to create an application which looks like this, on each button click seprate tab should open in tab bar controller.
Problem
However when i create the sague connection from home ...
0
votes
0answers
23 views
UINavigationItem craziness from pushing view controllers with no animation?
I am pushing a viewController onto the UINavigationController with animation, and the controller being pushed on is basically doing something like:
--- app delegate:
[((UINavigationController ...
0
votes
0answers
13 views
UITabViewController and UINavigationController force rotation
My app is predominantly portrait, however, I want do let one view rotate horizontally when the device is rotated. The app uses UITabView and UINavigationController.
I read on here and other websites ...
2
votes
1answer
130 views
iOS 7 UINavigationBar with iOS 6 style
I was developing an App for iOS 6 and this is one of my views.
Now I've updated my iPhone to iOS 7 and this is the result:
Now all the views are behind the navigation bar because iOS 7' ...