123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- #import <UIKit/UIKit.h>
- #import "MGSwipeTableCell.h"
- @interface CCCellMain : MGSwipeTableCell
- @property(nonatomic, weak) IBOutlet UIImageView *file;
- @property(nonatomic, weak) IBOutlet UIImageView *status;
- @property(nonatomic, weak) IBOutlet UIImageView *favorite;
- @property(nonatomic, weak) IBOutlet UIImageView *local;
- @property(nonatomic, weak) IBOutlet UIImageView *shared;
- @property(nonatomic, weak) IBOutlet UILabel *labelTitle;
- @property(nonatomic, weak) IBOutlet UILabel *labelInfoFile;
- @property(nonatomic, weak) IBOutlet UIProgressView *progressView;
- @property(nonatomic, weak) IBOutlet UIButton *cancelTaskButton;
- @property(nonatomic, weak) IBOutlet UIButton *reloadTaskButton;
- @property(nonatomic, weak) IBOutlet UIButton *stopTaskButton;
- @property(nonatomic, strong) UIImage *imageTitleSegue;
- @property (nonatomic, assign) CGFloat lastContentOffset;
- @property (nonatomic, strong) NSIndexPath *indexPath;
- @end
|