作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
事件详细信息应该存储在哪里?如何为我不知道的特定事件发出警报。请帮助提供代码或提供该类型示例的链接。提前致谢。
最佳答案
您可以使用本地通知,这里是一些用于安排通知的示例代码。
- (void)scheduleNotification {
UILocalNotification *notif = [[UILocalNotification alloc] init];
//notification for 3 days
notif.fireDate = [NSDate dateWithTimeInterval:60.0f*60.0f*24.0f*3.0f sinceDate:[NSDate date]];
notif.timeZone = [NSTimeZone defaultTimeZone];
notif.alertBody = @"We've missed you!";
notif.alertAction = @"PLAY";
notif.soundName = UILocalNotificationDefaultSoundName;
notif.applicationIconBadgeNumber = 1;
[[UIApplication sharedApplication] scheduleLocalNotification:notif];
}
关于iphone - 如何在特定日期举办事件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11406754/
我有以下问题。比如说,用户可以点击一些 UI 组件。每次点击都需要大量计算并显着更改其他 UI 组件,因此成本非常高。点击顺序并不重要。 所以在一段时间内保持事件会很酷,只有在这段时间内没有其他事件时
我在 Windows Phone Marketplace 上发布了一个应用程序,我正在尝试将其移植到 Win 8。我正在使用 Windows 8 Release Preview 和 Visual St
我是一名优秀的程序员,十分优秀!