AdvertisingColumn.h 671 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // AdvertisingColumn.h
  3. // CustomTabBar
  4. // Created by shikee_app05 on 14-12-30.
  5. // Copyright (c) 2014年 chan kaching. All rights reserved.
  6. //
  7. #import <UIKit/UIKit.h>
  8. @interface AdvertisingColumn : UIView<UIScrollViewDelegate>{
  9. NSTimer *_timer;
  10. }
  11. //广告栏
  12. @property (nonatomic,strong) UIScrollView *scrollView;
  13. @property (nonatomic,strong) UIPageControl *pageControl;
  14. @property (nonatomic,strong) UILabel *imageNum;
  15. @property (nonatomic,retain) NSArray *imgArray;
  16. @property (nonatomic,retain) UIViewController *supVC;
  17. @property (nonatomic) NSInteger totalNum;
  18. - (void)setImgArray:(NSArray *)imgArray;
  19. - (void)openTimer;
  20. - (void)closeTimer;
  21. @end