酷店

UITableViewCell+Extension.h 405B

123456789101112131415161718192021222324
  1. //
  2. // UITableViewCell+Extension.h
  3. // CreditAssistant
  4. //
  5. // Created by admin on 2019/3/20.
  6. // Copyright © 2019 admin. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface UITableViewCell (Extension)
  11. - (void)setContentView;
  12. - (void)configWithViewModel:(id)viewModel indexpath:(NSIndexPath *)indexPath;
  13. - (void)setContentViewConstraints;
  14. @end
  15. NS_ASSUME_NONNULL_END