it would be perfect that the webview cleans the previous cookies stored in the storage if not I need to create each time the webview to clean them.
NSSet *websiteDataTypes = [NSSet setWithArray:@[WKWebsiteDataTypeCookies]];
NSDate *dateFrom = [NSDate dateWithTimeIntervalSince1970:0];
[_wkWebView.configuration.websiteDataStore removeDataOfTypes:websiteDataTypes
modifiedSince:dateFrom
completionHandler:^{}];
it would be perfect that the webview cleans the previous cookies stored in the storage if not I need to create each time the webview to clean them.