在iOS中的固定时间后注销应用程序

时间:2014-10-05 01:47:33

标签: ios objective-c iphone core-data mobile

大家好我是iOS编程的新手请帮帮我.....在此先感谢.. 我想在我的应用程序中添加注销功能,以便用户在登录时间(2小时)的固定时间间隔后退出。 请建议我实现此功能的方法

2 个答案:

答案 0 :(得分:0)

查看此问题的接受答案。它应该回答你的问题。

iPhone: Detecting user inactivity/idle time since last screen touch

编辑:

您可以使用NSTimer class

This question will help you with NSTimer。看起来你正在寻找一个非常基本的实现,你通常会使用

NSTimer scheduledTimerWithTimeInterval...

方法

答案 1 :(得分:0)

您可以使用NSTimer

实现此功能
[NSTimer scheduledTimerWithTimeInterval:@"time" target:self selector:@selector(targetMethod:) userInfo:nil repeats:NO];

-(void)targetMethod
 {
      //enter code here`
 }