PrintCell.h 903 B

1234567891011121314151617181920212223242526
  1. //
  2. // YYCell.h
  3. // 图片轮播(无限循环)
  4. //
  5. // Created by yixiang on 14/12/12.
  6. // Copyright (c) 2014年 yixiang. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "UIImageView+AsyncDownload.h"
  10. #import "XHImageViewer.h"
  11. #import "InvoiceStyleDelegate.h"
  12. @interface PrintCell : UICollectionViewCell<UIScrollViewDelegate>
  13. @property (strong , nonatomic) UILabel *label;
  14. @property (strong , nonatomic) UIImageView *imgView;
  15. @property(nonatomic,assign) NSInteger cellIndex;
  16. @property(weak,nonatomic) id<InvoiceStyleDelegate> delegate;
  17. @property(nonatomic,strong) UIScrollView *scrollview;
  18. @property(strong) UIButton *btnCheck;//checkbox按钮
  19. @property (strong, nonatomic) UIScrollView *scrollView;
  20. @property(nonatomic,assign) Boolean clickFlag;
  21. @property (strong, nonatomic) UIImageView *sImgView;
  22. - (void) setCheckBackground: (BOOL) checked;
  23. -(void)setPageNumber:(NSString*)page;
  24. @end