腾讯云
开发者社区
文档
建议反馈
控制台
登录/注册
首页
学习
活动
专区
圈层
工具
MCP广场
文章/答案/技术大牛
搜索
搜索
关闭
发布
搜索
关闭
文章
问答
(507)
视频
开发者手册
清单
用户
专栏
沙龙
全部问答
原创问答
Stack Exchange问答
更多筛选
回答情况:
全部
有回答
回答已采纳
提问时间:
不限
一周内
一月内
三月内
一年内
问题标签:
未找到与 相关的标签
筛选
重置
1
回答
如何模拟
EKEventStore
typealias BoolCallback = (Bool) -> () self.store = store func requestAccess(callb
浏览 0
修改于2017-08-13
得票数 3
回答已采纳
1
回答
何时在
EKEventStore
上调用
EKEventStore
的最佳实践
应该调用事件存储的requestAccess(to:completion:)
浏览 3
提问于2016-10-01
得票数 0
回答已采纳
1
回答
KalViewController与
EKEventStore
的集成
我正在考虑在Kal日历中使用
EKEventStore
。 在Kal的例子中,我已经有了使用SQLiteDataSource的日历,但是我想不出如何将dataSource与
EKEventStore
集成。
浏览 0
修改于2013-11-08
得票数 0
回答已采纳
2
回答
EKEventStore
eventsMatchingPredicate赋值
我在存储来自
EKEventStore
查询的事件时遇到了问题。
浏览 4
提问于2012-10-12
得票数 1
1
回答
EKEventStore
导致SpringBoard崩溃
我构建了一个应用程序,可以从日历(由
EKEventStore
predicateForEventsWithStartDate:endDate:calendars:)获取ekevents,并将应用程序事件与日历同步(使用
EKEventStore
saveEvent:span:commit:error:)。我使用对
EKEventStore
的静态引用,并确保不同的进程不会同时访问
EKEventStore
。 该应用程序有时会因IOS7上的Springboard崩溃而终止。这是崩溃的回溯。_pthread_wqthread + 35
浏览 5
修改于2014-04-14
得票数 0
1
回答
EKEventStore
块ui线程
我试图向用户请求编辑日历的权限。问题是,在我请求权限之后,ui线程似乎被阻塞了一分钟以上。2014-11-09 22:09:07.236 FixGift[60052:22b] I,-[EACalendarManager getLocalEventCalendarsWithHandler:]:912014-11-09 22:09:08.795 App[60052:4607] I,__55-[EACalendarManager getLoca
浏览 2
提问于2014-11-09
得票数 1
回答已采纳
1
回答
EKEventStore
authorizationStatusForEntityType:无法识别?
我正在尝试检查我的应用程序是否被授予访问用户提醒的权限,方法是使用: EKAuthorizationStatus
浏览 0
提问于2013-05-24
得票数 0
回答已采纳
3
回答
iOS
EKEventStore
不保存日历
saveEventWithDate:(NSDate *)startDate endDate:(NSDate *)endDate { if([self checkIsDeviceVersionHigherThanRequiredVersion
浏览 0
修改于2015-02-20
得票数 1
回答已采纳
1
回答
EKEvent/
EKEventStore
和时区
我正在向日历中添加一个事件,开始日期是: 2012-03-22 22:56:30 +0000因此,显然与时区有关,但在查看了EKEvent的文档和谷歌搜索后,我并不知道如何处理这一问题。
浏览 0
提问于2012-03-23
得票数 0
2
回答
EKEventStore
中没有源
我有一个奇怪的问题,我的
EKEventStore
实例不包含任何源代码。
浏览 0
提问于2012-12-06
得票数 4
回答已采纳
1
回答
斯威夫特中的
EKEventStore
enumerateEventsMatchingPredicate
我在目标C中有下面的代码,从日历中获取事件。它的工作代码。NSMutableArray *events = [[NSMutableArray alloc]init]; usingBlock:^(EKEvent *event, BOOL *stop) { { NSUInteger fid = [events indexOfObjectPassin
浏览 0
修改于2014-08-21
得票数 1
回答已采纳
1
回答
EKEventStore
不返回任何数据。
它应该是非常直截了当的,但不知何故,我没有从
EKEventStore
获得任何数据,也没有从事件或日历等。
浏览 3
修改于2022-01-30
得票数 0
2
回答
Swift 3创建提醒
EKEventStore
class ViewController: UIViewController { var eventStore:
EKEventStore
?
浏览 32
提问于2017-03-16
得票数 0
回答已采纳
1
回答
无法在OSx中访问
EKEventStore
我尝试使用
EKEventStore
检查网页中的文档和引用。但仍然得到下面的问题,似乎我不能访问商店在OSx。我的版本是10.7.5,请帮我指出我在这方面做错了什么。NSNotification *)aNotification // Insert code here to initialize your application self.store = [[
EKEventStore
浏览 2
提问于2013-02-02
得票数 1
2
回答
EKEventStore
请求访问不起作用
EKEventStore
eventStore: var?@IBAction func bbbbbbb(sender: UIButton) { eventStore =
EKEventStore
浏览 3
提问于2015-11-25
得票数 1
1
回答
EKEventStore
eventWithIdentifier导致EKCADErrorDomain错误1010
当我尝试为
EKEventStore
对象的一个实例使用eventWithIdentifier时,它记录了以下错误: { if ([_eventStore respondsToSelector
浏览 6
提问于2014-10-30
得票数 1
2
回答
EKEventStore
获取事件返回空列表
如果我以这种方式查询
EKEventstore
,我将得到先前添加的事件。如果我想将开始日期(或多天或数年)追溯到过去,那么棘手的部分就开始了。然后,突然之间,没有任何事件被退回。
浏览 4
修改于2017-05-23
得票数 13
2
回答
使用EventKit向
EKEventStore
添加新日历
如何在iOS 5中将日历(而不是事件)添加到
EKEventStore
?
浏览 2
提问于2011-10-30
得票数 3
回答已采纳
1
回答
predicateForEventsWithStartDate:endDate:calendars:
EKEventStore
不工作
-01-01和2013-01-18,这些EKEvent都已存储,我可以在iCloud上的iOS日历中看到它,然后我希望检索2012-01-01和2013-01-18范围内的所有EKEvent,并使用此
EKEventStore
NSDate dateWithTimeIntervalSinceReferenceDate:time2];
EKEventStore
*eventStore = [[
EKEventStore
alloc] init]; NSP
浏览 1
修改于2012-12-12
得票数 1
1
回答
在EKCalendar中创建
EKEventStore
- Swift
当我的应用程序第一次运行时,我正在尝试在
EKEventStore
中创建一个日历。
浏览 1
修改于2015-03-26
得票数 2
回答已采纳
第 2 页
第 3 页
第 4 页
第 5 页
第 6 页
第 7 页
第 8 页
第 9 页
第 10 页
第 11 页
点击加载更多
领券