使用NSTimer显示消息

时间:2017-11-17 09:40:22

标签: ios objective-c cocoa-touch nstimer

NSTimer scheduledTimerWithTimeInterval:2.0
                                target:self
                              selector:@selector(targetMethod:)
                              userInfo:nil
                               repeats:NO];

如何使用5分钟后显示“你的时间结束”的消息?

1 个答案:

答案 0 :(得分:-1)

在下面的代码中,相反5.0你可以把你的时间放在第二个

[NSTimer scheduledTimerWithTimeInterval:5.0 target:self selector:@selector(targetMethod) userInfo:nil repeats:NO];

-(void)targetMethod {
     //enter code here to execute...
}