PSSpecifier: Difference between revisions

From iPhone Development Wiki
(clearer link)
m (Unnecessary change inconsistent with standard)
 
(2 intermediate revisions by the same user not shown)
Line 8: Line 8:


==== Custom Height ====
==== Custom Height ====
On your PSListController subclass, to change the size of the cell override
On your PSListController subclass, to change the size of the cell override


Line 21: Line 22:


{{occlass|library=Preferences.framework|navbox=1}}
{{occlass|library=Preferences.framework|navbox=1}}
[[Category:Preferences]]

Latest revision as of 02:57, 11 April 2016

PSSpecifier represents a user-facing setting or actionable item in the Preferences framework. Specifiers are typically loaded from dictionary representations, but can be created at runtime with +[PSSpecifier preferenceSpecifierNamed:target:set:get:detail:cell:edit:]; they are often used in conjunction with a PSListController, which contains logic for rendering them into a table.

Preference specifiers have properties as documented at Preferences specifier plist. Each specifier is given a type and may contain a default value (used for display purposes only), a preferences domain, a preferences key, and selectors to invoke for various actions.

Additions

PSEditTextViewCell

Custom Height

On your PSListController subclass, to change the size of the cell override

- (CGFloat)preferencesTable:(UIPreferencesTable *)table heightForRow:(NSInteger)row inGroup:(NSInteger)group withProposedHeight:(CGFloat)proposedHeight;

Call setUserInfo on the specifier to set the inner text view height:

[specifier setUserInfo:[NSDictionary dictionaryWithObject:[NSNumber numberWithInt:180] forKey:@"height"]];