【002】【Xcode6-Beta5】IOS静态库的制作与使用

时间:2022-09-06 20:55:14

一、制作静态库

1、创建静态库的Project

【1】File->New->Project->IOS->Framework & Library->Cocoa Touch Static Libary

【002】【Xcode6-Beta5】IOS静态库的制作与使用

【2】Product Name==>我的是MyAlertView->然后Create

【002】【Xcode6-Beta5】IOS静态库的制作与使用

【目录结构如图所示】会生成MyAlertView.h和MyAlertView.m

【002】【Xcode6-Beta5】IOS静态库的制作与使用

2、修改代码

【1】MyAlertView.h

//
// MyAlertView.h
// MyAlertView
//
// Created by dagger on 14-8-14.
// Copyright (c) 2014年 Baidu. All rights reserved.
//

#import <Foundation/Foundation.h>
#import "UIKit/UIKit.h"
@interface MyAlertView : UIAlertView<UIAlertViewDelegate>

+(void)showMessage:(NSString*)messageString;

@end

【2】MyAlertView.m

//
// MyAlertView.m
// MyAlertView
//
// Created by dagger on 14-8-14.
// Copyright (c) 2014年 Baidu. All rights reserved.
//

#import "MyAlertView.h"

@implementation MyAlertView

+ (void)showMessage:(NSString*)messageString
{
UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:nil
message:messageString
delegate:nil
cancelButtonTitle:@"OK"
otherButtonTitles:nil];
[alertView show];
}

@end


 

3、设置Release

【002】【Xcode6-Beta5】IOS静态库的制作与使用

【1】Edit Scheme->Run->Release->Close

【002】【Xcode6-Beta5】IOS静态库的制作与使用

4、Build一下,发现Build Succeeded之后在工程目录下的Products文件夹下的静态库文件libMyAlertView.a依然为红色,右键选择【Show in Finder】也是进不去,此时我们可以单击静态库文件libMyAlertView.a会在Xcode最右边的子窗口中发现Full Path,按照完整路径我们可以找到静态库所在位置,如下图,我们在Finder下通过快捷键【command+shift+G】的方式可以输入文件路径前缀,然后一直找到静态库和对应所需的头文件

【002】【Xcode6-Beta5】IOS静态库的制作与使用

【002】【Xcode6-Beta5】IOS静态库的制作与使用

【002】【Xcode6-Beta5】IOS静态库的制作与使用

二、使用静态库

1、创建我的App的Project

【1】File->New->Project->IOS->Application->Single View Application

【002】【Xcode6-Beta5】IOS静态库的制作与使用

【2】Product Name==>我的是TestDemo->然后Create

【002】【Xcode6-Beta5】IOS静态库的制作与使用

【目录结构如图所示】

【002】【Xcode6-Beta5】IOS静态库的制作与使用

2、加入静态库

【1】向新建项目Project中添加静态库,如图,需要将include文件夹和静态库文件一并拖入到工程的TestDemo目录下

【002】【Xcode6-Beta5】IOS静态库的制作与使用

【2】在弹出框中勾选上【Copy items if needed】->【Finish】

【002】【Xcode6-Beta5】IOS静态库的制作与使用

【3】修改AppDelegate.m

    ​1)添加头文件:#import "include/MyAlertView/MyAlertView.h"

    ​2)  修改函数application(),添加如下代码[MyAlertView showMessage:@"This is a test!"];

【002】【Xcode6-Beta5】IOS静态库的制作与使用

3、Build之后可以看到使用成功的效果

【002】【Xcode6-Beta5】IOS静态库的制作与使用