JSON ios

    [iOS] TouchJson Framework Guide

    Guide 보러가기 Touch Json 간단한 사용방법은, // Parse JSON results with TouchJSON. It converts it into a dictionary. CJSONDeserializer *jsonDeserializer = [CJSONDeserializer deserializer]; NSError *error; NSDictionary *resultsDictionary = [jsonDeserializer deserializeAsDictionary:jsonData error:&error]; Response 받은 Data를 CJSONDeserializer를 Import 하고 돌려주기만 하면 Dictionary로 변환된다~!매우매우 간단함. 복잡한 포맷을 사용하기엔 부적절함. T..