BetView.m 486 B

12345678910111213141516171819202122232425
  1. //
  2. // BetView.m
  3. // GoldenFlowerDemo
  4. //
  5. // Created by yy on 16/11/24.
  6. // Copyright © 2016年 zcd. All rights reserved.
  7. //
  8. #import "BetView.h"
  9. @implementation BetView
  10. + (instancetype)EditNibFromXib
  11. {
  12. return [[NSBundle mainBundle] loadNibNamed:NSStringFromClass(self) owner:nil options:nil].lastObject;
  13. }
  14. - (IBAction)choseMoney:(id)sender
  15. {
  16. if (_delegate && [_delegate respondsToSelector:@selector(selectAmount:)]) {
  17. [_delegate selectAmount:sender];
  18. }
  19. }
  20. @end