码迷,mamicode.com
首页 > Web开发 > 详细

解读AFNetworking中Demo的MVC

时间:2014-11-11 12:43:37      阅读:246      评论:0      收藏:0      [点我收藏+]

标签:iswifting   iswifting社区   iosdevtip   mvc   

Demo的下载地址:AFNetworking下载

打开Demo:

bubuko.com,布布扣

现实的功能,就是一个简易的微博timeline界面:

bubuko.com,布布扣

项目预览:

bubuko.com,布布扣

用到的第三方:AFNetworking 和 UIKit+AFNetworking

功能:用户图像(先显示默认图,在加载图片),用户发的内容,下拉刷新。

C层:

发一个请求:(告诉M 要做什么)

- (void)reload:(__unusedid)sender {
    self.navigationItem.rightBarButtonItem.enabled = NO;

    NSURLSessionTask *task = [PostglobalTimelinePostsWithBlock:^(NSArray *posts, NSError *error) {
        if (!error) {

             self.posts = posts;
            [self.tableViewreloadData];
        }
    }];

    [UIAlertViewshowAlertViewForTaskWithErrorOnCompletion:task delegate:nil];
    [self.refreshControlsetRefreshingWithStateOfTask:task];
}

M 做完之手,产生多个post对象,放到self.post数组里面。C拿到M给的post对象,去更新V

cell.post = [self.postsobjectAtIndex:(NSUInteger)indexPath.row];

M层:

M 收到C的请求:去请求数据,解析,转换成post对象,然后通过block返回给C

+ (NSURLSessionDataTask *)globalTimelinePostsWithBlock:(void (^)(NSArray *posts, NSError *error))block {
    return [[AFAppDotNetAPIClientsharedClient] GET:@"stream/0/posts/stream/global"parameters:nilsuccess:^(NSURLSessionDataTask * __unused task, id JSON) {
        NSArray *postsFromResponse = [JSON valueForKeyPath:@"data"];
        NSMutableArray *mutablePosts = [NSMutableArrayarrayWithCapacity:[postsFromResponse count]];
        for (NSDictionary *attributes in postsFromResponse) {
            Post *post = [[Postalloc] initWithAttributes:attributes];
            [mutablePosts addObject:post];
        }

        if (block) {
            block([NSArrayarrayWithArray:mutablePosts], nil);
        }
    } failure:^(NSURLSessionDataTask *__unused task, NSError *error) {
        if (block) {
            block([NSArrayarray], error);
        }
    }];
}

V层:

V:拿到C给的数据,来展示出来,这一步就是更新UI

- (void)setPost:(Post *)post {
    _post = post;

    self.textLabel.text = _post.user.username;
    self.detailTextLabel.text = _post.text;
    [self.imageViewsetImageWithURL:_post.user.avatarImageURLplaceholderImage:[UIImageimageNamed:@"profile-image-placeholder"]];

    [selfsetNeedsLayout];
}

其中 :

    [self.imageViewsetImageWithURL:_post.user.avatarImageURLplaceholderImage:[UIImageimageNamed:@"profile-image-placeholder"]];

这句代码是对UIImageView的扩展,在UIKit+AFNetworking可以直接使用,非常方便。

我的微信公众号 iOS开发 :

iOSDevTip

解读AFNetworking中Demo的MVC

标签:iswifting   iswifting社区   iosdevtip   mvc   

原文地址:http://blog.csdn.net/iosdevtip/article/details/41009117

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!