Xcode中创建和添加Libary
该⽂介绍如何在xcode中创建⾃定义libary,以及如何将外部Libary添加到项⽬中。
1.新建 "Libary" -> "Cocoa Touch static libary" 项⽬ "LibaryTest";
2.新建 "HellowWorld" 类:
xcode怎么打开//HelloWorld.h
#import <Foundation/Foundation.h>
@interface HelloWorld : NSObject {
}
-(void)helloWorld;
@end
//---------------
/
/HelloWorld.m
#import "HelloWorld.h"
@implementation HelloWorld
-(void)helloWorld{
NSLog(@"hello world");
}
@end
3.新建 "Window-based Application" 项⽬ "TempTest";
4.在TempTest下新建“new Group” 名为 “Dependencies”;
5.在"Dependencies"下"",
选择 "deproj",点击"Add",
在弹出的⾯板中选中"Reference Type" 的 "Relative to project"选项, 然后确定.
6. 在 Dependencies 的详情窗⼝勾选 LibaryTest.a 项:
7.在deproj 上右键 "get info"窗⼝,我们可以看到它相对于当前项⽬的相对路径为"../deproj".打开当前项⽬的"get info"窗⼝,在build中搜索head,将会到"Header Search Paths"项, 双击该选项,将"../LibaryTest"添加进去,如图:
点OK. 这时在当前项⽬(TempTest)中,应该就能正常的提⽰LibaryTest中的类和⽅法了.
8.修改TempTestAppDelegate.m后,代码如下:
#import "TempTestAppDelegate.h"
#import "HelloWorld.h"
@implementation TempTestAppDelegate
@synthesize window;
#pragma mark -
#pragma mark Application lifecycle
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
// Override point for customization after application launch.
HelloWorld *helloworld = [[HelloWorld alloc] init];
[helloworld helloWorld];
[self.window makeKeyAndVisible];
return YES;
}
#pragma mark -
#pragma mark Memory management
- (void)dealloc {
[window release];
[super dealloc];
}
@end
"Command + B"编译,没有问题. 修改"LibaryTest"后编译依然没有问题,但" Command + R"运⾏可能会有问题.因为到⽬前为⽌,我们还只是将LibaryTest和当前项⽬添加了关联,但在编译当前项⽬时,它不会去编译LibaryTest库. 所以我们还需要在当前项⽬添加对LibaryTest的依赖关系.
9. 在打开Targets 下 TempTest 的 "get info"窗⼝. 选中genaral标签. 在 "direct dependencies"中添加对LibaryTest的依赖.
结束.
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论