iPhone 에 파일이름은 같은데, 경로가 다른 파일들을 저장할 수 있다.
예를 들면 아래와 같은 경우,
dir1/sea.jpg
dir2/sea.jpg
dir3/dir5/sea.jpg
이럴 경우에 파일의 경로를 얻어오는 방법이 있다.
아래와 같이 파일 이름을 얻어 올때, 디렉토리를 지정하여 얻어오는 방법이 있다.
NSBundle *bundle = [NSBundle bundleForClass:[self class]];
NSString *filePath = nil;
if (filePath = [bundle pathForResource:@"sea" ofType:@"jpg" inDirectory:@"dir1"]) {
theContents = [[NSString alloc] initWithContentsOfFile:filePath];
// when completed, it is the developer's responsibility to release theContents
}
'Programming > iPhone, Xcode' 카테고리의 다른 글
iOS - App file system structure (0) | 2013.01.25 |
---|---|
iOS - 테이블뷰셀 사용자 정의하기 (TableViewCell customize) (0) | 2013.01.23 |
iOS - UIWebView 에 back button 기능 구현 (0) | 2013.01.22 |
iOS - Core Data relation tutorial (0) | 2013.01.20 |
iOS - Core Data Tutorial 추천 (0) | 2013.01.20 |