HomeTableViewCellSlide.m 943 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // HomeTableViewCellSlide.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 "HomeTableViewCellSlide.h"
  9. @implementation HomeTableViewCellSlide
  10. - (void)awakeFromNib {
  11. // Initialization code
  12. // DebugLog(NSStringFromCGRect(self.frame));
  13. // self.imgScroll = [[CycleScrollView alloc] initWithFrame:self.frame animationDuration:5];
  14. // self.imgScroll.autoresizingMask = UIViewAutoresizingFlexibleHeight |UIViewAutoresizingFlexibleWidth|UIViewAutoresizingFlexibleLeftMargin|UIViewAutoresizingFlexibleRightMargin|UIViewAutoresizingFlexibleTopMargin|UIViewAutoresizingFlexibleBottomMargin;
  15. //
  16. // [self.contentView addSubview:self.imgScroll];
  17. }
  18. - (void)setSelected:(BOOL)selected animated:(BOOL)animated {
  19. [super setSelected:selected animated:animated];
  20. // Configure the view for the selected state
  21. }
  22. @end