iOS 笔记总结一

来源:互联网 发布:vc编程软件 编辑:程序博客网 时间:2024/06/01 09:09

1/ 网页缓存

//清除cookiesNSHTTPCookie *cookie;NSHTTPCookieStorage *storage = [NSHTTPCookieStorage sharedHTTPCookieStorage];for (cookie in [storage cookies]) {    [storage deleteCookie:cookie];}

UIWebView清除缓存:

//清除UIWebView的缓存
[[NSURLCachesharedURLCache] removeAllCachedResponses];

NSURLCache * cache = [NSURLCache sharedURLCache];
[cache removeAllCachedResponses];
[cache setDiskCapacity:0];
[cache setMemoryCapacity:0];

2/ UILabel 字体大小自适应
lbl.adjustsFontSizeToFitWidth = YES;

0 0
原创粉丝点击