1234567891011121314151617181920212223242526272829303132333435363738394041 |
- #import <UIKit/UIKit.h>
- @interface CCCellOffline : UITableViewCell
- @property(nonatomic, weak) IBOutlet UIImageView *fileImageView;
- @property(nonatomic, weak) IBOutlet UIImageView *statusImageView;
- @property(nonatomic, weak) IBOutlet UIImageView *offlineImageView;
- @property(nonatomic, weak) IBOutlet UILabel *labelTitle;
- @property(nonatomic, weak) IBOutlet UILabel *labelInfoFile;
- @property (nonatomic, assign) CGFloat lastContentOffset;
- @property (nonatomic, strong) NSIndexPath *indexPath;
- @end
|