| 1234567891011121314151617181920212223242526 |
- //
- // YYCell.h
- // 图片轮播(无限循环)
- //
- // Created by yixiang on 14/12/12.
- // Copyright (c) 2014年 yixiang. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "UIImageView+AsyncDownload.h"
- #import "XHImageViewer.h"
- #import "InvoiceStyleDelegate.h"
- @interface PrintCell : UICollectionViewCell<UIScrollViewDelegate>
- @property (strong , nonatomic) UILabel *label;
- @property (strong , nonatomic) UIImageView *imgView;
- @property(nonatomic,assign) NSInteger cellIndex;
- @property(weak,nonatomic) id<InvoiceStyleDelegate> 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
|