摘要: https://github.com/AFNetworking/AFNetworking与asi-http-request功能类似的网络库,不过是基于NSURLConnection和NSOperation的,同样支持iOS与MacOS双平台。目前的更新比较频繁,适合新项目使用,而且使用起来也更简单。操作JSON- (IBAction)jsonTapped:(id)sender { // 1 NSString *weatherUrl = [NSString stringWithFormat:@"%@weather.php?format=json", BaseURLString 阅读全文
posted @ 2014-04-18 20:42 haotianling 阅读(216) 评论(0) 推荐(0)
摘要: 转载于:http://blog.csdn.net/lc_obj/article/details/17454825CGAffineTransform今天碰到了一个旋转放缩图片的一个demo,在看的过程中发现实现图片变化的那个方法特别简单。一共只有三句话,下面就是这个方法- (void)transformImageView{ CGAffineTransform t = CGAffineTransformMakeScale(scale * previousScale, scale * previousScale); t = CGAffineTra... 阅读全文
posted @ 2014-04-18 13:40 haotianling 阅读(504) 评论(0) 推荐(0)