| 12345678910111213141516171819 |
- //
- // YBCitySelVC.h
- // YBVideo
- //
- // Created by YB007 on 2020/10/17.
- // Copyright © 2020 cat. All rights reserved.
- //
- #import "YBBaseViewController.h"
- typedef void (^CitySelBlock)(NSString *cityName);
- @interface YBCitySelVC : YBBaseViewController
- @property(nonatomic,copy)CitySelBlock citySelEvent;
- @end
|