LoginRewardView.m 449 B

1234567891011121314151617181920212223242526
  1. //
  2. // LoginRewardView.m
  3. // BuguLive
  4. //
  5. // Created by yy on 16/10/9.
  6. // Copyright © 2016年 xfg. All rights reserved.
  7. //
  8. #import "LoginRewardView.h"
  9. @implementation LoginRewardView
  10. + (instancetype)EditNibFromXib
  11. {
  12. return [[NSBundle mainBundle] loadNibNamed:NSStringFromClass(self) owner:nil options:nil].lastObject;
  13. }
  14. - (IBAction)buttonClick:(UIButton *)sender
  15. {
  16. if (self.rewardBlock)
  17. {
  18. self.rewardBlock();
  19. }
  20. }
  21. @end