searchVC.h 408 B

123456789101112131415161718192021
  1. //
  2. // searchVC.h
  3. // YBVideo
  4. //
  5. // Created by 王敏欣 on 2017/2/17.
  6. // Copyright © 2017年 cat. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. typedef NS_ENUM(NSInteger,SearchFrom) {
  10. SearchFrom_Home, //首页
  11. SearchFrom_City, //同城
  12. };
  13. @interface searchVC : YBBaseViewController
  14. @property(nonatomic,assign)SearchFrom searchFrom;
  15. @property(nonatomic,strong)NSString *curCity;
  16. @end