我无法使用静态库

发布于 2024-12-04 03:14:02 字数 275 浏览 1 评论 0原文

我刚刚开始学习iPhone开发,现在就陷入了困境。我的问题如下:

我的项目中多次需要一个具有自动完成功能的文本框。所以我创建了一个静态库,其中包含一个 viewController 以及一个文本框和一个表格(隐藏,但在用户键入时显示)。我通过编码手动添加了文本框和表格。只需将视图连接到文件所有者即可。 xib 除了视图之外什么也不包含。现在我想在我的项目中的很多地方使用它。因此,我创建了一个简单的基于视图的应用程序项目,并将我的静态库包含在其中。但我不知道如何在新项目的视图中使用文本框或视图。请帮助我摆脱这个困境。

I just started learning iPhone development and i am stuck at this point. My problem is as follows:

I need a text box with autocomplete functionality several times in my project. So i created a static library which contains a viewController and in it a text box and a table(hidden, but shown when user types). I have added the text-box and table manually through coding. And just connect the view to Files Owner. The xib contains nothing else but view. Now i want to use it in my project at many places. So I created a simple view-based application project and included my static library in it. But i dont know how do i use the text box or view on my new project's view. Please help me out of this.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

树深时见影 2024-12-11 03:14:02

以下是简单的步骤:

  1. 将静态库拖放到您的项目中。
  2. 请记住在复制时选中相对于项目。
  3. 导入头文件中的类。
  4. 在目标设置/标题搜索路径中写入您的班级名称。
  5. 如果需要,添加一些标志,例如 -ObjC 和 -all_Load。
  6. 实例化必要的对象。

Here are simple steps:

  1. Drag drop the static lib to your project.
  2. Remember to check Relative to project while copying.
  3. Import classes in header files.
  4. Write name of your class in Target settings/Header Search Path.
  5. Add some flags like -ObjC and -all_Load if needed.
  6. Instantiate the necessary objects.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文