Files
Ilya Laktyushin bae6e9a1d2 Initial commit
2018-07-26 15:04:25 +03:00

26 lines
484 B
Objective-C

#import <UIKit/UIKit.h>
#import "Scope.h"
@interface ScopeCell : UITableViewCell
- (void)setScope:(Scope *)scope;
+ (NSString *)identifier;
@end
@interface ComplexScopeCell : ScopeCell
@property (weak, nonatomic) IBOutlet UILabel *detailLabel;
@end
@interface SwitchableScopeCell : ScopeCell
@property (nonatomic, copy) void (^valueChanged)(bool on);
@property (nonatomic, weak) IBOutlet UILabel *titleLabel;
@property (nonatomic, weak) IBOutlet UISwitch *switchView;
@end