温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

ios项目:天气预报

发布时间:2020-07-19 21:58:21 来源:网络 阅读:480 作者:中游学院 栏目:移动开发

ios项目:天气预报

ios项目:天气预报

本项目基于 《使用storyboards建立 Navigation Controller and Table View》 http://uliweb.cpython.org/tutorial/view_chapter/424

创建, 代码中使用了 静态的 tableviewcell

增加了 textview,url,json数据解析

部分代码片段:

1.//
2.//  cityViewController.h
3.//  weather1
4.//
5.//  Created by HeJiasheng on 13-11-12.
6.//  Copyright (c) 2013年 HeJiasheng. All rights reserved.
7.//
8.
9.#import <UIKit/UIKit.h>
10.
11.@interface cityViewController : UIViewController
12.
13.@property (strong, nonatomic) IBOutlet UITextView *text1;
14.@property (strong, nonatomic) IBOutlet NSString *textcontent;
15.@end
1.- (void)viewDidLoad
2.{
3.    [super viewDidLoad];
4.    self.text1.text= textcontent;
5.  // Do any additional setup after loading the view.
6.}
1.//
2.//  ViewController.h
3.//  weather1
4.//
5.//  Created by HeJiasheng on 13-11-12.
6.//  Copyright (c) 2013年 HeJiasheng. All rights reserved.
7.//
8.
9.#import <UIKit/UIKit.h>
10.
11.@interface ViewController : UITableViewController
12.
13.@end

ViewController.m 增加

1.- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
2.    if ([segue.identifier isEqualToString:@"cityinfo"]) {
3.        NSIndexPath *indexPath = [self.tableView indexPathForSelectedRow];
4.        UITableViewCell *cell = [self.tableView cellForRowAtIndexPath:indexPath];
5.      
6.        if ([[[cell textLabel] text] isEqualToString: @"北京"]) {
7.            NSError *error;
8.            NSURL *URL = [NSURL URLWithString:@"http://m.weather.com.cn/data/101010100.html"];
9.            NSData *data = [NSData dataWithContentsOfURL:URL];
10.            NSDictionary *Dic = [NSJSONSerialization JSONObjectWithData:data
11.                                                            options:NSJSONReadingMutableContainers
12.                                                            error:&error];
13.         
14.            NSDictionary *Info = [Dic objectForKey:@"weatherinfo"];
15.      
16.        cityViewController *destViewController = segue.destinationViewController;
17.          
18.            destViewController.textcontent = [NSString stringWithFormat: @"今天是 %@  %@  %@  的天气状况是:%@  %@ ",[Info objectForKey:@"date_y"],[Info objectForKey:@"week"],[Info objectForKey:@"city"], [Info objectForKey:@"weather1"], [Info objectForKey:@"temp1"]];
19.
20.        }
21.
22.    }
23.}


向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI