ABContact 的替代地址簿 API 帮助程序

发布于 2025-01-05 03:25:01 字数 340 浏览 2 评论 0原文

我有一个 Iphone 应用程序,它使用了最初由 Erica Sedun 编写并在 github 上发布 的优秀 ABContactHelper 库,

现在使用XCode4 的发布和引用计数支持,会导致很多错误。我查看了 github 上的分支,但似乎没有一个更新到带有引用计数的 XCode 4。我正在尝试自己更新它,但它很慢并且容易出错。我尝试过自动重构支持,但无济于事。

有谁知道有替代的 AddressBook 包装器,它提供了与 iPhone AddressBook 交互的简单界面?

I have an Iphone app that used the excellent ABContactHelper library origionally written for by Erica Sedun and released on github

Now with the release of XCode4 and Reference Counting support, it causes lots of errors. I have looked at the forks on github, but none seem to have updated to XCode 4 with Reference Counting. I am trying to update it myself but its slow and error prone. I have tried the automatic refactoring support, but to no avail.

Does anyone know of an alternative AddressBook wrapper that provides a simple interface for interacting with the IPhone AddressBook?

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

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

发布评论

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

评论(2

触ぅ动初心 2025-01-12 03:25:01

在启用 ARC 的项目中,您可以通过为这些文件设置 -fno-objc-arc 编译器标志来选择性地禁用 AddressBook 包装文件的 ARC。

在 Targets -> 添加编译器标志构建阶段 ->编译源。双击“编译器标志”下行的右列,输入编译器标志。

In your ARC-enabled project, you can selectively disable ARC for the AddressBook wrapper files by setting the -fno-objc-arc compiler flag for those files.

Add compiler flags in Targets -> Build Phases -> Compile Sources. Enter the compiler flag by double-clicking on the right column of the row under Compiler Flags.

绮烟 2025-01-12 03:25:01

处理 ARC/非 ARC 问题是一件很痛苦的事情,我发现让 CocoaPods 为我处理这些问题是正确的方法。只需将 ABContactHelper 列为 pod 依赖项即可。许多最受欢迎的库已经存在,但如果您的库还没有,添加它也很容易。

http://cocoapods.org

Dealing with ARC/non-ARC issues is a pain in the butt, and I've found that letting CocoaPods handle these problems for me is the way to go. Simply list ABContactHelper as a pod dependency and you're done. Many of the most popular libraries are already there, but if yours isn't, it's really easy to add it.

http://cocoapods.org

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