[ios]NSString to std::string & std::string to NSString
2013. 6. 5. 10:11ㆍIOS
336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
cocos2d-x를 쓰다보면 objectiv c와 cpp의 언어를 같이 사용할 때가 있다..
그래서! NSString 과 std::string의 형변환이 필요할 터 !
//NSString 에서 std::string로 형변환 테스트 NSString to string
string NSString_To_string = [document UTF8String];
cout << NSString_To_string << endl;
//std::string에서 NSString로 형변환 테스트 string to NSString
NSString *string_To_NSString = [NSString stringWithUTF8String:NSString_To_string.c_str()];
NSLog(@"string_To_NSString : %@", string_To_NSString);
요래하면 된다!
'IOS' 카테고리의 다른 글
[iOS] Unable to boot device in current state: Booted (0) | 2023.04.20 |
---|---|
Xcode - 빌드 오류 Development cannot be enabled while your device is locked. (1) | 2017.04.29 |
[ios]DocumentDirectory 경로! (0) | 2013.06.05 |