AccountRechargeOthermoneyTBCell.h 612 B

1234567891011121314151617181920212223
  1. //
  2. // AccountRechargeOthermoneyTBCell.h
  3. // BuguLive
  4. //
  5. // Created by hym on 2016/10/25.
  6. // Copyright © 2016年 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. typedef void(^onClick)(id object);
  10. @interface AccountRechargeOthermoneyTBCell : UITableViewCell
  11. @property (weak, nonatomic) IBOutlet UITextField *tfOtherMoney;
  12. @property (weak, nonatomic) IBOutlet UILabel *lbOtherMoney;
  13. @property (weak, nonatomic) IBOutlet UIButton *btnOperation;
  14. @property (copy, nonatomic) onClick block;
  15. @property (copy, nonatomic) NSString * rate;
  16. + (instancetype)cellWithTbaleview:(UITableView *)newTableview;
  17. @end