summaryrefslogtreecommitdiffstats
path: root/SourcesEditViewCell.m
diff options
context:
space:
mode:
authormatt handler <matt.handler@gmail.com>2011-04-21 19:19:57 -0400
committermatt handler <matt.handler@gmail.com>2011-04-21 19:19:57 -0400
commit64e9e2e8d01ec34e5d7a2c1cb11d3780408403c4 (patch)
treecd4e2a3ba3ca2cf6543315ebb0ccb1ab6ae5b0ea /SourcesEditViewCell.m
parente5a5bc8a1edc90cf0b200956f6a3f7712766d1d6 (diff)
downloadpiccast-app-64e9e2e8d01ec34e5d7a2c1cb11d3780408403c4.tar.gz
piccast-app-64e9e2e8d01ec34e5d7a2c1cb11d3780408403c4.zip
add titlebar image, loading image, loading fade, sources edit page has onoff switch but needs it to work better, drawRect override for navigationbar
Diffstat (limited to 'SourcesEditViewCell.m')
-rw-r--r--SourcesEditViewCell.m39
1 files changed, 39 insertions, 0 deletions
diff --git a/SourcesEditViewCell.m b/SourcesEditViewCell.m
new file mode 100644
index 0000000..a3d8457
--- /dev/null
+++ b/SourcesEditViewCell.m
@@ -0,0 +1,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