ContactListTableViewCell.m 635 B

123456789101112131415161718192021222324252627
  1. //
  2. // ContactListTableViewCell.m
  3. // RedAnt ERP Mobile
  4. //
  5. // Created by Ray on 9/17/15.
  6. // Copyright (c) 2015 United Software Applications, Inc. All rights reserved.
  7. //
  8. #import "ContactListTableViewCell.h"
  9. @implementation ContactListTableViewCell
  10. - (void)awakeFromNib {
  11. // Initialization code
  12. // timelabel.autoresizingMask = UIViewAutoresizingFlexibleLeftMargin;
  13. // self.rtlabel.autoresizingMask = UIViewAutoresizingFlexibleWidth;
  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