如何从现有的 iPhone 项目中制作可重用的组件/类?

发布于 2024-08-27 04:27:07 字数 779 浏览 10 评论 0原文

我正处于新的学习曲线的门口。

我想从我已完成的 iphone 项目中制作可重用的组件/类,并提到以下问题,如果有人想将我重定向到一些有用的可重用组件或类,这对我很有用。

并且还告诉我哪种是制作可重用类或组件的最佳方法?

网站上是否有可重复使用的 iPhone 组件库网页?

https://stackoverflow. com/questions/640805/open-source-iphone-components-reusable-views-controllers-buttons-table-cells

​​https://stackoverflow.com/questions/200850/are-there-any-open-source-iphone-applications-around

谢谢。

I on the doorstep of a new learning curve .

I want to make reusable components / classes from my completed iphone project and with the mention of the following questions , If anyone want to redirect me to some useful reusable components or classes it will be useful to me .

And Also tell me which is the best way to make reusable classes or components ?

Is there a gallery of reusable iPhone components on the web?

https://stackoverflow.com/questions/640805/open-source-iphone-components-reusable-views-controllers-buttons-table-cells

https://stackoverflow.com/questions/200850/are-there-any-open-source-iphone-applications-around

Thanks .

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

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

发布评论

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

评论(1

世俗缘 2024-09-03 04:27:07

要在 iPhone 上创建可重用的库,您应该创建一个“Cocoa Touch Static Library”类型的新目标。将构成库的源文件添加到这个新目标,并将它们从应用程序的目标中删除。现在将新目标添加为每个应用程序目标的依赖项(按住 Ctrl 键单击应用程序目标,获取信息,添加直接依赖项),并将库产品(称为 yourtargetname.a)添加到“链接”应用程序的“库和框架”阶段。

To make a reusable library on the iPhone, you should create a new target of type "Cocoa Touch Static Library". Add the source files that will go to make up the library to this new target, and remove them from your application(s)'s target(s). Now add the new target as a dependency of each application target (Ctrl-click the app target, get info, add direct dependency) and also add the library product (called yourtargetname.a) to the "link libraries and frameworks" phase of the app.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文