91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

JSON解析數據.

發布時間:2020-08-26 11:15:59 來源:網絡 閱讀:725 作者:Im劉亞芳 欄目:開發技術

這里是新建一個JSONParser類,  先新建一個方法,然后在是在方法里面進行解析,然后在根試圖中執行解析方法

MainViewController.m

#import "MainViewController.h"
#import "XMLSAXParser.h"
#import "JSONParser.h"
@interface MainViewController ()
@end
@implementation MainViewController
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
    self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
    if (self) {
        // Custom initialization
    }
    return self;
}
- (void)viewDidLoad
{
    [super viewDidLoad];
    // Do any additional setup after loading the view.
    self.view.backgroundColor = [UIColor cyanColor];
    //開始執行JSON方法
    JSONParser *json = [[JSONParser alloc] init];
    [json startJSONParser];
    [json release];
    
    
    
    
}
- (void)didReceiveMemoryWarning
{
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}
/*
#pragma mark - Navigation
// In a storyboard-based application, you will often want to do a little preparation before navigation
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender
{
    // Get the new view controller using [segue destinationViewController].
    // Pass the selected object to the new view controller.
}
*/
@end

JSONParser.h


#import <Foundation/Foundation.h>
@interface JSONParser : NSObject
//json方法
- (void)startJSONParser;
@end

JSONParser.m

#import "JSONParser.h"
#import "Student.h"
@implementation JSONParser
- (void)startJSONParser
{
    //系統提供額JSON解析方法
    
    NSString *strPath = [[NSBundle mainBundle] pathForResource:@"Student" ofType:@"txt"];
    NSData *data = [NSData dataWithContentsOfFile:strPath];
    
    //參數1:文件數據路徑信息
    //參數2:設置解析的結果
    //參數3:錯誤信息
    NSError *error = nil;
   NSArray *array = [NSJSONSerialization JSONObjectWithData:data options:NSJSONReadingMutableContainers error:&error];
    NSLog(@"%@", array);
    
    for (NSDictionary *dic in array) {
        Student *stu = [[Student alloc] init];
        stu.name = [dic objectForKey:@"name"];
        stu.sex = [dic objectForKey:@"sex"];
        stu.phone = [dic objectForKey:@"phone"];
        stu.number = [dic objectForKey:@"number"];
    }
}
@end



向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

新干县| 辽阳县| 东台市| 胶南市| 福鼎市| 枞阳县| 宁安市| 刚察县| 库车县| 钦州市| 磴口县| 喜德县| 阜南县| 资中县| 连云港市| 齐河县| 滦平县| 安化县| 贵南县| 公主岭市| 临潭县| 敦化市| 马关县| 岚皋县| 宁晋县| 车险| 泽普县| 江达县| 彭阳县| 冕宁县| 蕉岭县| 宁都县| 泰和县| 乐东| 泸州市| 长垣县| 庐江县| 昌黎县| 云南省| 榆树市| 秦安县|