OrderListTableViewCell.m 471 B

1234567891011121314151617181920212223
  1. //
  2. // OrderListTableViewCell.m
  3. // RedAnt ERP Mobile
  4. //
  5. // Created by Ray on 8/18/15.
  6. // Copyright (c) 2015 United Software Applications, Inc. All rights reserved.
  7. //
  8. #import "OrderListTableViewCell.h"
  9. @implementation OrderListTableViewCell
  10. - (void)awakeFromNib {
  11. // Initialization code
  12. }
  13. - (void)setSelected:(BOOL)selected animated:(BOOL)animated {
  14. [super setSelected:selected animated:animated];
  15. // Configure the view for the selected state
  16. }
  17. @end