JSON解析NSJSONSerialization

JSON格式化在線查看工具:http://tool.oschina.net/codeformat/json

JSON-->OC object :

NSString *json = @"{\"name\" : \"solozyx\"}";
NSObject *jsonObj = [NSJSONSerialization JSONObjectWithData:[json dataUsingEncoding:NSUTF8StringEncoding]
                                                    options:NSJSONReadingAllowFragments
                                                      error:nil];
NSLog(@"%@",jsonObj);
NSLog(@"%@",[jsonObj valueForKey:@"name"]);

//2016-08-06 19:13:57.838 JSON解析[37298:544290] {
//    name = solozyx;
//}
//2016-08-06 19:13:57.839 JSON解析[37298:544290] solozyx
NSJSONReadingMutableContainers
NSJSONReadingMutableLeaves
NSJSONReadingAllowFragments
                                

請求接口:

http://www.example.com:8080/videos

假如服務(wù)器返回如下json格式:

{"videos":[{"id":1,"image":"resources/images/minion_01.png","length":10,"name":"小黃人 第01部","url":"resources/videos/minion_01.mp4"},{"id":2,"image":"resources/images/minion_02.png","length":12,"name":"小黃人 第02部","url":"resources/videos/minion_02.mp4"},{"id":3,"image":"resources/images/minion_03.png","length":14,"name":"小黃人 第03部","url":"resources/videos/minion_03.mp4"},{"id":4,"image":"resources/images/minion_04.png","length":16,"name":"小黃人 第04部","url":"resources/videos/minion_04.mp4"},{"id":5,"image":"resources/images/minion_05.png","length":18,"name":"小黃人 第05部","url":"resources/videos/minion_05.mp4"},{"id":6,"image":"resources/images/minion_06.png","length":20,"name":"小黃人 第06部","url":"resources/videos/minion_06.mp4"},{"id":7,"image":"resources/images/minion_07.png","length":22,"name":"小黃人 第07部","url":"resources/videos/minion_07.mp4"},{"id":8,"image":"resources/images/minion_08.png","length":24,"name":"小黃人 第08部","url":"resources/videos/minion_08.mp4"},{"id":9,"image":"resources/images/minion_09.png","length":26,"name":"小黃人 第09部","url":"resources/videos/minion_09.mp4"},{"id":10,"image":"resources/images/minion_10.png","length":28,"name":"小黃人 第10部","url":"resources/videos/minion_10.mp4"},{"id":11,"image":"resources/images/minion_11.png","length":30,"name":"小黃人 第11部","url":"resources/videos/minion_11.mp4"},{"id":12,"image":"resources/images/minion_12.png","length":32,"name":"小黃人 第12部","url":"resources/videos/minion_12.mp4"},{"id":13,"image":"resources/images/minion_13.png","length":34,"name":"小黃人 第13部","url":"resources/videos/minion_13.mp4"},{"id":14,"image":"resources/images/minion_14.png","length":36,"name":"小黃人 第14部","url":"resources/videos/minion_14.mp4"},{"id":15,"image":"resources/images/minion_15.png","length":38,"name":"小黃人 第15部","url":"resources/videos/minion_15.mp4"},{"id":16,"image":"resources/images/minion_16.png","length":40,"name":"小黃人 第16部","url":"resources/videos/minion_16.mp4"}]}

為方便查看,手動格式化如下:

