Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
805 | - | 1 | // |
2 | // PSMultiValueSpecifierTable.h |
||
3 | // InAppSettings |
||
4 | // |
||
5 | // Created by David Keegan on 11/3/09. |
||
6 | // Copyright 2009 InScopeApps{+}. All rights reserved. |
||
7 | // |
||
8 | |||
9 | #import <UIKit/UIKit.h> |
||
10 | #import "InAppSettingsSpecifier.h" |
||
11 | |||
12 | @interface InAppSettingsPSMultiValueSpecifierTable : UITableViewController { |
||
13 | InAppSettingsSpecifier * setting; |
||
14 | } |
||
15 | |||
16 | @property (nonatomic, retain) InAppSettingsSpecifier * setting; |
||
17 | |||
18 | - (id) initWithSetting:(InAppSettingsSpecifier *)inputSetting; |
||
19 | - (id) getValue; |
||
20 | - (void) setValue:(id)newValue; |
||
21 | |||
22 | @end |