创建iOS Facebook SDK静态库 [英] Creating an iOS Facebook SDK Static Library

查看:116
本文介绍了创建iOS Facebook SDK静态库的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在试图通过构建一个静态库来了解它们的意思和意义,但是我只是不能把头围住了?

I am trying to understand how and what they mean by building a static library, but I just cant wrap my head around it?

一个href =https://stackoverflow.com/questions/9493640/facebook-ios-sdk-how-to-build-static-library-for-xcode-4-3>链接,看起来像这对大多数人来说很好解释,但也许我只是一个白痴或某事。

I've checked here Link and it seems like it is explained well for most people but maybe I'm just an idiot or something.

我看到这里我应该将.sh更改为这个...

I see here where I'm supposed to change the .sh to this...

XCODEBUILD_PATH = / Applications / Xcode.app / Contents / Developer / usr / bin

然后它说要在shell ...什么是shell,我如何建立它?
也是 Xcode.app 我的xcode项目的名称?如果是这样,我没有任何.app文件...

and then it says to build in the shell... what is the shell and how do i build in it? also is Xcode.app the name of my xcode project? And if so I don't have any .app files in it...

有人可以请我走过这个步骤吗?非常感谢!

Could someone please walk me through the steps for this? Thanks so much!

推荐答案

shell是shell。好的,我知道。在mac下,您可以以多种方式访问​​它,可能最简单的是Terminal应用程序(在实用程序下)。这是一个程序,可以让您以用户身份对操作系统进行命令行访问(这不是一个纯粹的描述,但最好的,我可以考虑你不知道是什么)。

The shell is, well the shell. OK, I know. Under mac, you can access it multiple ways, probably the easiest is the Terminal application (under utilities). It is a program that gives you command line access to the operating system as a user (that's not a pure description but the best I can do considering you have no idea what it is).

静态库是一个可直接链接到应用程序中的库。动态库在运行时加载。这就是在设备上运行时加载iOS框架库的方式。他们已经在那里,当你的应用程序运行时你会收到它们的加载。

A static library is a library that you can link directly into your application. Dynamic libraries are loaded at runtime. That's how the iOS framework libraries are loaded when running on the device. They are already there, and you will get them loaded when the application runs.

一个静态库实际上被链接到应用程序中作为应用程序的一部分...只有批准访问非苹果库的方式。

A static library is actually linked into the application as a part of the application... the only approved way to access non-apple libraries.

Xcode.app是Xcode应用程序的名称。

Xcode.app is the name of the Xcode application.

这篇关于创建iOS Facebook SDK静态库的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