Contents

Develop
2013.04.23 18:08

[ios] 디렉토리 하하하..

조회 수 32635 댓글 0
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄

디렉토리 탐색하는 샘플 코드~

NSString *newDir;
if( parent_dir > 0 ){
    newDir = [NSString stringWithFormat:@"NToon/%d", parent_dir];
}else{
    newDir = @"NToon";
}

NSString *newPath = [documentsDirectory stringByAppendingPathComponent:newDir];

if (![fileManager fileExistsAtPath:newPath]) {
    if ([fileManager createDirectoryAtPath:newPath withIntermediateDirectories:YES attributes:nil error:&error]) {
        //NSLog(@"getDBFilePath: %@ created.", newPath);
    } else {
        NSLog(@"getDBFilePath: Failed to create %@ due to %@", newPath, error);
    }
}

?

  1. [ios] 동영상 플레이어 샘플 (for Remote Url)

  2. [ios] 디렉토리 하하하..

  3. [ios] 로컬에 있는 html 실행하기

  4. [ios] 로컬에 있는 JS 파일 웹뷰에서 동적으로 실행하기

  5. [ios] 문자열로 함수 실행하기 (eval 함수처럼)

  6. [ios] 미스터피자(Mr.pizza) 어플

  7. [ios] 배열(NSArray) 연산과 간단한 애니메이션(split images)

  8. [ios] 비동기 블럭 코드 예제

  9. [ios] 비디오,네트워크,소셜로그인 테스트

  10. [ios] 상위 ViewController 가져오기

  11. [ios] 새로 만들고 있는 DateMemo

  12. [ios] 설정에서 푸시 알림(APNS) on/off 상태 확인

Board Pagination Prev 1 ... 44 45 46 47 48 49 50 51 52 53 ... 98 Next
/ 98