123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- #import <UIKit/UIKit.h>
- @interface CCControlCenterActivityCell : UITableViewCell
- @property(nonatomic, weak) IBOutlet UIImageView *fileImageView;
- @property(nonatomic, weak) IBOutlet UIImageView *statusImageView;
- @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, assign) CGFloat lastContentOffset;
- @property (nonatomic, strong) NSIndexPath *indexPath;
- @end
|