12345678910111213141516171819202122232425262728293031323334353637383940 |
- //
- // ExerciseSetting.h
- // jiaPei
- //
- // Created by apple on 16/1/6.
- // Copyright © 2016年 JCZ. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface ExerciseSetting : UIView
- @property (nonatomic, retain) UILabel *titleLabel;
- @property (nonatomic, retain) UILabel *voiceLabel;
- @property (nonatomic, retain) UILabel *nightModel;
- @property (nonatomic, retain) UILabel *skipLabel;
- @property (nonatomic, retain) UILabel *explainLabel;
- @property (nonatomic, retain) UILabel *fontModel;
- @property (nonatomic, retain) UILabel *fontLabel;
- @property (nonatomic, retain) UIButton *finishBtn;
- @property (nonatomic, retain) UIButton *smallBtn;
- @property (nonatomic, retain) UIButton *standardBtn;
- @property (nonatomic, retain) UIButton *bigBtn;
- @property (nonatomic, strong) UISwitch *skipSwitch;
- @property (nonatomic, strong) UISwitch *explainSwitch;
- @property (nonatomic, strong) UISwitch *voiceSwitch;
- @property (nonatomic, strong) UISwitch *nightSwitch;
- @property (nonatomic, retain) UIImageView *skipView;
- @property (nonatomic, retain) UIImageView *explainView;
- @property (nonatomic, retain) UIImageView *voiceView;
- @property (nonatomic, retain) UIImageView *nightView;
- @property (nonatomic, retain) UIImageView *fontView;
- -(instancetype)initWithCustomFrame:(CGRect)frame;
- -(instancetype)initWithExamFrame:(CGRect)frame;
- @end
|