ExerciseSetting.h 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. //
  2. // ExerciseSetting.h
  3. // jiaPei
  4. //
  5. // Created by apple on 16/1/6.
  6. // Copyright © 2016年 JCZ. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface ExerciseSetting : UIView
  10. @property (nonatomic, retain) UILabel *titleLabel;
  11. @property (nonatomic, retain) UILabel *voiceLabel;
  12. @property (nonatomic, retain) UILabel *nightModel;
  13. @property (nonatomic, retain) UILabel *skipLabel;
  14. @property (nonatomic, retain) UILabel *explainLabel;
  15. @property (nonatomic, retain) UILabel *fontModel;
  16. @property (nonatomic, retain) UILabel *fontLabel;
  17. @property (nonatomic, retain) UIButton *finishBtn;
  18. @property (nonatomic, retain) UIButton *smallBtn;
  19. @property (nonatomic, retain) UIButton *standardBtn;
  20. @property (nonatomic, retain) UIButton *bigBtn;
  21. @property (nonatomic, strong) UISwitch *skipSwitch;
  22. @property (nonatomic, strong) UISwitch *explainSwitch;
  23. @property (nonatomic, strong) UISwitch *voiceSwitch;
  24. @property (nonatomic, strong) UISwitch *nightSwitch;
  25. @property (nonatomic, retain) UIImageView *skipView;
  26. @property (nonatomic, retain) UIImageView *explainView;
  27. @property (nonatomic, retain) UIImageView *voiceView;
  28. @property (nonatomic, retain) UIImageView *nightView;
  29. @property (nonatomic, retain) UIImageView *fontView;
  30. -(instancetype)initWithCustomFrame:(CGRect)frame;
  31. -(instancetype)initWithExamFrame:(CGRect)frame;
  32. @end