iPhone中的调度任务

发布于 2024-09-12 03:28:52 字数 234 浏览 3 评论 0 原文

我正在开发一个iPhone应用程序,其中有一个部分,用户可以在其中声明他的任务及其及时发生的情况。 即递归任务。该任务在到期时只会显示一个警报框,不会显示任何其他内容。 它是一种提醒,而不是真正的任务调度程序。

使用 Objective-C 实现这一目标的最佳方法或技术是什么,特别是在 iPhone 上。 我也在考虑与 iPhone 日历进行某种集成,如果实施起来不是太耗时的话。让应用程序创建自己的日历会很好吗?

谢谢

I am developing an iphone app, there's a section in it where user can declare his task and its occurence in time.
I.e. recursive task. The task will only show an alert box and nothing else when its due time.
Its a kind of reminder, rather than a real task scheduler.

What's the best way or technology to achieve that with objective-c, particularly on iphone.
I was also thinking, if not too time consuming to implement, about some kind of integration with iphone calendar. Would it be nice to have the app create its own calendar.

thanks

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

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

发布评论

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

评论(2

忘你却要生生世世 2024-09-19 03:28:52

我认为这是使用的好方法之一。您可以定义对象及其选择器,以便在一段时间后,计时器将调用类似 [targer PerformSelector:aSelector];

+ (NSTimer *)scheduledTimerWithTimeInterval:(NSTimeInterval)seconds target:(id)target selector:(SEL)aSelector userInfo:(id)userInfo repeats:(BOOL)repeats

更多详情

I think this is one of the good methods to use. You can define the object and its selector so that after a period of time, the timer will call something like [targer performSelector:aSelector];

+ (NSTimer *)scheduledTimerWithTimeInterval:(NSTimeInterval)seconds target:(id)target selector:(SEL)aSelector userInfo:(id)userInfo repeats:(BOOL)repeats

More Details here

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