24 lines
663 B
Objective-C
24 lines
663 B
Objective-C
//
|
|
// SCLSwitchView.h
|
|
// SCLAlertView
|
|
//
|
|
// Created by André Felipe Santos on 27/01/16.
|
|
// Copyright (c) 2016-2017 AnyKey Entertainment. All rights reserved.
|
|
//
|
|
|
|
#if defined(__has_feature) && __has_feature(modules)
|
|
@import UIKit;
|
|
#else
|
|
#import <UIKit/UIKit.h>
|
|
#endif
|
|
|
|
@interface SCLSwitchView : UIView
|
|
|
|
@property (strong, nonatomic) UIColor *tintColor UI_APPEARANCE_SELECTOR;
|
|
@property (strong, nonatomic) UIColor *labelColor UI_APPEARANCE_SELECTOR;
|
|
@property (strong, nonatomic) UIFont *labelFont UI_APPEARANCE_SELECTOR;
|
|
@property (strong, nonatomic) NSString *labelText UI_APPEARANCE_SELECTOR;
|
|
@property (nonatomic, getter=isSelected) BOOL selected;
|
|
|
|
@end
|