码迷,mamicode.com
首页 > 移动开发 > 详细

自定义ios framework-iOS Universal Framework

时间:2014-07-22 23:12:35      阅读:529      评论:0      收藏:0      [点我收藏+]

标签:style   http   使用   os   strong   文件   

github:https://github.com/kstenerud/iOS-Universal-Framework/blob/master/README.md

安装:

  1. 首先下载zip文件.
  2. 保证你放在一个地方,并方便日后使用。B/C工程模板,每次你更新XCode的时候,你都需要重新安装这个项目模板(不要担心,安装过程非常的快)。
  3. 确保XCode已完全关闭
  4. 解压缩zip文件并转到文件夹:Real Framework/install.sh
  5. 如果你熟悉使用命令终端,只需运行install.sh。如果你不熟悉,那么只需把它改名为 install.sh.command 并双击运行它。
  6. 当它开始运行,它会询问你:XCode安装在哪里。如果你没有修改过默认XCODE的安装路径,只需回车确认。
  7. 然后它会再询问你,需要安装在什么地方。只需敲入y并回车。
  8. 输入密码,回车
  9. 等待安装结束

创建 iOS Framework Project

  1. Start a new project. 新建xcode工程

  2. Framework & Library中选择Static iOS Framework (or Fake Static iOS Framework)

  3. 最好选中单元测试

  4. Add the auto-generated header file to the Public section of the Copy Headers build phase (workaround for Xcode bug).

  5. Turn off Show environment variables in build log for both Run Script build phases (workaround for Xcode bug).

  6. Add your classes, resources, etc with your framework as the target.

  7. 其他项目需要使用的头文件必须定义为public. 在Build Phases  中展开 Copy Headers, 将需要的头文件拖拽到Public下面.

  8. Any static libraries or static frameworks that you‘d like to have linked into your framework must be included in the Link Binary With Libraries build phase. Be careful doing this, however, as it can cause linker issues if the users of your framework also try to include the same library in their project for other purposes.

生成 iOS Framework

  1. Select your framework‘s scheme, iOS Device target.

  2. 选择 Product -> Archive.

  3. 完成后,会打开finder,里面有两种文件*.framework和*.embeddedframework(可能没有).

 如果framework只有代码没有资源(如images, scripts, xibs, core data momd files等),可以直接使用*.framework。如果包含有其他的资源,需要使用*.embeddedframework.

使用iOS Framework

iOS frameworks are basically the same as regular dynamic Mac OS X frameworks, except they are statically linked.

使用方法跟自带的framework一样,只不过他们是静态链接的

将*.framework或者*.embeddedframework文件拖拽到工程中即可。在工程中引用头文件使用<>,不要使用"".

For example, with framework "MyFramework":

#import <MyFramework/MyClass.h>

自定义ios framework-iOS Universal Framework,码迷,mamicode.com

自定义ios framework-iOS Universal Framework

标签:style   http   使用   os   strong   文件   

原文地址:http://www.cnblogs.com/fengyunyu/p/3700120.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!