iOS 에서 iCloud 가 도입되면서 Document 폴더를 같이 쓰기때문에 더이상 여기에 저장할수 없게 되어버렸다.
std::string CCFileUtils::getWriteablePath()
{
// save to document folder
// 아래줄을 NSCachesDirectory 로 변경
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES);
NSString *documentsDirectory = [paths objectAtIndex:0];
std::string strRet = [documentsDirectory UTF8String];
strRet.append("/");
return strRet;
}
반응형
'IT라이프' 카테고리의 다른 글
android AdMob 추가하기 (0) | 2014.04.15 |
---|---|
컴파일 과정 (0) | 2014.03.19 |
cocos2d-x 3.0beta2 에서 새프로젝트 생성하기 (0) | 2014.03.06 |
프로그램의 메모리 공간 (0) | 2014.03.06 |
cocos2d-x 2.2.x 새 프로젝트 생성하기 (0) | 2014.03.06 |
댓글