uiappearance Questions

6

(NOTE: I see there are several similar questions on SO, but none of them seem to get at my specific issue of wanting to change the unselected appearance of both custom and system UITabBarItems.) I...
Univocal asked 26/9, 2013 at 2:16

4

Solved

I want to set the back button in my UINavigationBar to this image: I don't want the image to be embedded in the standard back button image, I just want this image to appear. I know from looking...
Albright asked 27/4, 2013 at 16:31

2

Solved

Accoding to NSHipster, "having custom UI classes conform to UIAppearance is not only a best-practice, but it demonstrates a certain level of care being put into its implementation." Therefore, I'm...
Jeffreyjeffreys asked 21/7, 2016 at 15:56

3

Solved

I use the following code to customize the back button on the navigation bar throughout my application: UIImage *backButton = [[UIImage imageNamed:@"backButton"] resizableImageWithCapInsets:UIEdgeI...
Michamichael asked 15/11, 2012 at 20:12

5

Solved

I'm having the most frustrating dilemma. I've researched up and down and can clearly see that Apple does not want us tampering with iOS 7. Well, I want to tamper. And, the team at Mailbox clearly f...
Annotate asked 24/11, 2013 at 21:26

1

Solved

I've observed following: By setting the Titlecolor of a UIButton with appearance, the UIMenuItems in a UIMenuController of a UITextView are getting the same color. Code in applicationDidFinishLau...
Telemark asked 20/10, 2014 at 9:5

7

Solved

I have a multiple View Controllers and I want to set the font color of all to red. [[UINavigationBar appearance] setFont:[UIFont boldSystemFontOfSize:12.0]]; is throwing an unrecognized selecto...
Chancroid asked 3/5, 2012 at 11:20

5

Solved

I have some custom appearance properties in my view class (a descendant of UIView). I want to customize the view appearance according to these properties, but I can’t do that inside the initializer...
Elytron asked 24/5, 2012 at 12:21

2

Solved

I am not able to change the text colors of a UITableViewCell using UIAppearance mechanism. Here is my code with comments showing what is working for me and what is not: UITableViewCell *cell = [U...
Les asked 13/12, 2015 at 20:43

8

Solved

UNIQLO's new alarm app has a custom UIDatePicker: And I want to create my own custom UIDatePicker. I tried to change the appearance of the DatePicker, but looking for UI_APPEARANCE_SELECTOR in ...
Georgia asked 1/6, 2012 at 5:3

1

Using the following code to customize regular UIButtons also affects UIBarButtonItems and clear buttons in text fields. [[UIButton appearance] setBackgroundImage:greenButtonImage forState:UIContro...
Vervain asked 10/10, 2012 at 9:39

4

I am aware that the iOS framework has a concept of UIAppearance which allows you to easily adjust the visual appearance of the controls in your application. What I am wondering is whether there are...
Enchase asked 19/11, 2012 at 17:19

3

Solved

I need to change the selected cell background colour for all the cells in my app. As I know there is a way to use UIAppearance protocol for this purposes. Is it possible to realize this by the cate...
Bisulfate asked 18/3, 2014 at 10:38

2

In my application delegate's didFinishLaunchingWithOptions function, I try to customize the appearance of my navigation bar. [UINavigationBar appearance].translucent = NO; [[UINavigationBar appear...
Stoicism asked 2/12, 2014 at 20:8

2

Solved

This is both a question and a partial solution. *Sample project here: https://github.com/JosephLin/TransitionTest Problem 1: When using transitionFromViewController:..., layouts done by th...
Cajuput asked 31/1, 2013 at 17:52

3

Solved

I'm currently customising the navigation bar background image of my iOS app using the UIAppearance proxy. There is a button for switching between two different modes which triggers a notification. ...
Rafe asked 22/2, 2013 at 12:14

2

Solved

I am trying to change the look of the UINavigationBar in my iOS7 app. I am doing the following: - (void)viewDidLoad { [super viewDidLoad]; m_sNumberToCall = @""; UIBarButtonItem * btn = [[UIB...
Morelli asked 14/11, 2013 at 18:17

3

Solved

I am using the UIAppearance protocol to set the background image of UINavigationBar objects throughout my app. [[UINavigationBar appearance] setBackgroundImage:[UIImage imageNamed:@"image-name"] f...
Pinstripe asked 22/3, 2013 at 21:48

2

Solved

I have an appearance proxy that sets the barTintColor property to green on UINavigationBar [[UINavigationBar appearance] setBarTintColor:[UIColor colorWithRed:54./255 green:165./255 blue:53./255 a...
Outline asked 26/9, 2013 at 0:21

2

I have a custom navBar image in the navigation controllers in my app, set using UIAppearance protocol. However, when sending mail through the app (via MFMailComposeViewController), I want the defau...
Broadtail asked 26/2, 2013 at 20:16

4

Solved

Trying out iOS 7 did: [[UINavigationBar appearance] setTranslucent:NO]; Got crash and error: *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '*** Illegal p...
Duprey asked 5/7, 2013 at 3:49

1

Solved

I noticed that my app doesn't look good when the "darken colors" iOS system setting is enabled. Some navigation buttons are white, some are darkened to gray. Is there any way to detect if this set...
Kendakendal asked 28/5, 2014 at 18:57

4

How to use UIKeyboardAppearanceDark with SLComposeViewController? The SLComposeViewController class presents a view to the user to compose a post for supported social networking services. SLCom...
Thirtythree asked 12/5, 2014 at 4:46

3

my app is running with no problem in ios 7 but when i run it in ios 6 it goes down. The report is: 2013-10-17 22:58:45.509 Santarem Guide[606:c07] -[_UIAppearance setTintColor:]: unrecognized sele...
Edging asked 17/10, 2013 at 22:10

0

I would like to style my UIBarButtonItems with a custom font. I am using the appearance proxy on UIBarButtonItem's titleTextAttributes to accomplish this successfully. However, I would like to set ...

© 2022 - 2024 — McMap. All rights reserved.