{
"videos":
    [
        {"id":1,"image":"resources/images/minion_01.png","length":10,"name":"小黃人 第01部","url":"resources/videos/minion_01.mp4"},
        {"id":2,"image":"resources/images/minion_02.png","length":12,"name":"小黃人 第02部","url":"resources/videos/minion_02.mp4"},
        {"id":3,"image":"resources/images/minion_03.png","length":14,"name":"小黃人 第03部","url":"resources/videos/minion_03.mp4"},
        {"id":4,"image":"resources/images/minion_04.png","length":16,"name":"小黃人 第04部","url":"resources/videos/minion_04.mp4"},
        {"id":5,"image":"resources/images/minion_05.png","length":18,"name":"小黃人 第05部","url":"resources/videos/minion_05.mp4"},
        {"id":6,"image":"resources/images/minion_06.png","length":20,"name":"小黃人 第06部","url":"resources/videos/minion_06.mp4"},
        {"id":7,"image":"resources/images/minion_07.png","length":22,"name":"小黃人 第07部","url":"resources/videos/minion_07.mp4"},
        {"id":8,"image":"resources/images/minion_08.png","length":24,"name":"小黃人 第08部","url":"resources/videos/minion_08.mp4"},
        {"id":9,"image":"resources/images/minion_09.png","length":26,"name":"小黃人 第09部","url":"resources/videos/minion_09.mp4"},
        {"id":10,"image":"resources/images/minion_10.png","length":28,"name":"小黃人 第10部","url":"resources/videos/minion_10.mp4"},
        {"id":11,"image":"resources/images/minion_11.png","length":30,"name":"小黃人 第11部","url":"resources/videos/minion_11.mp4"},
        {"id":12,"image":"resources/images/minion_12.png","length":32,"name":"小黃人 第12部","url":"resources/videos/minion_12.mp4"},
        {"id":13,"image":"resources/images/minion_13.png","length":34,"name":"小黃人 第13部","url":"resources/videos/minion_13.mp4"},
        {"id":14,"image":"resources/images/minion_14.png","length":36,"name":"小黃人 第14部","url":"resources/videos/minion_14.mp4"},
        {"id":15,"image":"resources/images/minion_15.png","length":38,"name":"小黃人 第15部","url":"resources/videos/minion_15.mp4"},
        {"id":16,"image":"resources/images/minion_16.png","length":40,"name":"小黃人 第16部","url":"resources/videos/minion_16.mp4"}
    ]
}

模仿請求該接口 獲取json字典 后并解析數(shù)據(jù):

@property (nonatomic, strong) NSArray *videos;

- (void)loadVideos{
    // 0.請求路徑
    NSString *urlString = @"http://www.example.com:8080/videos";
    NSURL *url = [NSURL URLWithString:urlString];
    // 1.創(chuàng)建請求對象
    NSURLRequest *request = [NSURLRequest requestWithURL:url];
    // 2.發(fā)送請求
    __weak typeof(self) weakSelf = self;
    [NSURLConnection sendAsynchronousRequest:request
                                       queue:[[NSOperationQueue alloc] init]
                           completionHandler:^(NSURLResponse *response, NSData *data, NSError *connectionError) {
                               if (connectionError == nil) {
                                   // 3.服務(wù)器數(shù)據(jù)解析 JSON string --> OC dictionary obj
                                   NSDictionary *dict = [NSJSONSerialization JSONObjectWithData:data
                                                                                        options:kNilOptions
                                                                                          error:nil];
                                   [dict writeToFile:@"/Users/zhaoyingxin/Desktop/zhaoyingxin_videos.plist" atomically:YES];
                                   weakSelf.videos = dict[@"videos"]; // 獲得視頻數(shù)組
                                   // 4. 回到主線程 刷新表格UI
                                   [[NSOperationQueue mainQueue] addOperationWithBlock:^{
                                       [weakSelf.tableView reloadData];
                                   }];
                               }
                           }];
}

UITableViewDataSource 方法:

#pragma mark - UITableView 數(shù)據(jù)源方法
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView{
    return 1;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
    return self.videos.count;
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
    NSString *urlString = @"http://www.example.com:8080";
    static NSString *ID = @"video";
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:ID];
    if (cell == nil) {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:ID];
    }
    
    // 對應(yīng)使用字典數(shù)據(jù)部分
    NSDictionary *video = self.videos[indexPath.row];
    cell.textLabel.text = video[@"name"];
    cell.detailTextLabel.text = [NSString stringWithFormat:@"時(shí)長:%@", video[@"length"]];
    NSString *imageString = [urlString stringByAppendingPathComponent:video[@"image"]];
    
    [cell.imageView sd_setImageWithURL:[NSURL URLWithString:imageString]
                      placeholderImage:[UIImage imageNamed:@"placeholder"]];
    return cell;
}

