| 123456789101112131415161718192021 |
- //
- // YBCitySelCell.h
- // YBVideo
- //
- // Created by YB007 on 2020/10/17.
- // Copyright © 2020 cat. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface YBCitySelCell : UITableViewCell
- @property (weak, nonatomic) IBOutlet UILabel *cityNameL;
- +(YBCitySelCell *)cellWithTab:(UITableView *)table index:(NSIndexPath *)index;
- @end
- NS_ASSUME_NONNULL_END
|