이미 관련글이 올라와 있는지는 모르겠지만...
//iCloud 막을 Document경로 설정
NSString *documentPath = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) lastObject];
NSURL *pathURL= [NSURL fileURLWithPath:documentPath];
NSLog(@"%@",documentPath);
if([[[UIDevice currentDevice] systemVersion] floatValue] > 5.0f){
[self addSkipBackupAttributeToItemAtURL:pathURL];
}else{
NSLog(@"CANNOT - CUZ VERSION IS UNDER 5.0.1");
}
//Cloud Data 백업 방지...
- (BOOL)addSkipBackupAttributeToItemAtURL:(NSURL *)URL
{
const char* filePath = [[URL path] fileSystemRepresentation];
const char* attrName = "com.apple.MobileBackup";
u_int8_t attrValue = 1;
int result = setxattr(filePath, attrName, &attrValue, sizeof(attrValue), 0, 0);
return result == 0;
}
'프로그래밍 > iOS' 카테고리의 다른 글
iOS 앱 개발시 AES 256으로 데이터 암호화하여 저장하기와 복호화하여 읽어오기 (0) | 2012.04.24 |
---|---|
iCloud관련 리젝 사례 (0) | 2012.04.24 |
언어코드와 지역코드 (0) | 2012.04.23 |
파일 이어받기 (0) | 2012.04.18 |
XCode 4.2에서 Distribution 하기 (0) | 2012.04.17 |