What properties can I set via an UIAppearance proxy? Apple's UIKit documentation does not list them. Is there a list of these properties?
相关问题
- CALayer - backgroundColor flipped?
- Core Data lightweight migration crashes after App
- Core Data lightweight migration crashes after App
- How can I implement password recovery in an iPhone
- State preservation and restoration strategies with
相关文章
- 现在使用swift开发ios应用好还是swift?
- UITableView dragging distance with UIRefreshContro
- Could I create “Call” button in HTML 5 IPhone appl
- TCC __TCCAccessRequest_block_invoke
- Where does a host app handle NSExtensionContext#co
- Unable to process app at this time due to a genera
- Swift - hide pickerView after value selected
- Popover segue to static cell UITableView causes co
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: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
UIBarButtonItem
UIBarItem
UINavigationBar
UIPageControl
UIProgressView
UIRefreshControl
UISearchBar
UISegmentedControl
UISlider
UIStepper
UISwitch
UITabBar
UITabBarItem
UITableView
UITableViewCell
UITableViewHeaderFooterView
UIToolbar
(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.