Subversion Repositories Projects

Rev

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 InAppSettingsPSToggleSwitchSpecifierCell : InAppSettingsTableCell {
13
    UISwitch *valueSwitch;
14
}
15
 
16
@property (nonatomic, retain) UISwitch *valueSwitch;
17
 
18
- (BOOL)getBool;
19
- (void)setBool:(BOOL)newValue;
20
- (void)switchAction;
21
 
22
@end