1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- #import <UIKit/UIKit.h>
- @interface CCFavoritesCell : UITableViewCell
- @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 UILabel *labelTitle;
- @property(nonatomic, weak) IBOutlet UILabel *labelInfoFile;
- @property (strong, nonatomic) IBOutletCollection(NSLayoutConstraint) NSArray *constraints;
- @property (nonatomic, assign) CGFloat lastContentOffset;
- @property (nonatomic, strong) NSIndexPath *indexPath;
- @end
|