UpgradeView.m 440 B

123456789101112131415161718192021222324252627
  1. //
  2. // UpgradeView.m
  3. // BuguLive
  4. //
  5. // Created by yy on 16/10/9.
  6. // Copyright © 2016年 xfg. All rights reserved.
  7. //
  8. #import "UpgradeView.h"
  9. @implementation UpgradeView
  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.upgradeBlock)
  17. {
  18. self.upgradeBlock();
  19. }
  20. }
  21. @end