How to clear cache of app in objective C?

2020-08-01 07:14发布

I'm building an iOS app in which i have implemented Fabric and using Digits for login.When login is successful session remains open.

I'm facing an issue i want to clear the app cache to reset the session so user can login again with a new phone number.But it is not happening.

The code i'm using to clear the app cache:

- (void)viewDidLoad {

    [super viewDidLoad];

    [[NSURLCache sharedURLCache] removeAllCachedResponses];

}

Help is appreciated!

2条回答
萌系小妹纸
2楼-- · 2020-08-01 08:08

Rather than go low-level and mess with NSURLCache, you can use your library's own high-level mechanics:

[[Digits sharedInstance] logOut]
查看更多
倾城 Initia
3楼-- · 2020-08-01 08:08

Since some crucial parts of your problem is missing (like what authentication method you use), I'll just post a handy snippet here that MIGHT resolve your problem.

BUT BEWARE: This WILL remove all cookies and all cached responses along with all NSURLCredentials (as long as they are not persisted).

- (void)removeAllStoredCredentials
{
    // Delete any cached URLrequests!
    NSURLCache *sharedCache = [NSURLCache sharedURLCache];
    [sharedCache removeAllCachedResponses];

    // Also delete all stored cookies!
    NSHTTPCookieStorage *cookieStorage = [NSHTTPCookieStorage sharedHTTPCookieStorage];
    NSArray *cookies = [cookieStorage cookies];
    id cookie;
    for (cookie in cookies) {
        [cookieStorage deleteCookie:cookie];
    }

    NSDictionary *credentialsDict = [[NSURLCredentialStorage sharedCredentialStorage] allCredentials];
    if ([credentialsDict count] > 0) {
        // the credentialsDict has NSURLProtectionSpace objs as keys and dicts of userName => NSURLCredential
        NSEnumerator *protectionSpaceEnumerator = [credentialsDict keyEnumerator];
        id urlProtectionSpace;
        // iterate over all NSURLProtectionSpaces
        while (urlProtectionSpace = [protectionSpaceEnumerator nextObject]) {
            NSEnumerator *userNameEnumerator = [[credentialsDict objectForKey:urlProtectionSpace] keyEnumerator];
            id userName;
            // iterate over all usernames for this protectionspace, which are the keys for the actual NSURLCredentials
            while (userName = [userNameEnumerator nextObject]) {
                NSURLCredential *cred = [[credentialsDict objectForKey:urlProtectionSpace] objectForKey:userName];
                //NSLog(@"credentials to be removed: %@", cred);
                [[NSURLCredentialStorage sharedCredentialStorage] removeCredential:cred forProtectionSpace:urlProtectionSpace];
            }
        }
    } 
}
查看更多
登录 后发表回答