1234567891011121314151617181920212223242526272829303132333435363738 |
- #import <UIKit/UIKit.h>
- @interface CCCellShareExt : UITableViewCell
- @property(nonatomic, weak) IBOutlet UIImageView *fileImageView;
- @property(nonatomic, weak) IBOutlet UITextField *fileName;
- @property(nonatomic, weak) IBOutlet UILabel *info;
- @property (nonatomic, assign) CGFloat lastContentOffset;
- @property (nonatomic, strong) NSIndexPath *indexPath;
- @end
|