VowBar.h 431 B

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