将间隔从 5 秒更改为特定时间
timer =[NSTimer scheduledTimerWithTimeInterval:5.0
target:self
selector:@selector(onTimer)
userInfo:nil
repeats:YES];
我可以将 ScheduledTimerWithTimeInterval 更改为一天中的特定时间吗?无需更改我已有的大量代码?
timer =[NSTimer scheduledTimerWithTimeInterval:5.0
target:self
selector:@selector(onTimer)
userInfo:nil
repeats:YES];
Can I change the scheduledTimerWithTimeInterval to a specific time in the day? Without changing a lot of the code I already have?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
文档是你的朋友:
The documentation is your friend: