1
imcj 2013-01-18 10:04:12 +08:00
好多公司都不敢公开的贴工资,是为什么呢?
|
3
Kai MOD 移动到工作结点。
|
4
shellcodecow 2013-01-18 10:47:06 +08:00
原使用SBJSON 都已经跟换为JSONKit。仅供参考
|
6
ytzong 2013-01-18 17:58:13 +08:00 1
接 @shellcodecow ASIHTTPRequest 已经替换成 AFNetworking
|
7
ostrichmyself 2013-01-19 12:39:17 +08:00
此帖有望成为技术贴的倾向, 严重关注
|
8
chisj 2013-01-23 12:25:56 +08:00
@shellcodecow 如果是iOS高级版本(>= 5),用系统自带的NSJSONSerialization解析库最快,否则用JSONKit,恩,我是这么封装的!
|
9
XDA 2013-01-23 12:33:00 +08:00
冒昧猜测,这样的水平年薪至少15w以上吧
|
10
yqrm 2013-01-23 13:34:31 +08:00
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 2013-07-29 16:40:16 +08:00
楼主在IBM工作? 那这家公司是怎么回事呢
|