1
imcj Jan 18, 2013
好多公司都不敢公开的贴工资,是为什么呢?
|
3
Kai Jan 18, 2013 移动到工作结点。
|
4
shellcodecow Jan 18, 2013
原使用SBJSON 都已经跟换为JSONKit。仅供参考
|
6
ytzong Jan 18, 2013 接 @shellcodecow ASIHTTPRequest 已经替换成 AFNetworking
|
7
ostrichmyself Jan 19, 2013
此帖有望成为技术贴的倾向, 严重关注
|
8
chisj Jan 23, 2013
@shellcodecow 如果是iOS高级版本(>= 5),用系统自带的NSJSONSerialization解析库最快,否则用JSONKit,恩,我是这么封装的!
|
9
XDA Jan 23, 2013
冒昧猜测,这样的水平年薪至少15w以上吧
|
10
yqrm Jan 23, 2013
AFNetworking is a delightful networking library for iOS and Mac OS X. It's built on top of NSURLConnection, NSOperation, and other familiar Foundation technologies. It has a modular architecture with well-designed, feature-rich APIs that are a joy to use. For example, here's how easy it is to get JSON from a URL:
NSURL *url = [NSURL URLWithString:@"https://alpha-api.app.net/stream/0/posts/stream/global"]; NSURLRequest *request = [NSURLRequest requestWithURL:url]; AFJSONRequestOperation *operation = [AFJSONRequestOperation JSONRequestOperationWithRequest:request success:^(NSURLRequest *request, NSHTTPURLResponse *response, id JSON) { NSLog(@"App.net Global Stream: %@", JSON); } failure:nil]; [operation start]; |
11
nsm1168 Jul 29, 2013
楼主在IBM工作? 那这家公司是怎么回事呢
|