YBCitySelCell.h 386 B

123456789101112131415161718192021
  1. //
  2. // YBCitySelCell.h
  3. // YBVideo
  4. //
  5. // Created by YB007 on 2020/10/17.
  6. // Copyright © 2020 cat. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface YBCitySelCell : UITableViewCell
  11. @property (weak, nonatomic) IBOutlet UILabel *cityNameL;
  12. +(YBCitySelCell *)cellWithTab:(UITableView *)table index:(NSIndexPath *)index;
  13. @end
  14. NS_ASSUME_NONNULL_END