12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- #import <UIKit/UIKit.h>
- #import "MGSwipeTableCell.h"
- @interface CCCellMainTransfer : 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
|