Subversion Repositories Projects

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
805 - 1
//
2
//  InAppSettingsTableCell.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 "InAppSettingsSpecifier.h"
11
 
12
@interface InAppSettingsTableCell : UITableViewCell {
13
    InAppSettingsSpecifier *setting;
14
    UILabel *titleLabel, *valueLabel;
15
    UIControl *valueInput;
16
    BOOL canSelectCell;
17
}
18
 
19
@property (nonatomic, retain) InAppSettingsSpecifier *setting;
20
@property (nonatomic, retain) UILabel *titleLabel, *valueLabel;
21
@property (nonatomic, assign) UIControl *valueInput;
22
@property (nonatomic, assign) BOOL canSelectCell;
23
 
24
- (void)setTitle;
25
- (void)setDetail;
26
- (void)setDetail:(NSString *)detail;
27
- (void)setDisclosure:(BOOL)disclosure;
28
 
29
- (void)setValueDelegate:(id)delegate;
30
 
31
- (void)setupCell;
32
- (void)setUIValues;
33
- (id)initWithReuseIdentifier:(NSString *)reuseIdentifier;
34
 
35
@end