| 123456789101112131415161718192021222324252627282930 |
- //
- // CityListViewController.m
- // ChinaCityList
- //
- // Created by zjq on 15/10/27.
- // Copyright © 2015年 zhengjq. All rights reserved.
- //
- #import "NewBasicViewController.h"
- @protocol CityListViewDelegate <NSObject>
- - (void)didClickedWithCityName:(NSString*)cityName;
- @end
- @interface CityListViewController : NewBasicViewController<UITableViewDataSource,UITableViewDelegate>
- @property (strong, nonatomic) id<CityListViewDelegate>delegate;
- @property (strong, nonatomic) NSMutableArray *arrayLocatingCity;//定位城市数据
- @property (strong, nonatomic) NSMutableArray *arrayHotCity;//热门城市数据
- @property (strong, nonatomic) NSMutableArray *arrayHistoricalCity;//常用城市数据
- @property(nonatomic,strong)UITableView *tableView;
- @end
|