uiappearance Questions
1
Solved
Is there anyway I can set the font size for the UINavigationBar title in landscape mode?
I'm using the UIAppearance proxy to customize the title text attributes and I am specifically interested in...
Decalescence asked 4/12, 2012 at 2:0
2
Solved
I know how to customize UIBarButtonItem using -setBackgroundImage: forState: barMetrics:, but I would like to use different images for UIBarButtonItemStyleDone and UIBarButtonItemStylePlain.
Is th...
Smaragdite asked 25/9, 2012 at 13:3
6
I'm trying to get a back button without a title but I can't make it work. I am really new in objective-c...
UIImage *backButtonImage = [[UIImage imageNamed:@"back.png"] resizableImageWithCapInsets...
Petuntse asked 11/10, 2012 at 1:12
2
Solved
I'm wandering when exactly do UIAppearance rules get applied to some new view controller?
I've made some global rules and I call them in my app delegate. That way all UIButtons look that same. But...
Maltha asked 13/7, 2012 at 13:21
3
Solved
I'm setting an image for my navigationbar like so:
[[UINavigationBar appearance] setBackgroundImage:[UIImage imageNamed:@"navbar.png"] forBarMetrics:UIBarMetricsDefault];
Then I don't want this ...
Mim asked 18/8, 2012 at 9:13
2
Solved
I'm writing my first iOS app targeting the iOS 5.0+ platform. I'm using the UIAppearance protocol to customize the applications UI.
I'm trying to change the backgrounds for UIBarButtonItem across ...
Conservation asked 25/4, 2012 at 3:42
1
I am setting the appearance of the segmented control via these statements in the app delegate.
[[UISegmentedControl appearance] setBackgroundImage:[[UIImage imageNamed:@"segmentation_normal.png"...
Glossitis asked 25/6, 2012 at 4:27
1
Solved
I’m using the appearanceWhenContainedIn method on certain UI elements that I want to customise in my iOS 6 app. The problem I found is that none of my customisations are applied if I try to provide...
Mokpo asked 25/9, 2012 at 22:27
1
Solved
I’m trying to detect an iOS 6-specific appearance method, by running respondsToSelector on the [UIBarButtonItem appearance]. However, it always returns NO for me, whatever selector I specify:
// S...
Chartres asked 19/9, 2012 at 23:33
2
Solved
I styled a UIBarButtonItem using Appearance API like the following
[[UIBarButtonItem appearance] setBackgroundImage:barButtonBgImage forState:UIControlStateNormal barMetrics:UIBarMetricsDefault];
...
Petitionary asked 5/9, 2012 at 21:40
1
Solved
I am trying to increase the height of the UINavigationBar via UIAppearance
The height itself does change but part of the bar is obscured by the device status bar. I would like to move the bar down...
Divisionism asked 6/6, 2012 at 16:48
1
Solved
I'm in the process of incorporating iOS 5's UIAppearance feature to give my universal app a unique theme. Currently, I have implemented some code in my App Delegate to give the app custom navigatio...
Jonellejones asked 4/7, 2012 at 18:39
1
Solved
In my AppDelegate I use UIAppearance to set my own NavigationBar with this code :
[[UINavigationBar appearance] setTintColor:[UIColor blackColor]];
[[UINavigationBar appearance] setBackgroundImage...
Uncial asked 23/5, 2012 at 22:9
2
Solved
I'm using the iOS 5 UIAppearance protocol to use a custom navigation bar back button as seen here. Unlike other methods I've found, this one is the best since it preserves the default back button a...
Reams asked 6/5, 2012 at 14:32
© 2022 - 2024 — McMap. All rights reserved.