123456789101112131415161718192021222324 |
- //
- // UITableViewCell+Extension.h
- // CreditAssistant
- //
- // Created by admin on 2019/3/20.
- // Copyright © 2019 admin. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface UITableViewCell (Extension)
- - (void)setContentView;
- - (void)configWithViewModel:(id)viewModel indexpath:(NSIndexPath *)indexPath;
- - (void)setContentViewConstraints;
- @end
- NS_ASSUME_NONNULL_END
|