OrderDetailPickInfoCell.m 497 B

123456789101112131415161718192021222324
  1. //
  2. // OrderDetailPickInfoCell.m
  3. // iSales-NPD
  4. //
  5. // Created by Jack on 2017/7/5.
  6. // Copyright © 2017年 United Software Applications, Inc. All rights reserved.
  7. //
  8. #import "OrderDetailPickInfoCell.h"
  9. @implementation OrderDetailPickInfoCell
  10. - (void)awakeFromNib {
  11. [super awakeFromNib];
  12. // Initialization code
  13. }
  14. - (void)setSelected:(BOOL)selected animated:(BOOL)animated {
  15. [super setSelected:selected animated:animated];
  16. // Configure the view for the selected state
  17. }
  18. @end