iPhone 中每 60 秒调用一个方法
我创建了一个 GKSession,当它的对象被创建时,它开始搜索设备的可用性,因为
- (void)session:(GKSession *)session peer:(NSString *)peerID didChangeState:(GKPeerConnectionState)state {
我想每 60 秒后调用这个方法,我应该做什么?
I have created an GKSession and as its object is created, it starts search for availability of devices, as
- (void)session:(GKSession *)session peer:(NSString *)peerID didChangeState:(GKPeerConnectionState)state {
I want to call this method after each 60 seconds, what should I do?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
使用 NSTimer
每 60.0 秒后,iOS 将调用以下函数
Use
NSTimer
After each 60.0 second , iOS will call the below function
一旦你将 NSTimer 设置为 ScheduleWithTimeInterval,它就会立即调用它。
您可以使用
Once you set NSTimer to scheduleWithTimeInterval it calls it immediately.
You can use
使用以下代码:
Use the following code:
斯威夫特3:
Swift 3:
您可以使用调度方法...
您可以使用此调用上面的函数...
You can use schedular method...
you can call above function by using this...
斯威夫特5.0
Swift 5.0