Documents폴더 경로 얻기.
1) 방법.
NSArray *paths = NSSearchPathDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentFolderPath = [paths objectAtIndex:0];
2) 방법.
NSString *documentsFolderPath = [NSHomeDirectory() stringByAppendingPathComponent:@"Documents"]);
앱이름.app(bundle)
1)번 방법.
NSString *bundlePath = [[NSBundle mainBundle] resourcePath];
2)번 방법.
NSString *bundlePath = [[NSBundle mainBundle] bundlePath];
'IPHONE' 카테고리의 다른 글
Segue 사용하기. (0) | 2013.12.11 |
---|---|
NSFetchRequest 에 Entity 지정 방법. (0) | 2013.12.11 |
아이폰 앱 등록 절차 (0) | 2013.12.10 |
Core Graphics 이미지 그리기. (0) | 2013.11.30 |
Sizes of iPhone UI Elements (0) | 2013.11.29 |