Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
805 | - | 1 | // |
2 | // PSToggleSwitchSpecifier.h |
||
3 | // InAppSettingsTestApp |
||
4 | // |
||
5 | // Created by David Keegan on 11/21/09. |
||
6 | // Copyright 2009 InScopeApps{+}. All rights reserved. |
||
7 | // |
||
8 | |||
9 | #import <UIKit/UIKit.h> |
||
10 | #import "InAppSettingsTableCell.h" |
||
11 | |||
12 | @interface InAppSettingsPSTextFieldSpecifierCell : InAppSettingsTableCell { |
||
13 | UITextField *textField; |
||
14 | } |
||
15 | |||
16 | @property (nonatomic, retain) UITextField *textField; |
||
17 | |||
18 | - (BOOL)isSecure; |
||
19 | - (UIKeyboardType)getKeyboardType; |
||
20 | - (UITextAutocapitalizationType)getAutocapitalizationType; |
||
21 | - (UITextAutocorrectionType)getAutocorrectionType; |
||
22 | - (void)textChangeAction; |
||
23 | |||
24 | @end |