IOS UI 학습 튜 토리 얼 의 구분 NSBundle 과 NSURL(파일 읽 기,쓰기)
프로젝트 프로젝트 에 파일 을 추가 합 니 다.이 규칙 은 aa.txt 를 추가 합 니 다.파일 의 내용 은 바 이 두 입 니 다.www.baidu.com 입 니 다.지금 은 NSBundle 과 NSURL 을 사용 하여 각각 내용 을 가 져 오 려 고 합 니 다.코드 는 다음 과 같 습 니 다.
//
// 1:
NSString *pathBundle = [[NSBundle mainBundle]pathForResource:@"aa" ofType:@"txt"];
NSString *outstringbundle = [NSString stringWithContentsOfFile:pathBundle encoding:NSUTF8StringEncoding error:nil];
// 2: URL
NSURL *pathUrl = [[NSBundle mainBundle]URLForResource:@"aa" withExtension:@"txt" subdirectory:nil];
NSString *outstringUrl = [NSString stringWithContentsOfURL:pathUrl encoding:NSUTF8StringEncoding error:nil];
NSLog(@"%@
////////
%@",outstringbundle,outstringUrl);
출력 결 과 는 다음 과 같 습 니 다.
2016-03-30 14:48:02.939 and [11786:518929] : www.baidu.com
////////
: www.baidu.com
파일 쓰기:파일 새로 만 들 기:
NSString *newPath = [NSString stringWithFormat:@"%@/Documents/New",NSHomeDirectory()];
//
NSString *newfile = [NSString stringWithFormat:@"%@/new.mp3",newPath];
// createFileAtPath
[[NSFileManager defaultManager]createFileAtPath:newfile contents:nil attributes:nil];
NSLog(@"%@",newPath);
읽 고 쓰기:
//
// 1、 data
NSData *data = [[NSData alloc]initWithContentsOfFile:pathBundle];
NSLog(@"%@",data);
// 2、 data ,newfile mp3
[data writeToFile:newfile atomically:YES];
간단 한 인 스 턴 스 를 통 해 NSBundle 과 NSURL 을 구분 하 는 것 이 여러분 의 학습 에 도움 이 되 기 를 바 랍 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
IOS에서 ReplayKit 및 RTC 사용 방법응용된 소리와 아나운서의 소리를 포함한다.이 두 가지 수요를 감안하여 우리는 스크린 공유를 하는 생방송에 필요한 미디어 흐름을 간단하게 분석할 수 있다. 만약 우리가 Audio App과 Audio Mic를 두 개의 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.