Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7539017
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T07:16:21+00:00 2026-05-30T07:16:21+00:00

What properties can I set via an UIAppearance proxy? Apple’s UIKit documentation does not

  • 0

What properties can I set via an UIAppearance proxy? Apple’s UIKit documentation does not list them. Is there a list of these properties?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-30T07:16:23+00:00Added an answer on May 30, 2026 at 7:16 am

    Properties that can be set via UIAppearance are tagged with UI_APPEARANCE_SELECTOR in the corresponding header file.

    To generate a list of properties tagged with UI_APPEARANCE_SELECTOR, you can use the following unix commands in a terminal:

    cd /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer‌​/SDKs/iPhoneOS5.1.sdk/System/Library/Frameworks/UIKit.framework/Headers
    grep -H UI_APPEARANCE_SELECTOR ./* | sed 's/ __OSX_AVAILABLE_STARTING(__MAC_NA,__IPHONE_5_0) UI_APPEARANCE_SELECTOR;//'
    

    Here is a list that I compiled using the above commands. This is for the 5.0 SDK. The corresponding getter methods have been omitted for brevity.


    UIActivityIndicatorView

    @property (readwrite, nonatomic, retain) UIColor *color
    

    UIBarButtonItem

    @property(nonatomic,retain) UIColor *tintColor
    - (void)setBackgroundImage:(UIImage *)backgroundImage forState:(UIControlState)state barMetrics:(UIBarMetrics)barMetrics
    - (void)setBackgroundVerticalPositionAdjustment:(CGFloat)adjustment forBarMetrics:(UIBarMetrics)barMetrics 
    - (void)setTitlePositionAdjustment:(UIOffset)adjustment forBarMetrics:(UIBarMetrics)barMetrics 
    - (void)setBackButtonBackgroundImage:(UIImage *)backgroundImage forState:(UIControlState)state barMetrics:(UIBarMetrics)barMetrics
    - (void)setBackButtonTitlePositionAdjustment:(UIOffset)adjustment forBarMetrics:(UIBarMetrics)barMetrics
    - (void)setBackButtonBackgroundVerticalPositionAdjustment:(CGFloat)adjustment forBarMetrics:(UIBarMetrics)barMetrics 
    
    [iOS 6.0]
    - (void)setBackgroundImage:(UIImage *)backgroundImage forState:(UIControlState)state style:(UIBarButtonItemStyle)style barMetrics:(UIBarMetrics)barMetrics [iOS 6.0]
    

    UIBarItem

    - (void)setTitleTextAttributes:(NSDictionary *)attributes forState:(UIControlState)state
    

    UINavigationBar

    @property(nonatomic,retain) UIColor *tintColor
    @property(nonatomic,copy) NSDictionary *titleTextAttributes
    - (void)setBackgroundImage:(UIImage *)backgroundImage forBarMetrics:(UIBarMetrics)barMetrics
    - (void)setTitleVerticalPositionAdjustment:(CGFloat)adjustment forBarMetrics:(UIBarMetrics)barMetrics
    
    [iOS 6.0]
    @property(nonatomic,retain) UIImage *shadowImage
    
    [iOS 7.0]
    @property(nonatomic,retain) UIColor *barTintColor 
    - (void)setBackgroundImage:(UIImage *)backgroundImage forBarPosition:(UIBarPosition)barPosition barMetrics:(UIBarMetrics)barMetrics 
    - (UIImage *)backgroundImageForBarPosition:(UIBarPosition)barPosition barMetrics:(UIBarMetrics)barMetrics 
    @property(nonatomic,retain) UIImage *backIndicatorImage 
    @property(nonatomic,retain) UIImage *backIndicatorTransitionMaskImage 
    

    UIPageControl

    [iOS 6.0]
    @property(nonatomic,retain) UIColor *pageIndicatorTintColor
    @property(nonatomic,retain) UIColor *currentPageIndicatorTintColor
    

    UIProgressView

    @property(nonatomic, retain) UIColor* progressTintColor    
    @property(nonatomic, retain) UIColor* trackTintColor    
    @property(nonatomic, retain) UIImage* progressImage
    @property(nonatomic, retain) UIImage* trackImage
    

    UIRefreshControl

    [iOS 6.0]
    @property (nonatomic, retain) UIColor *tintColor
    @property (nonatomic, retain) NSAttributedString *attributedTitle
    

    UISearchBar

    @property(nonatomic,retain) UIImage *backgroundImage
    @property(nonatomic,retain) UIImage *scopeBarBackgroundImage
    @property(nonatomic) UIOffset searchFieldBackgroundPositionAdjustment
    @property(nonatomic) UIOffset searchTextPositionAdjustment
    - (void)setSearchFieldBackgroundImage:(UIImage *)backgroundImage forState:(UIControlState)state
    - (void)setImage:(UIImage *)iconImage forSearchBarIcon:(UISearchBarIcon)icon state:(UIControlState)state
    - (void)setScopeBarButtonBackgroundImage:(UIImage *)backgroundImage forState:(UIControlState)state 
    - (void)setScopeBarButtonDividerImage:(UIImage *)dividerImage forLeftSegmentState:(UIControlState)leftState rightSegmentState:(UIControlState)rightState
    - (void)setScopeBarButtonTitleTextAttributes:(NSDictionary *)attributes forState:(UIControlState)state
    - (void)setPositionAdjustment:(UIOffset)adjustment forSearchBarIcon:(UISearchBarIcon)icon
    
    [iOS 7.0]
    @property(nonatomic,retain) UIColor *barTintColor 
    - (void)setBackgroundImage:(UIImage *)backgroundImage forBarPosition:(UIBarPosition)barPosition barMetrics:(UIBarMetrics)barMetrics 
    - (UIImage *)backgroundImageForBarPosition:(UIBarPosition)barPosition barMetrics:(UIBarMetrics)barMetrics 
    

    UISegmentedControl

    @property(nonatomic,retain) UIColor *tintColor UI_APPEARANCE_SELECTOR;
    - (void)setBackgroundImage:(UIImage *)backgroundImage forState:(UIControlState)state barMetrics:(UIBarMetrics)barMetrics 
    - (void)setDividerImage:(UIImage *)dividerImage forLeftSegmentState:(UIControlState)leftState rightSegmentState:(UIControlState)rightState barMetrics:(UIBarMetrics)barMetrics
    - (void)setTitleTextAttributes:(NSDictionary *)attributes forState:(UIControlState)state
    - (void)setContentPositionAdjustment:(UIOffset)adjustment forSegmentType:(UISegmentedControlSegment)leftCenterRightOrAlone barMetrics:(UIBarMetrics)barMetrics
    

    UISlider

    @property(nonatomic,retain) UIColor *minimumTrackTintColor
    @property(nonatomic,retain) UIColor *maximumTrackTintColor
    @property(nonatomic,retain) UIColor *thumbTintColor
    

    UIStepper

    [iOS 6.0]
    @property(nonatomic,retain) UIColor *tintColor
    - (void)setBackgroundImage:(UIImage*)image forState:(UIControlState)state
    - (void)setDividerImage:(UIImage*)image forLeftSegmentState:(UIControlState)leftState rightSegmentState:(UIControlState)rightState
    - (void)setIncrementImage:(UIImage *)image forState:(UIControlState)state
    - (void)setDecrementImage:(UIImage *)image forState:(UIControlState)state
    

    UISwitch

    @property(nonatomic, retain) UIColor* onTintColor
    
    [iOS 6.0]
    @property(nonatomic, retain) UIColor *tintColor
    @property(nonatomic, retain) UIColor *thumbTintColor
    @property(nonatomic, retain) UIImage *onImage
    @property(nonatomic, retain) UIImage *offImage
    

    UITabBar

    @property(nonatomic,retain) UIColor *tintColor
    @property(nonatomic,retain) UIColor *selectedImageTintColor
    @property(nonatomic,retain) UIImage *backgroundImage
    @property(nonatomic,retain) UIImage *selectionIndicatorImage
    
    [iOS 6.0]
    @property(nonatomic,retain) UIImage *shadowImage
    
    [iOS 7.0]
    @property(nonatomic,retain) UIColor *barTintColor 
    @property(nonatomic) UITabBarItemPositioning itemPositioning 
    @property(nonatomic) CGFloat itemWidth 
    @property(nonatomic) CGFloat itemSpacing 
    @property(nonatomic) UIBarStyle barStyle 
    

    UITabBarItem

    - (void)setTitlePositionAdjustment:(UIOffset)adjustment
    

    UITableView

    [iOS 6.0]
    @property(nonatomic, retain) UIColor *sectionIndexColor
    @property(nonatomic, retain) UIColor *sectionIndexTrackingBackgroundColor
    
    [iOS 7.0]
    @property (nonatomic) UIEdgeInsets separatorInset 
    @property(nonatomic, retain) UIColor *sectionIndexBackgroundColor 
    

    UITableViewCell

    [iOS 7.0]
    @property (nonatomic) UIEdgeInsets separatorInset 
    

    UITableViewHeaderFooterView

    [iOS 6.0]
    @property(nonatomic, retain) UIColor *tintColor
    

    UIToolbar

    @property(nonatomic,retain) UIColor *tintColor;
    - (void)setBackgroundImage:(UIImage *)backgroundImage forToolbarPosition:(UIToolbarPosition)topOrBottom barMetrics:(UIBarMetrics)barMetrics
    
    [iOS 6.0]
    - (void)setShadowImage:(UIImage *)shadowImage forToolbarPosition:(UIToolbarPosition)topOrBottom
    
    [iOS 7.0]
    @property(nonatomic,retain) UIColor *barTintColor 
    

    (July 3, 2012): This list hasn’t changed up til the most recent version of XCode (4.3.3).


    (March 12, 2013): List updated for SDK 6.1. Properties that apply for iOS 6.0 (or greater) are listed under the [iOS 6.0] tag.


    (Oct. 24, 2013): List updated for SDK 7.0. Properties that apply for iOS 7.0 (or greater) are listed under the [iOS 7.0] tag.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Does this smell? I have a few properties you can only set once. They
Can Ant properties set via properties file, resolve other properties from properties files? For
i've no idea how i can set properties for an iframe that's positioned 300px
In Visual Studio 2008 project properties, Application tab, I can set the Output type
In my program, how can I read the properties set in AssemblyInfo.cs: [assembly: AssemblyTitle(My
You can manually set it via _Package Explorer / JRE System Library / rt.jar
Is there a way to retrieve the set-at-creations properties of an EmberJS object if
With my understading, the nature of a Action is that properties can be pushed
The Application class in System.Windows.Forms have a some properties that can be quite useful.
I can use properties of an Excel Worksheet to tell if the worksheet is

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.