iOS 静态库制作❣基础篇

作者: CoderHG | 来源:发表于2017-05-30 17:10 被阅读247次

    接下来开始介绍一下在iOS开发中静态库的制作。提示:开源光荣 与学习静态库的制作没有任何关系。将自优秀代码开源的同志,都是好同志。

    一、创建项目

    开始创建项目:

    创建项目

    项目命名:

    项目:BaseCell
    二、核心代码

    目的是写一个简单的 UITableViewCell 的子类。
    进入 BaseCell.h 文件,让 BaseCell 继承于 UITableViewCell 。并声明以下两个类方法:

    /** 快速获取 cell */
    + (instancetype)cell:(UITableView*)tableView;
    
    /** 快速获取 cell(Xib/故事版) */
    + (instancetype)resourceCell:(UITableView*)tableView;
    

    在 BaseCell.m 文件中实现以上两个方法:

    
    /** 快速获取 cell */
    + (instancetype)cell:(UITableView*)tableView {
        NSString* ID = NSStringFromClass(self);
        BaseCell* cell = [tableView dequeueReusableCellWithIdentifier:ID];
        
        if (!cell) {
            [tableView registerClass:self forCellReuseIdentifier:ID];
            cell = [tableView dequeueReusableCellWithIdentifier:ID];
        }
        
        return cell;
    }
    
    /** 快速获取 cell(Xib/故事版) */
    + (instancetype)resourceCell:(UITableView*)tableView {
        NSString* ID = NSStringFromClass(self);
        BaseCell* cell = [tableView dequeueReusableCellWithIdentifier:ID];
        
        if (!cell) {
            [tableView registerNib:[UINib nibWithNibName:ID bundle:nil] forCellReuseIdentifier:ID];
            cell = [tableView dequeueReusableCellWithIdentifier:ID];
        }
        
        return cell;
    }
    

    写到这里,大家应该都知道这个 BaseCell 的功能了。聪明的你,也知道了我的意图。

    三、打静态包前的配置

    1、Build Active Architecture Only 全部设置成NO

    全部设置成 **NO**

    2、这里是不用修改的,默认就是这样。

    默认,不用修改
    四、开始编译

    分别选中模拟器于真机,各自都编译一下:

    选中模拟器

    ** command + b** 编译成功为止。

    选中真机

    command + b 编译成功为止。

    五、找到编译结果

    找到左侧的 Products 目录。选中libBaseCell.a进入,会发现有如下两个子目录:

    **Products** 目录

    两个子目录,就是编译结果。分别进入字目录中,会发现有这样的文件libBaseCell.a,这就是一个静态库了,但是模拟器于真机的是分开的。在开发中,往往是需要合并的。打开终端,cdProducts 目录。

    然后在终端合并两个 libBaseCell.a ,语法是:
    lipo -create 第一个libBaseCell.a 第二个libBaseCell.a -output libBaseCell.a (粗体为固定字段)

    例如:
    lipo -create /Users/zhuhong/Library/Developer/Xcode/DerivedData/BaseCell-arwrstdmbuakyafbrvinyfrhqhlp/Build/Products/Debug-iphoneos/libBaseCell.a /Users/zhuhong/Library/Developer/Xcode/DerivedData/BaseCell-arwrstdmbuakyafbrvinyfrhqhlp/Build/Products/Debug-iphonesimulator/libBaseCell.a -output libBaseCell.a

    会发现在 Products 目录中多了一个 libBaseCell.a 文件。这个文件就是模拟器于真机合并的静态库,在开发的过程中,往往都是用这个合并库。

    然后在 Products 目录中创建一个目录,名叫 BaseCellBaseCell目录中内容如下:

    **BaseCell**

    结束了,现在你将BaseCell 目录拖到项目,就可以使用了。

    想要了解更多,可以进入iOS 静态库制作❣中篇

    谢谢~

    相关文章

      网友评论

        本文标题:iOS 静态库制作❣基础篇

        本文链接:https://www.haomeiwen.com/subject/feyrfxtx.html