uiappearance Questions

1

I have an iOS 7 only application that uses UIAppearance to style the UINavigationBar's throughout the app. I have the following code in my AppDelegate: [[UINavigationBar appearance] setBackground...
Jael asked 11/10, 2013 at 13:46

1

I simply want the keyboard of UITextView to appear in dark mode. However UItextView doesn't have such a property. Normally for UITextField you can use the following to change the keyboards across ...
Bohlen asked 1/2, 2014 at 21:29

2

Solved

im currently styling my app via the appearance proxy and i ran into this problem: when i set properties on the UIButton appearance my font is ignored: [buttonAppearance setTitleColor:darkColor for...
Pickax asked 15/6, 2013 at 21:11

1

Solved

I want to implement add themes to an app I'm creating. Simply just switching between 2 colors and I want the navigation bars, tool bars etc. to appear in the selected color. When the app first loa...
Viole asked 23/1, 2014 at 19:18

1

Solved

In iOS7, by default UIBarButtonItem uses a Helvetica regular weight font for style UIBarButtonItemStylePlain and a bold weight for UIBarButtonItemStyleDone. My app uses custom fonts, and I'm using...
Porterporterage asked 24/10, 2013 at 15:38

3

Solved

I am getting the following crash when I present a MFMailComposeViewController: 2013-11-08 11:04:05.963 <redacted>[7108:1603] *** Assertion failure in NSDictionary *_UIRecordArgumentOfInvocat...
Mannerism asked 8/11, 2013 at 16:28

1

Question In the docs for MFMessageComposeViewController apple says: Important The message composition interface itself is not customizable and must not be modified by your application. But na...
Crouse asked 11/4, 2012 at 13:48

5

Solved

I saw an article a while back, which is here: User Interface Customization in iOS 6 It shows customization for iOS 6. Since the article I have written Apps that use the technique, it is pretty st...
Josiejosler asked 15/11, 2013 at 20:18

3

Solved

I know I can customize the UIBarButtonItem text via setTitleTextAttributes:forState: There is also a way to customize UITabBar icons via setSelectedImageTintColor: Is there a way to customize...
Heterogenous asked 21/2, 2013 at 16:51

3

Solved

How do I change the border color of the segmented controller in iOS7 without changing the text color? It would be ideal if I could keep the line between the segments as is (i.e. same color as ...
Indies asked 4/10, 2013 at 11:1

2

I am trying to customize the appearance of the navigationBar title in my ios application. This is the code I currently have: NSMutableDictionary *navigationTitleAttributes = [NSMutableDictionary d...
Mundell asked 17/8, 2013 at 22:4

1

Solved

I'm trying to setSelectedImageTintColor in iOS 7, but it's not working. Here's the code that I have in my AppDelegate.m under didFinishLaunchingWithOptions UITabBarController *tabBarController = (...
Heiskell asked 10/10, 2013 at 21:59

3

Solved

I'm getting so frustrated while customizing my app. I've already created and styled almost the whole app, including Navigation bar, toolbar, tabBar etc, but everytime a MFMailComposeViewController,...
Scrofulous asked 2/9, 2013 at 10:16

2

Solved

TL&DR; Setting a custom property of a subclass of UIBarButtonItem using UIAppearance proxy is causing the "unrecognized selector" exception, beause the setter is probably being forwarded by UIAppe...
Cleotildeclepe asked 13/8, 2013 at 8:39

4

Solved

I have a custom object, it inherits from NSObject. This object does "some things", one of it is creating an UIView with some UIKit objects (UILabel, UIButtons ecc ecc...). This object has some pro...
Stillbirth asked 31/3, 2013 at 18:26

3

Solved

UPDATE: Got a mail from Apple saying that the bug/issue has been fixed now and the next SDK release won't have this issue. Peace! I have this in the code for my AppDelegate: - (void) customizeApp...
Demoralize asked 19/10, 2012 at 10:37

3

I'm trying to customize the following segmented control, using a left image for the first button and a right image for the second button. How would I do this using UIAppearance? I want to change t...
Whitman asked 12/5, 2012 at 8:56

2

Solved

I use the following code in my appdelegate: UINavigationBar *navigationBar = [UINavigationBar appearance]; [navigationBar setBackgroundImage:[[UIImage imageNamed:@"top_bar"] stretchableImageWithLe...
Darciedarcy asked 27/4, 2013 at 20:7

0

I am customizing a UINavigationBar like so: UIImage * img = [UIImage imageNamed:@"background.png"]; [[UINavigationBar appearance] setBackgroundImage:img forBarMetrics:UIBarMetricsDefault]; My or...
Henryk asked 24/4, 2013 at 10:54

1

I currently use this code to set the titleView of my navigation item: - (void)viewDidLoad { ... UIImage *navbarTitle = [UIImage imageNamed:@"navbartitleview1"]; UIImageView *imageView = [[UIIma...
Cinematography asked 27/6, 2012 at 16:30

2

Solved

I have a UIWebView in my app, and the problem is that I have a UIAppearance that modifies the appearance of segmented controls, so it modifies the segmented control in the input accessory view for ...
Sesquioxide asked 26/6, 2012 at 19:51

3

I know similar question is already asked, but didn't get a satisfactory answer. So i am adding this question again . Based on user selection in iphone application , i need to change the look and f...
Harrie asked 11/1, 2012 at 13:42

3

Solved

I'm building a file management app, and I occasionally get the following error while calling a UIImagePickerController or a MPMediaPickerController: *** -[_UIImageViewPretiledImageCacheKey hash]: ...
Jackfruit asked 21/6, 2012 at 3:28

1

Solved

Below code is perfectly working fine iOS 5, but not on iOS 6 or above. What I want that for Email composer sheet the navigationBar image will be different then other UINavigationBar classes. I can'...
Strep asked 2/1, 2013 at 16:17

1

Solved

The docs for UIAppearance is extremely poor. I want to customize the colours for a UIPageController, but I am unable to figure out which properties to set. When I go [UIPagecontrol appearance] set...
Sympathin asked 26/3, 2012 at 22:56

© 2022 - 2024 — McMap. All rights reserved.