12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- #import <UIKit/UIKit.h>
- @interface NCSharesCell : 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 (strong, nonatomic) IBOutletCollection(NSLayoutConstraint) NSArray *constraints;
- @property (nonatomic, assign) CGFloat lastContentOffset;
- @property (nonatomic, strong) NSIndexPath *indexPath;
- @end
|