- 2
- 0
- 约 9页
- 2015-10-02 发布于河南
- 举报
《《How to use TouchJSON in your iPhone apps》.pdf
How to use TouchJSON
in your iPhone apps
given at NSCoderNight DC
2009-04-14
by Luis de la Rosa
aka @louielouie
Founder, Happy Apps LLC
What is TouchJSON?
• Created by Jonathan Wight (aka @schwa)
• Based on his previous code CocoaJSON
• Part of umbrella project TouchCode
• Winner of Best Open Source Project at
iPhoneDevCamp 2
• I’m a committer on the project
How do I include it in
my project?
• Check out the TouchCode project
• Copy the files from ./TouchJSON/Source
into your project
• iPhone doesn’t offer a good way to include
frameworks currently
How do I get JSON?
• The most common way is to get JSON
from a Web Service REST API
• In simpler terms, you download some
JSON from a website
How do I get JSON?
(More details, please.)
// This will issue a request to a web service API via HTTP GET to the
URL specified by urlString.
// It will return the JSON string returned from the HTTP GET.
- (NSString *)jsonFromURLString:(NSString *)urlString {
NSURL *url = [NSURL URLWithString:urlString];
NSMutableURLRequest *request = [[NSMutableURLRequest alloc]
initWithURL:url];
[request setHTTPMethod:@GET];
NSURLResponse *response = nil;
NSError *error = nil;
NSData *result = [NSURLConnection sendSynchronousRequest:request
returningResponse:response error:error];
[request release];
[self handleError:error];
NSString *resultString = [[NSString alloc] initWithData:result
encoding:NSUTF8StringEncoding];
return [resultString autorelease];
}
How do I transform
JSON into Cocoa?
• You use TouchJSON’s CJSONDeserializer
to deserialize a JSON NSString into an
NSDictionary containing keys and values.
• Each value can itself be another object, so
you can have a dee
您可能关注的文档
- 《《EFFICIENCY OR INNOVATION HOW DO INDUSTRY ENVIRONMENTS ....FIRMS' IT ASSET PORTFOLIOS》.pdf
- 《《Efficient algorithms for segmentation of item-set time series 》.pdf
- 《《elecfans.com-苹果iphone 3G 使用手册》.pdf
- 《《Energy Efficiency Analysis of Grid-Connected Photovoltaic Inverter with》.pdf
- 《《ENTERPRISE GREECE 2016_5_GREECE INVESTMENT PROFILE Q&A》.docx
- 《《Entrepreneur training for creativity and innovation》.pdf
- 《《Entrepreneurship__Innovation_and_Growth》.pdf
- 《《EP300-H(FV) IP电话详细用户手册V2.0》.doc
- 《《Epson Stylus Photo R200 Ink Cartridges》.pdf
- 《《Equity Investment Analysis TEXT NOTES 1_3》.pptx
最近下载
- 一把手 2025年度在带头强化政治忠诚、提高政治能力;在带头固本培元、增强党性;在带头敬畏人民、敬畏组织、敬畏法纪;在带头干事创业、担当作为;在带头坚决扛起管党治党责任五个带头方面存在的问题.docx VIP
- 四川成都农业科技中心招聘真题2024.docx VIP
- 四库全书基本概念系列文库:韵略汇通.pdf VIP
- 元气森林外星人电解质水校园圈层营销方案.pptx VIP
- 中国儿童社交技能评估量表(儿童).docx VIP
- 成都农业科技中心招聘考试真题2024.docx VIP
- 《新媒体翻译(校企)》课程教学大纲(本科).docx VIP
- 《新媒体翻译(校企)》课程教学大纲(本科).pdf VIP
- 2024年成都农业科技中心招聘考试真题.pdf VIP
- 简论在象牙门与兽角门的交叉路口追寻道德要义.doc VIP
原创力文档

文档评论(0)