1234567891011121314151617181920 |
- //
- // VowBar.h
- // jiaPei
- //
- // Created by apple on 16/1/15.
- // Copyright © 2016年 JCZ. All rights reserved.
- //
- //考试页面下的心愿条页面
- #import <UIKit/UIKit.h>
- @interface VowBar : UIView
- @property (nonatomic, retain) UILabel *countLabel;
- @property (nonatomic, retain) UIButton *topicBtn;
- @property (nonatomic, retain) UIButton *vomBtn;
- -(instancetype)initWithFrame:(CGRect)frame title:(NSString *)title;
- @end
|