是否可以在指定时间执行@selector?
**我不需要 ID才能在应用关闭时运行它,只有当它处于有效状态时才会运行。
答案 0 :(得分:2)
您要找的是NSTimer's scheduledTimerWithTimeInterval:target:selector:userInfo:repeats
method,我已经为您链接了Apple文档。
同时,如果您想设置 reeeeally 特定时间&日期,您可以重置NSTimer开火日期&时间使用NSTimer's setFireDate方法(您可以将日期和时间传递给已创建的计时器实例)。