blob: 6bf62106aaf807da611c614dd94d51ef0ccdcb8a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
//
// SourcesEditViewCell.h
// PicCast
//
// Created by Matthew Handler on 4/20/11.
// Copyright 2011 Earl Industries. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "TopicTableViewCell.h"
@interface SourcesEditViewCell : UITableViewCell {
IBOutlet UISwitch *switcher;
}
@property (nonatomic, retain) UISwitch *switcher;
@end
|