Deprecated: trim(): Passing null to parameter #1 ($string) of type string is deprecated in /var/www/html/extensions/Variables/includes/ExtVariables.php on line 198
PSSpecifier: Difference between revisions - iPhone Development Wiki

PSSpecifier: Difference between revisions

From iPhone Development Wiki
m (Added to Preferences category)
m (Unnecessary change inconsistent with standard)
 
(One intermediate revision 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



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"]];