日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 >

处理JSON格式的数据

發布時間:2025/7/25 52 豆豆
生活随笔 收集整理的這篇文章主要介紹了 处理JSON格式的数据 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

  JSON格式的數據是最常用的數據格式,處理方法的選擇就顯得比較重要了。我常用的一種是用對象來接收,然后保存在數組中,需要時直接從數組中取值。下面列出一個小例子。

  1、在.h文件中:

#import <Foundation/Foundation.h>

?

@interface DailyWeathers : NSObject

@property(nonatomic,strong) NSString *date;

@property(nonatomic,strong) NSString *maxtempF;

@property(nonatomic,strong) NSString *mintempF;

@property(nonatomic,strong) NSURL *weatherIconUrl;

?

+(id)weatherWithJSON:(NSDictionary*)json;

?

@end

?

  2、在.m文件中:

#import "DailyWeathers.h"

?

@implementation DailyWeathers

?

+(id)weatherWithJSON:(NSDictionary *)json{

? ? return [[self alloc] initWithJSON:json];

}

?

-(id)initWithJSON:(NSDictionary*)json{

? ? self = [super init];

? ? if (self) {

? ? ? ? self.date = json[@"date"];

? ? ? ? self.maxtempF = json[@"maxtempF"];

? ? ? ? self.mintempF = json[@"mintempF"];

? ? ? ? self.weatherIconUrl = [NSURL URLWithString:json[@"hourly"][3][@"weatherIconUrl"][0][@"value"]];

? ? }

? ? return self;

}

?

@end

?

?

  3、在網絡請求數據的地方,直接調用下面的方法:

-(NSArray*)dailyWeathersWithKeyFromJSON:(id)json{

? ? NSMutableArray *result = [NSMutableArray new];

? ? NSArray *weathers = json[@"data"][@"weather"];

? ? for (NSDictionary *weather in weathers) {

? ? ? ? DailyWeathers *dailyWeather = [DailyWeathers weatherWithJSON:weather];

? ? ? ? [result addObject:dailyWeather];

? ? }

? ? return [result copy];

}

?

??

轉載于:https://www.cnblogs.com/yyt-hehe-yyt/p/4717211.html

總結

以上是生活随笔為你收集整理的处理JSON格式的数据的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。