[ios]DocumentDirectory 경로!
2013. 6. 5. 10:13ㆍIOS
336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
아이폰에 다운로드 혹은 그 다운로드 된 파일을 읽기만이 아닌 수정 삭제가 가능하게 하려면
필히 Document로 그 파일을 갖다놔야 컨트롤이 가능하다고 들었다... 그 경로로 가는 방법 !
//document 경로 = 읽기 이외의 수정 삭제도 가능함.
NSArray *PATH = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *document = [PATH objectAtIndex:0];
NSLog(@"document : %@", document);
'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]NSString to std::string & std::string to NSString (0) | 2013.06.05 |