| 123456789101112131415161718192021222324252627282930 |
- //
- // HomeTableViewCellSlide.m
- // RedAnt ERP Mobile
- //
- // Created by Ray on 7/21/15.
- // Copyright (c) 2015 United Software Applications, Inc. All rights reserved.
- //
- #import "HomeTableViewCellSlide.h"
- @implementation HomeTableViewCellSlide
- - (void)awakeFromNib {
- // Initialization code
-
-
- // DebugLog(NSStringFromCGRect(self.frame));
- // self.imgScroll = [[CycleScrollView alloc] initWithFrame:self.frame animationDuration:5];
- // self.imgScroll.autoresizingMask = UIViewAutoresizingFlexibleHeight |UIViewAutoresizingFlexibleWidth|UIViewAutoresizingFlexibleLeftMargin|UIViewAutoresizingFlexibleRightMargin|UIViewAutoresizingFlexibleTopMargin|UIViewAutoresizingFlexibleBottomMargin;
- //
- // [self.contentView addSubview:self.imgScroll];
- }
- - (void)setSelected:(BOOL)selected animated:(BOOL)animated {
- [super setSelected:selected animated:animated];
- // Configure the view for the selected state
- }
- @end
|