1234567891011121314151617181920212223242526272829303132333435363738394041 |
- #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 UIImageView *more;
- @property(nonatomic, weak) IBOutlet UILabel *labelTitle;
- @property(nonatomic, weak) IBOutlet UILabel *labelInfoFile;
- @property(nonatomic, strong) UIImage *imageTitleSegue;
- @end
|