STTableCommitBtnCell.m 508 B

12345678910111213141516171819202122232425
  1. //
  2. // STTableCommitBtnCell.m
  3. // BuguLive
  4. //
  5. // Created by 岳克奎 on 17/4/18.
  6. // Copyright © 2017年 xfg. All rights reserved.
  7. //
  8. #import "STTableCommitBtnCell.h"
  9. @implementation STTableCommitBtnCell
  10. - (void)awakeFromNib {
  11. [super awakeFromNib];
  12. // Initialization code
  13. self.commitBtn.userInteractionEnabled = NO;
  14. }
  15. - (void)setSelected:(BOOL)selected animated:(BOOL)animated {
  16. [super setSelected:selected animated:animated];
  17. // Configure the view for the selected state
  18. }
  19. @end