검색결과 리스트
library에 해당되는 글 1건
- 2012.11.22 XCode static library 생성
글
336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
1. XCode로 Cocoa Touch Static Library 프로젝트를 생성
File > New > Project
Choose a template for your new project:
iOS > Framework & Library > Cocoa Touch Static Library
Product Name : TestLibrary
2. Helloworld 함수 생성
[TestLibrary.h]
@interface TestLibrary : NSObject
+ (void) Helloworld;
@end
[TestLibrary.m]
@implementation TestLibrary
+ (void) Helloworld
{
NSLog(@"helloworld");
}
@end
3. 플랫폼별 빌드
iOS Device를 선택하고 빌드 후, iPhone x.0 Simulator를 선택하고 빌드
4. 플랫폼별 빌드파일 포함된 라이브러리 생성
터미널에서
SHELL> cd /Users/(유저명)/Library/Developer/Xcode/DerivedData/TestLibrary-xxxxxxxxxxxx/Build/Products
SHELL> libtool Debug-iphoneos/libTestLibrary.a Debug-iphonesimulator/libTestLibrary.a -o /Users/(유저명)/libTestLibrary.a
5. 테스트 프로젝트에서 라이브러리 사용
TestLibrary.h, libTestLibrary.a를 테스트 프로젝트에 import
[TestLibrary Helloworld];
'-- iOS (iPhone)' 카테고리의 다른 글
AppDelegate의 정의된 함수 설명 (0) | 2012.12.06 |
---|---|
unrecognized selector sent to instance (0) | 2012.11.23 |
UIAlertView Message Box (0) | 2012.11.13 |
아이폰 배포 SDK버전 설정 (0) | 2012.10.22 |
add right button (exit button) on navigator bar (0) | 2012.10.15 |
RECENT COMMENT