【代碼筆記】iOS-密碼在進入後台1小時後重新設定,ios-後台

來源:互聯網
上載者:User

【代碼筆記】iOS-密碼在進入後台1小時後重新設定,ios-後台

代碼:

AppDelegate.m

#import "AppDelegate.h"#import "ViewController.h"@interface AppDelegate ()@end@implementation AppDelegate- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {    // Override point for customization after application launch.    //當程式在後台停留超過60分的時候,密碼會置為空白。        //1小時後將密碼重新設定    [self timeInterval];            return YES;}- (void)applicationWillResignActive:(UIApplication *)application {    // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state.    // Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game.}- (void)applicationDidEnterBackground:(UIApplication *)application {    //計算時間差    [self backTime];}- (void)applicationWillEnterForeground:(UIApplication *)application {    //1小時後將密碼重新設定    [self timeInterval];}- (void)applicationDidBecomeActive:(UIApplication *)application {    // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface.}- (void)applicationWillTerminate:(UIApplication *)application {    //計算時間差    [self backTime];}#pragma -mark -密碼儲存1個小時//計算時間差- (void)timeInterval{    NSLog(@"---timeInterval----");    //設定一個字串的時間    NSString * dateBackString = [[NSUserDefaults standardUserDefaults] objectForKey:@"backGroundTime"];        NSLog(@"---dateBackString---%@",dateBackString);        if ([dateBackString isEqual:[NSNull null]] || dateBackString==nil || dateBackString.length ==0) {    }    else    {        NSInteger time = [self getTimeInterval:dateBackString];        if (time >= 60) {            //1小時後將密碼清空            NSUserDefaults *userInfoDefault=[NSUserDefaults standardUserDefaults];            [userInfoDefault setObject:@"" forKey:@"login-password"];            [userInfoDefault synchronize];        }    }}//1小時後將密碼重新設定- (void)backTime{        NSLog(@"----backTime-----");    //計算上報時間差    NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];    [dateFormatter setDateFormat:@"yyyy-MM-dd HH:mm:ss"];    //結束時間    NSDate * currentdate = [NSDate date];    NSString * currentDateString = [dateFormatter stringFromDate: currentdate];        NSUserDefaults *userDefaults = [NSUserDefaults standardUserDefaults];    [userDefaults setObject:currentDateString forKey:@"backGroundTime"];    [userDefaults synchronize];}//計算時間差- (NSInteger)getTimeInterval:(NSString *)sendDateString{    NSInteger minute;        if (sendDateString ==nil||sendDateString.length==0) {            }    else    {                NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];        [dateFormatter setDateFormat:@"yyyy-MM-dd HH:mm:ss"];        //結束時間        NSDate * currentdate = [NSDate date];        NSDate * currentDate = [dateFormatter dateFromString:[dateFormatter stringFromDate: currentdate]];        NSDate * endDate = [dateFormatter dateFromString:sendDateString];        //得到時間差        NSTimeInterval time = [currentDate timeIntervalSinceDate:endDate];                //        int days = ((int)time)/(3600*24);        //        int hours = ((int)time)%(3600*24)/3600;        //        minute = ((NSInteger)time)%(3600*24)/3600/60;        minute = (NSInteger)time;    }    return minute;}@end

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.