BKTouchIDSwitchView.h 784 B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // BKTouchIDSwitchView.h
  3. // BKPasscodeViewDemo
  4. //
  5. // Created by Byungkook Jang on 2014. 10. 11..
  6. // Copyright (c) 2014년 Byungkook Jang. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @protocol BKTouchIDSwitchViewDelegate;
  10. @interface BKTouchIDSwitchView : UIView
  11. @property (nonatomic, weak) id<BKTouchIDSwitchViewDelegate> delegate;
  12. @property (nonatomic, strong) UIView *switchBackgroundView;
  13. @property (nonatomic, strong) UILabel *messageLabel;
  14. @property (nonatomic, strong) UILabel *titleLabel;
  15. @property (nonatomic, strong) UISwitch *touchIDSwitch;
  16. @property (nonatomic, strong) UIButton *doneButton;
  17. @end
  18. @protocol BKTouchIDSwitchViewDelegate <NSObject>
  19. - (void)touchIDSwitchViewDidPressDoneButton:(BKTouchIDSwitchView *)view;
  20. @end