// // YYCell.h // 图片轮播(无限循环) // // Created by yixiang on 14/12/12. // Copyright (c) 2014年 yixiang. All rights reserved. // #import #import "UIImageView+AsyncDownload.h" #import "XHImageViewer.h" #import "InvoiceStyleDelegate.h" @interface PrintCell : UICollectionViewCell @property (strong , nonatomic) UILabel *label; @property (strong , nonatomic) UIImageView *imgView; @property(nonatomic,assign) NSInteger cellIndex; @property(weak,nonatomic) id delegate; @property(nonatomic,strong) UIScrollView *scrollview; @property(strong) UIButton *btnCheck;//checkbox按钮 @property (strong, nonatomic) UIScrollView *scrollView; @property(nonatomic,assign) Boolean clickFlag; @property (strong, nonatomic) UIImageView *sImgView; - (void) setCheckBackground: (BOOL) checked; -(void)setPageNumber:(NSString*)page; @end