336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
아이폰 앱 파일이 있는 폴더에는 하위폴더가 3개 있습니다.
Documents, Library, tmp 폴더죠.
NSSearchPathForDirectoriesInDomains 함수를 이용하면 위 폴더를 포함한 전체 경로를 가져올 수 있습니다.
NSArray* paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString* documentDir = [paths objectAtIndex:0];
NSLog(@"%@", documentDir);
- Library 폴더 전체 경로 가져오기.
NSArray* paths = NSSearchPathForDirectoriesInDomains(NSLibraryDirectory, NSUserDomainMask, YES);
NSString* libraryDir = [paths objectAtIndex:0];
NSLog(@"%@", libraryDir);
※ 퍼가실땐 출처를 밝혀주세요. (http://shkam.tistory.com/)
'프로그래밍 > iOS, macOS, Objective-C' 카테고리의 다른 글
[XCode] 하위버전 SDK 추가하는 방법 (0) | 2016.07.29 |
---|---|
[MAC OS X] 아이폰 화면 동영상으로 녹화하기 (1) | 2015.08.31 |
[XCode 6.4] 맥에서 아이폰 화면 캡쳐 방법 (png) (0) | 2015.08.26 |
[아이폰] Localizable.strings 파일 생성하기 (0) | 2014.01.07 |
[Xcode/iOS] IOS 버전 정보 가져오기. (0) | 2011.09.22 |
[Xcode/iOS] 아이폰 카메라 플래시 제어하기 (0) | 2011.09.08 |
[Xcode/iOS] UITableView의 Cell 높이 설정하기. (0) | 2011.08.29 |
[Xcode] performSelector: afterDelay - 일정 시간 이후에 Method 호출하기 (0) | 2011.08.02 |