ios 在 Xcode 4 中添加框架

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/6334966/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-08-30 20:20:51  来源:igfitidea点击:

Adding Framework in Xcode 4

iosframeworksxcode4

提问by Ohad Regev

Possible Duplicate:
How to “add existing frameworks” in Xcode 4?

可能的重复:
如何在 Xcode 4 中“添加现有框架”?

How do I add a Framework in Xcode 4?

如何在 Xcode 4 中添加框架?

enter image description here

在此处输入图片说明

回答by jimdrang

  1. In the project navigator, select your project
  2. Select your target
  3. Select the 'Build Phases' tab
  4. Open 'Link Binaries With Libraries' expander
  5. Click the '+' button
  6. Select your framework
  7. (optional) Drag and drop the added framework to the 'Frameworks' group
  1. 在项目导航器中,选择您的项目
  2. 选择你的目标
  3. 选择“构建阶段”选项卡
  4. 打开“使用库链接二进制文件”扩展器
  5. 单击“+”按钮
  6. 选择您的框架
  7. (可选)将添加的框架拖放到“框架”组

from How to "add existing frameworks" in Xcode 4?

如何在 Xcode 4 中“添加现有框架”?