A.新浪获取微博API
1.读取微博API
2.“statuses/home_timeline”接口
B.在app中获取微博数据
1.在“首页”控制器发送请求,获取json数据
/** 加载微博数据 */
- (void) loadWeiboData {
// 创建AFNetworking的http操作中管理器
AFHTTPRequestOperationManager *manager = [AFHTTPRequestOperationManager manager]; // 设置参数
NSMutableDictionary *param = [NSMutableDictionary dictionary];
param[@"access_token"] = [HVWAccountInfoTool accountInfo].access_token; // 发送请求
[manager GET:@"https://api.weibo.com/2/statuses/home_timeline.json" parameters:param success:^(AFHTTPRequestOperation *operation, NSDictionary *responseObject) {
HVWLog(@"获取微博数据成功-------%@", responseObject);
} failure:^(AFHTTPRequestOperation *operation, NSError *error) {
HVWLog(@"获取微博数据失败------%@", error);
}];
}
Output:
获取微博数据成功-------{
statuses = [
{
rid = 0_0_2669621413509583897,
visible = {
type = 0,
list_id = 0
},
original_pic = http://ww1.sinaimg.cn/large/c3ad47bejw1eoygflrel2g201w034q34.gif,
mid = 3806890389487492,
source = <a href="http://app.weibo.com/t/feed/3j6BDx" rel="nofollow">孔明社交管理</a>,
truncated = 0,
reposts_count = 2,
bmiddle_pic = http://ww1.sinaimg.cn/bmiddle/c3ad47bejw1eoygflrel2g201w034q34.gif,
darwin_tags = [
],
statuses = [
{
rid = 0_0_2669621413509583897,
visible = {
type = 0,
list_id = 0
},
original_pic = http://ww1.sinaimg.cn/large/c3ad47bejw1eoygflrel2g201w034q34.gif,
mid = 3806890389487492,
source = <a href="http://app.weibo.com/t/feed/3j6BDx" rel="nofollow">孔明社交管理</a>,
truncated = 0,
reposts_count = 2,
bmiddle_pic = http://ww1.sinaimg.cn/bmiddle/c3ad47bejw1eoygflrel2g201w034q34.gif,
darwin_tags = [
],
....
2.封装“用户”、“微博”类,用来装载每条微博信息
(1)用户类(包括登陆用户和关注的人)
暂时简单封装几个属性,以后再扩展
//
// HVWUser.h
// HVWWeibo
//
// Created by hellovoidworld on 15/2/5.
// Copyright (c) 2015年 hellovoidworld. All rights reserved.
// #import <Foundation/Foundation.h> @interface HVWUser : NSObject /** 友好显示名称 */
@property(nonatomic, copy) NSString *name; /** 用户头像地址(中图),50×50像素 */
@property(nonatomic, copy) NSString *profile_image_url; +(instancetype) userWithDict:(NSDictionary *) dict; @end
//
// HVWUser.m
// HVWWeibo
//
// Created by hellovoidworld on 15/2/5.
// Copyright (c) 2015年 hellovoidworld. All rights reserved.
// #import "HVWUser.h" @implementation HVWUser +(instancetype) userWithDict:(NSDictionary *) dict {
HVWUser *user = [[self alloc] init]; user.name = dict[@"name"];
user.profile_image_url = dict[@"profile_image_url"]; return user;
} @end
“微博”类
//
// HVWStatus.h
// HVWWeibo
//
// Created by hellovoidworld on 15/2/5.
// Copyright (c) 2015年 hellovoidworld. All rights reserved.
// #import <Foundation/Foundation.h>
#import "HVWUser.h" @interface HVWStatus : NSObject /** 微博信息内容 */
@property(nonatomic, copy) NSString *text; /** 微博作者的用户信息字段 详细 */
@property(nonatomic, strong) HVWUser *user; /** 微博配图地址数组,里面装载的时HVWPic模型 */
@property(nonatomic, strong) NSArray *pic_urls; + (instancetype) statusWithDict:(NSDictionary *) dict; @end
//
// HVWStatus.m
// HVWWeibo
//
// Created by hellovoidworld on 15/2/5.
// Copyright (c) 2015年 hellovoidworld. All rights reserved.
// #import "HVWStatus.h"
#import "HVWUser.h" @implementation HVWStatus + (instancetype) statusWithDict:(NSDictionary *) dict {
HVWStatus *status = [[HVWStatus alloc] init]; status.text = dict[@"text"];
status.user = [HVWUser userWithDict:dict[@"user"]]; return status;
} @end
3.在“首页”中显示简单的微博信息
使用SDWebImage加载网络图片
// HVWHomeViewController.m
/** 加载微博数据 */
- (void) loadWeiboData {
// 创建AFNetworking的http操作中管理器
AFHTTPRequestOperationManager *manager = [AFHTTPRequestOperationManager manager]; // 设置参数
NSMutableDictionary *param = [NSMutableDictionary dictionary];
param[@"access_token"] = [HVWAccountInfoTool accountInfo].access_token; // 发送请求
[manager GET:@"https://api.weibo.com/2/statuses/home_timeline.json" parameters:param success:^(AFHTTPRequestOperation *operation, NSDictionary *responseObject) {
// HVWLog(@"获取微博数据成功-------%@", responseObject); // 保存数据到内存
NSArray *dataArray = responseObject[@"statuses"]; for (NSDictionary *dict in dataArray) {
HVWStatus *status = [HVWStatus statusWithDict:dict];
[self.statuses addObject:status];
} // 刷新数据
[self.tableView reloadData]; } failure:^(AFHTTPRequestOperation *operation, NSError *error) {
HVWLog(@"获取微博数据失败------%@", error);
}];
} - (UITableViewCell *) tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { static NSString *ID = @"HomeCell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:ID];
if (nil == cell) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:ID];
} HVWStatus *status = self.statuses[indexPath.row];
HVWUser *user = status.user; // 加载内容
cell.textLabel.text = status.text;
// 作者
cell.detailTextLabel.text = user.name;
// 作者头像
NSString *imageUrlStr = user.profile_image_url;
[cell.imageView setImageWithURL:[NSURL URLWithString:imageUrlStr] placeholderImage:[UIImage imageWithNamed:@"avatar_default_small"]]; return cell;
}
B.使用第三方框架转换json字典数据到模型
因为返回的json字典数据量大层多,自己编写的代码运行效率可能比较低下,这里使用李明杰老师的MJExtension框架来进行转换
1.使用此框架,只需要相应的类和成员属性,不用自己编写初始化方法
//
// HVWUser.h
// HVWWeibo
//
// Created by hellovoidworld on 15/2/5.
// Copyright (c) 2015年 hellovoidworld. All rights reserved.
// #import <Foundation/Foundation.h> @interface HVWUser : NSObject /** 友好显示名称 */
@property(nonatomic, copy) NSString *name; /** 用户头像地址(中图),50×50像素 */
@property(nonatomic, copy) NSString *profile_image_url; @end
//
// HVWStatus.h
// HVWWeibo
//
// Created by hellovoidworld on 15/2/5.
// Copyright (c) 2015年 hellovoidworld. All rights reserved.
// #import <Foundation/Foundation.h>
#import "HVWUser.h" @interface HVWStatus : NSObject /** 微博信息内容 */
@property(nonatomic, copy) NSString *text; /** 微博作者的用户信息字段 详细 */
@property(nonatomic, strong) HVWUser *user; /** 微博配图地址数组,里面装载的时HVWPic模型 */
@property(nonatomic, strong) NSArray *pic_urls; @end
// HVWHomeViewController.m
/** 加载微博数据 */
- (void) loadWeiboData {
// 创建AFNetworking的http操作中管理器
AFHTTPRequestOperationManager *manager = [AFHTTPRequestOperationManager manager]; // 设置参数
NSMutableDictionary *param = [NSMutableDictionary dictionary];
param[@"access_token"] = [HVWAccountInfoTool accountInfo].access_token; // 发送请求
[manager GET:@"https://api.weibo.com/2/statuses/home_timeline.json" parameters:param success:^(AFHTTPRequestOperation *operation, NSDictionary *responseObject) {
// HVWLog(@"获取微博数据成功-------%@", responseObject); // 保存数据到内存
NSArray *dataArray = responseObject[@"statuses"]; // 使用MJExtension直接进行字典-模型转换
self.statuses = [HVWStatus objectArrayWithKeyValuesArray:dataArray]; // 刷新数据
[self.tableView reloadData]; } failure:^(AFHTTPRequestOperation *operation, NSError *error) {
HVWLog(@"获取微博数据失败------%@", error);
}];
}
运行成功!
2.指定数组元素包装类,可以在代码中指定用什么类来包装一个数组中的数据
例如,返回的数据中,有"pic_urls"的数组,里面存放的是所有的微博配图
没有配置包装类的时候,返回的就是一个字典,不会被自动封装
创建一个"配图”类
//
// HVWPic.h
// HVWWeibo
//
// Created by hellovoidworld on 15/2/5.
// Copyright (c) 2015年 hellovoidworld. All rights reserved.
// #import <Foundation/Foundation.h> @interface HVWPic : NSObject /** 缩略图片地址,没有时不返回此字段 */
@property(nonatomic, copy) NSString *thumbnail_pic; @end
“微博”类中已经有了对这个数组的映射,但是不会自动把里面的数据自动转换成HVWPic
所以,需要实现一个方法来指定数组子元素的包装类:
//
// HVWStatus.m
// HVWWeibo
//
// Created by hellovoidworld on 15/2/5.
// Copyright (c) 2015年 hellovoidworld. All rights reserved.
// #import "HVWStatus.h"
#import "HVWPic.h" // 注意引入框架
#import "MJExtension.h" @implementation HVWStatus - (NSDictionary *)objectClassInArray {
// 返回一个字典,创建数组子元素和包装类的映射关系
return @{@"pic_urls": [HVWPic class]};
} @end
运行,确认status内的pic_urls数组的元素类型是HVWPic: