InComeDataCell.m 905 B

123456789101112131415161718192021222324252627282930313233
  1. //
  2. // InComeDataCell.m
  3. // BuguLive
  4. //
  5. // Created by 岳克奎 on 16/8/11.
  6. // Copyright © 2016年 xfg. All rights reserved.
  7. //
  8. #import "InComeDataCell.h"
  9. @implementation InComeDataCell
  10. - (void)awakeFromNib
  11. {
  12. [super awakeFromNib];
  13. self.auctionManagement_Btn.layer.borderColor = kAppMainColor.CGColor;
  14. [self.auctionManagement_Btn setTitleColor:kAppMainColor
  15. forState:UIControlStateNormal];
  16. self.auctionManagement_Btn.layer.borderWidth = 1.0f;
  17. self.auctionManagement_Btn.layer.cornerRadius = self.auctionManagement_Btn.frame.size.height/2.0f;
  18. self.auctionManagement_Btn.layer.masksToBounds = YES;
  19. //
  20. self.contentView.backgroundColor = kBackGroundColor;
  21. }
  22. - (void)setSelected:(BOOL)selected animated:(BOOL)animated {
  23. [super setSelected:selected animated:animated];
  24. // Configure the view for the selected state
  25. }
  26. @end