可以使用蘋果系統(tǒng)控件播放視頻:

#pragma mark - UITableView 代理方法
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{
    NSDictionary *video = self.videos[indexPath.row];
    NSString *urlStr = [@"http://www.example.com:8080" stringByAppendingPathComponent:video[@"url"]];
    
    // 創(chuàng)建視頻播放器
    MPMoviePlayerViewController *vc = [[MPMoviePlayerViewController alloc] initWithContentURL:[NSURL URLWithString:urlStr]];

    // 顯示視頻
    [self presentViewController:vc animated:YES completion:nil];
}
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市戒财,隨后出現(xiàn)的幾起案子热监,更是在濱河造成了極大的恐慌,老刑警劉巖饮寞,帶你破解...
    沈念sama閱讀 211,743評論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件孝扛,死亡現(xiàn)場離奇詭異,居然都是意外死亡幽崩,警方通過查閱死者的電腦和手機(jī)苦始,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,296評論 3 385
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來慌申,“玉大人陌选,你說我怎么就攤上這事√愀龋” “怎么了咨油?”我有些...
    開封第一講書人閱讀 157,285評論 0 348
  • 文/不壞的土叔 我叫張陵,是天一觀的道長柒爵。 經(jīng)常有香客問我役电,道長,這世上最難降的妖魔是什么棉胀? 我笑而不...
    開封第一講書人閱讀 56,485評論 1 283
  • 正文 為了忘掉前任法瑟,我火速辦了婚禮,結(jié)果婚禮上唁奢,老公的妹妹穿的比我還像新娘霎挟。我一直安慰自己,他們只是感情好驮瞧,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,581評論 6 386
  • 文/花漫 我一把揭開白布氓扛。 她就那樣靜靜地躺著,像睡著了一般。 火紅的嫁衣襯著肌膚如雪采郎。 梳的紋絲不亂的頭發(fā)上千所,一...
    開封第一講書人閱讀 49,821評論 1 290
  • 那天,我揣著相機(jī)與錄音蒜埋,去河邊找鬼淫痰。 笑死,一個(gè)胖子當(dāng)著我的面吹牛整份,可吹牛的內(nèi)容都是我干的待错。 我是一名探鬼主播,決...
    沈念sama閱讀 38,960評論 3 408
  • 文/蒼蘭香墨 我猛地睜開眼烈评,長吁一口氣:“原來是場噩夢啊……” “哼火俄!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起讲冠,我...
    開封第一講書人閱讀 37,719評論 0 266
  • 序言:老撾萬榮一對情侶失蹤瓜客,失蹤者是張志新(化名)和其女友劉穎,沒想到半個(gè)月后竿开,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體谱仪,經(jīng)...
    沈念sama閱讀 44,186評論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,516評論 2 327
  • 正文 我和宋清朗相戀三年否彩,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了疯攒。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 38,650評論 1 340
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡列荔,死狀恐怖敬尺,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情肌毅,我是刑警寧澤筷转,帶...
    沈念sama閱讀 34,329評論 4 330
  • 正文 年R本政府宣布,位于F島的核電站悬而,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏锭汛。R本人自食惡果不足惜笨奠,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,936評論 3 313
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望唤殴。 院中可真熱鬧般婆,春花似錦、人聲如沸朵逝。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,757評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至啤咽,卻和暖如春晋辆,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背宇整。 一陣腳步聲響...
    開封第一講書人閱讀 31,991評論 1 266
  • 我被黑心中介騙來泰國打工瓶佳, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人鳞青。 一個(gè)月前我還...
    沈念sama閱讀 46,370評論 2 360
  • 正文 我出身青樓霸饲,卻偏偏與公主長得像,于是被迫代替她去往敵國和親臂拓。 傳聞我的和親對象是個(gè)殘疾皇子厚脉,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,527評論 2 349

推薦閱讀更多精彩內(nèi)容