blob: a3d845722d49db0028cca3911f7eb083d20e7394 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
//
// SourcesEditViewCell.m
// PicCast
//
// Created by Matthew Handler on 4/20/11.
// Copyright 2011 Earl Industries. All rights reserved.
//
#import "SourcesEditViewCell.h"
@implementation SourcesEditViewCell
@synthesize switcher;
- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier {
self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
if (self) {
UISwitch *switcher = [[[UISwitch alloc] initWithFrame:CGRectZero] autorelease];
}
return self;
}
- (void)setSelected:(BOOL)selected animated:(BOOL)animated {
[super setSelected:selected animated:animated];
// Configure the view for the selected state.
}
- (void)dealloc {
[super dealloc];
}
@end
|