Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当用户单击按钮时,我需要将日历事件添加到用户的日历中。
这在模拟器中有效,但是当我尝试部署到运行 iOS 4.01 的 3GS 时,XCODE 会抛出 1000 多个错误!
有任何想法吗?
谢谢!杰森
我想我解决了这个问题。
在“架构”下的“项目”>“编辑项目设置”中,我将 Base SDK 设置为 iPhone 3.2。当我将其更改为 iPhone 4.0 时,它编译并部署到运行 iOS 4 的 iPhone 3GS 上。
我认为这是因为 Event Kit 是在 iOS 4 中添加的,在早期版本中不可用。
我打算针对早期的设备。所以,我想它又回到了绘图板上,想出一个解决方案来向用户的日历添加提醒/事件。
杰森