일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- Push
- Android
- Magnify Anim
- IOS10
- Google V8 Engine
- 공인인증서 정보
- sha1 convert hashkey
- Objective C
- android log dump
- embedd
- 공인인증서 만료일
- Status Bar
- v8 engine xcode build
- java
- JavaScript Engine
- ios framework
- V8 Engine
- 인증서 정보 뽑아내기
- SO 파일
- FlexiblePageView
- apk 다운사이징
- so file
- 안드로이드
- Android NDK시스템
- PageControl
- appbarlayout
- ios
- IMAGE
- apache
- apns
Archives
- Today
- Total
caTea 블로그
ios json을 NSDictionary로 또는 그반대로 변경 함수 본문
반응형
+ (NSString*) makeJsonText:(NSDictionary*)jsonDict{
NSError *error = nil;
SBJsonWriter* jsonWriter = [[SBJsonWriter alloc] init];
NSString * jsonText = [jsonWriter stringWithObject:jsonDict error:&error];
[jsonWriter release];
return jsonText;
}
+ (NSDictionary*) parserJsonText:(NSString*) jsonText{
SBJsonParser *parser = [[SBJsonParser alloc] init];
// JSON 문자열을 객체로 변환
NSDictionary* dict = [parser objectWithString:jsonText error:nil];
[parser release];
return dict;
}
라이브러리 함수도 첨부했습니다.
728x90
'macos | ios' 카테고리의 다른 글
NSURLSession 간편하게 사용하기 (2) | 2016.09.04 |
---|---|
디바이스 타입 가져오기 (0) | 2016.07.12 |
[ios, objective-c] 자바의 onActivityResult 기능을 구현해보자 (0) | 2015.02.10 |
[ios, Objectiv_C]ABPeoplePickerNavigationController Image 가져오기 (0) | 2015.01.22 |
[ios, objective-c] AVCaptureSession (실시간 카메라 이미지 캡쳐) (4) | 2015.01.19 |