软件开发工作流中有两个重要问题:
- 怎么管理第三方包?
- 怎么制作lib库?
最近转iOS,所以研究了一把在iOS上如何做到这两点。
一、怎么管理第三方包?
在Android开发中用习惯了gradle管理第三方包,切换到iOS的第一件事情就是寻找类似的工具,然后就找到了CocoaPods。
1. 安装CocoaPods
执行sudo gem install cocoapods
。(网速比较慢的,建议使用开源VPN工具—— lantern)。
Successfully installed cocoapods-1.0.1
Parsing documentation for cocoapods-1.0.1
1 gem installed
看到以上结果就说明安装成功了。找不到gem命令,请先安装Ruby环境。
2. 新建xCode项目PandaiOSDemo
选择iOS→Application→Single View Application
3. 建立配置文件Podfile,配置需要的第三方库
关闭项目,回到PandaiOSDemo所在目录(即PandaiOSDemo.xcodeproj所在的目录)
建立Podfile,输入:
platform :ios, '8.0'
#use_frameworks!个别需要用到它,比如reactiveCocoa
target 'PodTest' do
# pod 'AFNetworking', '~> 2.6'
# pod 'ORStackView', '~> 3.0'
# pod 'SwiftyJSON', '~> 2.3'
pod 'MBProgressHUD', '~> 0.8'
end
4. 执行pod install
回到PandaiOSDemo所在目录(即PandaiOSDemo.xcodeproj所在的目录)
在命令行中执行pod install
得到如下结果:
Analyzing dependencies
Downloading dependencies
Installing MBProgressHUD (0.9.2)
Generating Pods project
Integrating client project
[!] Please close any current Xcode sessions and use `PandaiOSDemo.xcworkspace` for this project from now on.
Sending stats
Pod installation complete! There is 1 dependency from the Podfile and 1 total
pod installed.
目录中多了一个PandaiOSDemo.xcworkspace文件,打开它,会发现多了一个Pods的项目,里面的a文件就是
5. 写一段测试代码
在AppDelegate.m调用MBProgressHUD类
#import "MBProgressHUD.h"
#import "ViewController.h"
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
// Override point for customization after application launch.
self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen]bounds]];
[MBProgressHUD showHUDAddedTo:self.window animated:YES];
ViewController *p = [[ViewController alloc]init];
self.window.rootViewController = p;
self.window.backgroundColor = [UIColor whiteColor];
[self.window makeKeyAndVisible];
}
6. 运行
结果如下:
拓展:在CocoaPods上找想要的第三方库
- 终端输入命令:pod search {keyword}
- 上CocoaPods官网:https://cocoapods.org/
二、怎么制作lib库?
一般而言,lib有两种:Static Library 和 Dynamic Library
- 静态链接库(Static Library)是指模块被编译合并到应用中,应用程序本身比较大,但不再需要依赖第三方库。运行多个含有该库的应用时,就会有多个该库的Copy在内存中,冗余。
- 动态链接库(Dynamic Library)可以分开发布,在运行时查找并载入到内存,如果有通用的库,可以共用,节省空间和内存。同时库也可以直接单独升级,或作为插件发布。也就是说动态库不会打包在应用中,需要应用运行的平台自带,如果没有话,执行相关方法时,会崩溃。
对于iOS而言,库还可以分为:
- Cocoa Touch Library
- Cocoa Touch Framework
在iOS中,Library 仅能包含编译后的代码,即 .a 文件。
一般来说,一个完整的模块不仅有代码,还可能包含
- .h 头文件
- .xib 等视图文件
- 图片资源文件
- 说明文档等等。
Framework 作为 Cocoa/Cocoa Touch 中使用的一种资源打包方式,可以等集中打包在一起,方便开发者使用(就像Bundle)。
我们每天都要跟各种各样的Framework打交道。如 Foundation.framework / UIKit.framework 等,这些都是Cocoa Touch开发框架本身提供的,而且这些 Framework 都是动态库。
制作lib库分为以下几步:
1.新建Lib项目,添加测试代码
新建项目:File → Project → iOS → Framework & Library → Cocoa Touch Static Library
这里假设名字为 PandaiOSLib ,系统会自动生成 PandaiOSLib.h 和 PandaiOSLib.m ,添加一段测试代码。
PandaiOSLib.h
//
// PandaiOSLib.h
// PandaiOSLib
//
// Created by shitianci on 16/6/15.
// Copyright © 2016年 Panda. All rights reserved.
//
#import <Foundation/Foundation.h>
@interface PandaiOSLib : NSObject
- (int)showWithA:(int)a;
@end
PandaiOSLib.m
//
// PandaiOSLib.m
// PandaiOSLib
//
// Created by shitianci on 16/6/15.
// Copyright © 2016年 Panda. All rights reserved.
//
#import "PandaiOSLib.h"
@implementation PandaiOSLib
- (int)showWithA:(int)a
{
NSLog(@"方法 showWithA 携带参数 a = %d", a);
return a;
}
@end
2. 把lib工程添加到上面的workspace中
- 关闭新建的 PandaiOSLib.xcodeproj;
- 打开 PandaiOSDemo.xcworkspace;
- 右击左侧导航栏空白区域,选择“ Add Files to “PandaiOSDemo” ”;
- 选中刚刚 PandaiOSLib.xcodeproj ,导入工程;
- 点击左侧导航栏中的 PandaiOSDemo;
- 在右侧“ Build Phases ”中进行如下:
- Target dependencies 中 选择添加 PandaiOSLib
- Link Binary with Libraries中选择 libPandaiOSLib.a
- 在右侧“ Build Settings ” 中的 Search Paths 下的 User Header Search Paths 参数中加入第三方类库的头文件路径,可以是绝对路径(如:/Users/libpath),也可以是相对路径(相对于当前项目文件夹,如:../**)。这里选择 ../**,表示递归搜索本地路径。
3. 引用lib方法。
在AppDelegate.m调用PandaiOSLib类
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
// Override point for customization after application launch.
self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen]bounds]];
[MBProgressHUD showHUDAddedTo:self.window animated:YES];
ViewController *p = [[ViewController alloc]init];
self.window.rootViewController = p;
self.window.backgroundColor = [UIColor whiteColor];
[self.window makeKeyAndVisible];
PandaiOSLib *pil = [[PandaiOSLib alloc] init];
[pil showWithA:1];
return YES;
}
4. 运行。
输出如下日志:
2016-06-15 20:51:47.468 PandaiOSDemo[12354:623152] 方法 showWithA 携带参数 a = 1