编辑:我必须删除所有域的localstorage! I.E.注入Js将无法正常工作.
class func clearWebVIEwStorage() { let searchPath = NSSearchPathForDirectorIEsInDomains(NSSearchPathDirectory.CachesDirectory,NSSearchPathDomainMask.UserDomainMask,true).last as! String let files = NSfileManager.defaultManager().contentsOfDirectoryAtPath(searchPath,error:nil) as! [String] for file in files { if file.pathExtension == "localstorage" { NSLog("Removing localstorage file: %@",searchPath.stringByAppendingPathComponent(file)) NSfileManager.defaultManager().removeItemAtPath(searchPath.stringByAppendingPathComponent(file),error: nil) } } var path = searchPath.stringByAppendingPathComponent("Backups").stringByAppendingPathComponent("localstorage.appdata.db") NSLog("Removing localstorage backup %@",path) NSfileManager.defaultManager().removeItemAtPath(path,error: nil)}解决方法 我现在发现问题中的代码确实可以在电话上工作,有时候在Xcode iOS模拟器中.我很确定它与每次重建时创建新app目录的事实有关,但localstorage文件“留在后面”.我已经创建了一个新问题来回答这个问题,我将其标记为已解决,因为它不是代码问题: iOS simulator only uses the first app folder for localStorage files but creates a new app folder for everything else 总结
以上是内存溢出为你收集整理的在iOS中如何清除UIWebViews的localStorage全部内容,希望文章能够帮你解决在iOS中如何清除UIWebViews的localStorage所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)