a4a5c0d01dd92574c5c2924d7ce85d62876b821d
[atutor.git] / mods / atsocial_iphone_app / InAppSettingsKit / Views / IASKPSToggleSwitchSpecifierViewCell.m
1 //
2 //  IASKPSToggleSwitchSpecifierViewCell.m
3 //  http://www.inappsettingskit.com
4 //
5 //  Copyright (c) 2009:
6 //  Luc Vandal, Edovia Inc., http://www.edovia.com
7 //  Ortwin Gentz, FutureTap GmbH, http://www.futuretap.com
8 //  All rights reserved.
9 // 
10 //  It is appreciated but not required that you give credit to Luc Vandal and Ortwin Gentz, 
11 //  as the original authors of this code. You can give credit in a blog post, a tweet or on 
12 //  a info page of your app. Also, the original authors appreciate letting them know if you use this code.
13 //
14 //  This code is licensed under the BSD license that is available at: http://www.opensource.org/licenses/bsd-license.php
15 //
16
17 #import "IASKPSToggleSwitchSpecifierViewCell.h"
18 #import "IASKSwitch.h"
19
20 @implementation IASKPSToggleSwitchSpecifierViewCell
21
22 @synthesize label=_label, 
23             toggle=_toggle;
24             
25 - (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier {
26     if ((self = [super initWithStyle:style reuseIdentifier:reuseIdentifier])) {
27         // Initialization code
28     }
29     return self;
30 }
31
32
33 - (void)setSelected:(BOOL)selected animated:(BOOL)animated {
34
35     [super setSelected:selected animated:animated];
36
37     // Configure the view for the selected state
38 }
39
40
41 - (void)dealloc {
42     [super dealloc];
43 }
44
45
46 @end