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.
我有一个带有手动添加单元格的列表视图的基本应用程序。
我将如何做到这一点,以便在单击单元格时将特定日期添加到 iphone 日历中?
信息 - 使用最新的 xcode 和故事板
UITableViewDelegate您应该有一个代表为您列出对该协议的响应的列表视图。通过tableView:didSelectRowAtIndexPath:您可以点击您的单元格。然后,使用EKEventStore类访问您的日历。您的约会由EKEvent.
UITableViewDelegate
tableView:didSelectRowAtIndexPath:
EKEventStore
EKEvent
编辑
有关更多信息,您应该查阅日历和提醒简介、事件工具包框架参考和表格视图编程指南。
这是一般方法,您应该提供更详细的描述,您的问题是什么以及您尝试了什么。SO 没有人会为您编写程序。