LoginRewardView.h 601 B

12345678910111213141516171819202122232425
  1. //
  2. // LoginRewardView.h
  3. // BuguLive
  4. //
  5. // Created by yy on 16/10/9.
  6. // Copyright © 2016年 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. typedef void (^RewardBlock)(void);
  10. @interface LoginRewardView : UIView
  11. @property (weak, nonatomic) IBOutlet UIView *bgView;
  12. @property (weak, nonatomic) IBOutlet UIView *displayView;
  13. @property (weak, nonatomic) IBOutlet UILabel *rewardLabel;
  14. @property (weak, nonatomic) IBOutlet UILabel *exLabel;
  15. @property (weak, nonatomic) IBOutlet UIButton *comfirmBtn;
  16. @property (nonatomic, copy) RewardBlock rewardBlock;
  17. + (instancetype)EditNibFromXib;
  18. @end