| 123456789101112131415161718192021 |
- //
- // searchVC.h
- // YBVideo
- //
- // Created by 王敏欣 on 2017/2/17.
- // Copyright © 2017年 cat. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- typedef NS_ENUM(NSInteger,SearchFrom) {
- SearchFrom_Home, //首页
- SearchFrom_City, //同城
- };
- @interface searchVC : YBBaseViewController
- @property(nonatomic,assign)SearchFrom searchFrom;
- @property(nonatomic,strong)NSString *curCity;
- @end
|