HomeTableViewCellBanner.m 618 B

12345678910111213141516171819202122232425262728
  1. //
  2. // HomeTableViewCellBanner.m
  3. // RedAnt ERP Mobile
  4. //
  5. // Created by Ray on 7/21/15.
  6. // Copyright (c) 2015 United Software Applications, Inc. All rights reserved.
  7. //
  8. #import "HomeTableViewCellBanner.h"
  9. @implementation HomeTableViewCellBanner
  10. - (void)awakeFromNib {
  11. // self.BannerImageView.layer.borderColor = [[UIColor whiteColor] CGColor];
  12. // self.BannerImageView.layer.borderWidth = 8;
  13. // Initialization code
  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