首页 > 代码库 > ios项目开发(天气预报项目):
ios项目开发(天气预报项目):
本项目基于 《使用storyboards建立 Navigation Controller and Table View》 http://uliweb.cpython.org/tutorial/view_chapter/424
创建, 代码中使用了 静态的 tableviewcell
增加了 textview,url,json数据解析
部分代码片段:
// // cityViewController.h // weather1 // // Created by HeJiasheng on 13-11-12. // Copyright (c) 2013年 HeJiasheng. All rights reserved. // #import <UIKit/UIKit.h> @interface cityViewController : UIViewController @property (strong, nonatomic) IBOutlet UITextView *text1; @property (strong, nonatomic) IBOutlet NSString *textcontent; @end
- (void)viewDidLoad { [super viewDidLoad]; self.text1.text= textcontent; // Do any additional setup after loading the view. }
// // ViewController.h // weather1 // // Created by HeJiasheng on 13-11-12. // Copyright (c) 2013年 HeJiasheng. All rights reserved. // #import <UIKit/UIKit.h> @interface ViewController : UITableViewController @end
ViewController.m 增加
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender { if ([segue.identifier isEqualToString:@"cityinfo"]) { NSIndexPath *indexPath = [self.tableView indexPathForSelectedRow]; UITableViewCell *cell = [self.tableView cellForRowAtIndexPath:indexPath]; if ([[[cell textLabel] text] isEqualToString: @"北京"]) { NSError *error; NSURL *URL = [NSURL URLWithString:@"http://m.weather.com.cn/data/101010100.html"]; NSData *data = [NSData dataWithContentsOfURL:URL]; NSDictionary *Dic = [NSJSONSerialization JSONObjectWithData:data options:NSJSONReadingMutableContainers error:&error]; NSDictionary *Info = [Dic objectForKey:@"weatherinfo"]; cityViewController *destViewController = segue.destinationViewController; destViewController.textcontent = [NSString stringWithFormat: @"今天是 %@ %@ %@ 的天气状况是:%@ %@ ",[Info objectForKey:@"date_y"],[Info objectForKey:@"week"],[Info objectForKey:@"city"], [Info objectForKey:@"weather1"], [Info objectForKey:@"temp1"]]; } } }
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。