Subversion Repositories Projects

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
805 - 1
//
2
//  PSToggleSwitchSpecifier.m
3
//  InAppSettingsTestApp
4
//
5
//  Created by David Keegan on 11/21/09.
6
//  Copyright 2009 InScopeApps{+}. All rights reserved.
7
//
8
 
9
#import "InAppSettingsPSChildPaneSpecifierCell.h"
10
#import "InAppSettingsConstants.h"
11
 
12
@implementation InAppSettingsPSChildPaneSpecifierCell
13
 
14
- (void)setUIValues{
15
    [super setUIValues];
16
 
17
    [self setTitle];
18
}
19
 
20
- (void)setupCell{
21
    [super setupCell];
22
 
23
    [self setDisclosure:YES];
24
    self.canSelectCell = YES;
25
}
26
 
27
@end