代码语言
.
CSharp
.
JS
Java
Asp.Net
C
MSSQL
PHP
Css
PLSQL
Python
Shell
EBS
ASP
Perl
ObjC
VB.Net
VBS
MYSQL
GO
Delphi
AS
DB2
Domino
Rails
ActionScript
Scala
代码分类
文件
系统
字符串
数据库
网络相关
图形/GUI
多媒体
算法
游戏
Jquery
Extjs
Android
HTML5
菜单
网页交互
WinForm
控件
企业应用
安全与加密
脚本/批处理
开放平台
其它
【
ObjC
】
天气查询
作者:
英男
/ 发布于
2015/4/2
/
1367
iOS7 以上 ,最佳平台iphone6
按下开始查询后 显示第一个城区第一天的天气
若出现资源暂时不存在的情况会显示302错误,按下按钮刷新界面
@interface ViewController (){ NSMutableArray *arrayData; //保存城市id NSMutableArray *arrayCityName; //pick中的城市名字 UIPickerView *picker; //下方滚动视图 } @end @implementation ViewController - (void)viewDidLoad { [super viewDidLoad]; // Do any additional setup after loading the view, typically from a nib. _wu.hidden = YES; //city arrayData = [[NSMutableArray alloc] init]; arrayCityName = [[NSMutableArray alloc] init]; NSString *path = [[NSBundle mainBundle] pathForResource:@"cityCode" ofType:@"plist"]; NSDictionary *dictionary = [[NSDictionary alloc] initWithContentsOfFile:path]; const NSArray *array = [dictionary allKeys]; for (int i = 0;i < array.count; i++) { NSString *idd = [dictionary objectForKey:[array objectAtIndex:i]]; [arrayData addObject:idd]; [arrayCityName addObject:[array objectAtIndex:i]]; } //pick picker = [[UIPickerView alloc] initWithFrame:CGRectMake(0, 400, self.view.bounds.size.width, self.view.bounds.size.height - 400)]; picker.delegate = self; picker.dataSource = self; [self.view addSubview:picker]; picker.showsSelectionIndicator = YES; //request blockJson = ^(NSInteger day,NSString *path){ NSURL *url = [NSURL URLWithString:[NSString stringWithFormat:@"http://m.weather.com.cn/atad/%@.html",path]]; NSURLRequest *request = [NSURLRequest requestWithURL:url cachePolicy:NSURLRequestReturnCacheDataElseLoad timeoutInterval:30]; NSURLSession *session = [NSURLSession sharedSession]; NSURLSessionDataTask *task = [session dataTaskWithRequest:request completionHandler:^(NSData *data, NSURLResponse *response, NSError *error) { NSLog(@"%@",response); if (data == nil) { NSLog(@"error: %@",error); }else{ NSError *jsonError; NSDictionary *jsonDiction = [NSJSONSerialization JSONObjectWithData:data options:NSJSONReadingMutableContainers error:&jsonError]; if (jsonDiction == nil) { NSLog(@"error %@",jsonError); _wu.hidden = NO; }else { //回到主线程更改UI NSDictionary *dictionary = [jsonDiction objectForKey:@"weatherinfo"]; dispatch_async(dispatch_get_main_queue(), ^{ _city.text = [dictionary objectForKey:@"city"]; _wenDu.text = [dictionary objectForKey:[NSString stringWithFormat:@"temp%ld",(day + 1)]]; _fengXiang.text = [dictionary objectForKey:[NSString stringWithFormat:@"fx%ld",(day + 1)]]; _fengJi.text = [dictionary objectForKey:[NSString stringWithFormat:@"fl%ld",(day + 1)]]; _tianQi.text = [dictionary objectForKey:[NSString stringWithFormat:@"weather%ld",(day + 1)]]; _shiJian.text = [dictionary objectForKey:@"date_y"]; _jianYi.text = [dictionary objectForKey:@"index_d"]; }); } } }]; [task resume]; }; } //指定列数 - (NSInteger)numberOfComponentsInPickerView:(UIPickerView *)pickerView { return 2; } //2.指定每列中的行数 - (NSInteger)pickerView:(UIPickerView *)pickerView numberOfRowsInComponent:(NSInteger)component { if (component == 1) { return arrayData.count; }else{ return 6; } } //自定义pick行视图 - (UIView *)pickerView:(UIPickerView *)pickerView viewForRow:(NSInteger)row forComponent:(NSInteger)component reusingView:(UIView *)view { if(view == nil){ UILabel *lable = [[UILabel alloc] init]; lable.backgroundColor = [UIColor orangeColor]; if (component == 1) { lable.text = [arrayCityName objectAtIndex:row]; }else{ lable.text = [NSString stringWithFormat:@"今后第: %ld 天",row]; } lable.textAlignment = NSTextAlignmentCenter; view = (UIView *)lable; } return view; } //选中行,调用的协议方法 - (void)pickerView:(UIPickerView *)pickerView didSelectRow:(NSInteger)row inComponent:(NSInteger)component { NSString *path = [arrayData objectAtIndex:[pickerView selectedRowInComponent:1]]; NSInteger day = [pickerView selectedRowInComponent:0]; NSLog(@"---------------zuo %ld hang %ld",[pickerView selectedRowInComponent:0],[pickerView selectedRowInComponent:1]); blockJson(day,path); _wu.hidden = YES; } - (void)didReceiveMemoryWarning { [super didReceiveMemoryWarning]; // Dispose of any resources that can be recreated. } - (IBAction)pinLa:(id)sender { [picker reloadAllComponents]; _wu.hidden = YES; } //点击查询按钮显示第一个城市信息 - (IBAction)chaXun:(id)sender { NSString *path = [arrayData objectAtIndex:0]; blockJson(0,path); //UIPickerView显示指定行 [picker selectRow:0 inComponent:0 animated:YES]; [picker selectRow:0 inComponent:1 animated:YES]; _wu.hidden = YES; } @end
试试其它关键字
天气查询
同语言下
.
根据生日计算星座
.
精简的实现一个内存池
.
iOS索引搜索核心代码
.
iOS 搜索框
.
文件操作
.
UIWebView 加载本地网页
.
取消导航条对视图的影响
.
利用终端显示 隐藏文件
.
更改导航条背景颜色
.
iOS 字体斜体
可能有用的
.
实现测量程序运行时间及cpu使用时间
.
C#实现的html内容截取
.
List 切割成几份 工具类
.
SQL查询 多列合并成一行用逗号隔开
.
一行一行读取txt的内容
.
C#动态修改文件夹名称(FSO实现,不移动文件)
.
c# 移动文件或文件夹
.
c#图片添加水印
.
Java PDF转换成图片并输出给前台展示
.
网站后台修改图片尺寸代码
英男
贡献的其它代码
(
5
)
.
生成前后N天日期
.
几个数的最小公倍数
.
天气查询
.
通过文件存储来实现缓存
.
百度地图操作label 鼠标滑动事件显示、隐藏
Copyright © 2004 - 2024 dezai.cn. All Rights Reserved
站长博客
粤ICP备13059550号-3