ContactListTableViewCell.m 649 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. //
  13. //
  14. // // timelabel.autoresizingMask = UIViewAutoresizingFlexibleLeftMargin;
  15. //// self.rtlabel.autoresizingMask = UIViewAutoresizingFlexibleWidth;
  16. //}
  17. - (void)setSelected:(BOOL)selected animated:(BOOL)animated {
  18. [super setSelected:selected animated:animated];
  19. // Configure the view for the selected state
  20. }
  21. @end