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