SCLSwitchView.h 663 B

1234567891011121314151617181920212223
  1. //
  2. // SCLSwitchView.h
  3. // SCLAlertView
  4. //
  5. // Created by André Felipe Santos on 27/01/16.
  6. // Copyright (c) 2016-2017 AnyKey Entertainment. All rights reserved.
  7. //
  8. #if defined(__has_feature) && __has_feature(modules)
  9. @import UIKit;
  10. #else
  11. #import <UIKit/UIKit.h>
  12. #endif
  13. @interface SCLSwitchView : UIView
  14. @property (strong, nonatomic) UIColor *tintColor UI_APPEARANCE_SELECTOR;
  15. @property (strong, nonatomic) UIColor *labelColor UI_APPEARANCE_SELECTOR;
  16. @property (strong, nonatomic) UIFont *labelFont UI_APPEARANCE_SELECTOR;
  17. @property (strong, nonatomic) NSString *labelText UI_APPEARANCE_SELECTOR;
  18. @property (nonatomic, getter=isSelected) BOOL selected;
  19. @end