iphone authentication required iphone虚电怎么解决决

UIWebView处理authentication方法 - 博客频道 - CSDN.NET
Care iOS技术团队
百度iOS问吧:/f?ie=utf-8&kw=ios问
分类:iPhone DeviPhone Tutorial
在用UIWebView的时候,如果访问需要http authentication,那么网页将无法显示。原因是UIWebView不会检测到网络设置,如代理设置,需要http认证等。
首先我们来说一下网络在代理环境中的authentication,如何让UIWebView正常工作。
由于UIWebView不会自动检测代理设置,所以解决方法是在UIWebViewDelegate方法中用NSURLConnect去连接到网络中任一网站,在NSURLConnectionDelegate接口中处理代理设置,在这儿需要代理用户名与密码。步骤如下:
1. 用NSURLConnect连接任一网站
NSURLRequest *req = [NSURLRequest requestWithURL:url
cachePolicy:NSURLRequestReloadIgnoringCacheData
timeoutInterval:20.0];
[[NSURLConnection alloc] initWithRequest:req delegate:self];
2.&connection:didReceiveAuthenticationChallenge方法中处理代理设置
- (void)connection:(NSURLConnection *)connection didReceiveAuthenticationChallenge:(NSURLAuthenticationChallenge *)
//如果是http代理,其它代理方法类似
if ([challenge.protectionSpace.authenticationMethod isEqualToString:NSURLProtectionSpaceHTTPProxy])
if ([challenge previousFailureCount] == 0) {
/* SET YOUR credentials, i'm just hard coding them in, tweak as necessary */
[[challenge sender] useCredential:[NSURLCredential credentialWithUser:AUTH_USERNAME password:AUTH_PASSWORD persistence:NSURLCredentialPersistencePermanent] forAuthenticationChallenge:challenge];
[[challenge sender] cancelAuthenticationChallenge:challenge];
这下你的代理设置就保存了,因为用的是NSURLCredentialPersistencePermanent,以后在用UIWebView的时候就可以正常显示内容了。
更为完美的解决方案是NSURLProtocol参看:
还有一种方法就是用ASIHttpRequest,开启
request.shouldPresentProxyAuthenticationDialog = YES;
[request setUseKeychainPersistence:YES];
这样detect到代理的时候就会弹出输入框加要用户输入用户名与密码,且保存在keychain里,下次运行不需要再输 。
接着我们来说一下如果网站需要http basic authentication,如何让UIWebView正常工作。
经过google我发现了下面这种方法:
需要http认证,其实就是在每次请求的时候需要在http头加入用户名与密码,保证这次请求的合法性。最开始的时候,我也是采用上面的方法,就是每次UIWebView开始请求的时候先用NSURLConnect去连接这个请求,在其&connection:didReceiveAuthenticationChallenge方法中处理用户名与密码。这种处理方法会两次访问同一个url且速度很慢。然后我就用了新的方法,即在NSURLRequest中加入Authorization字段,代码如下:
NSURL *url = [NSURL URLWithString:yourUrlStr];
NSMutableURLRequest *req = [NSMutableURLRequest requestWithURL:url];
NSString *authString = [[[NSString stringWithFormat:@&%@:%@&, username, password] dataUsingEncoding:NSUTF8StringEncoding] base64Encoding];
authString = [NSString stringWithFormat: @&Basic %@&, authString];
[req setValue:authString forHTTPHeaderField:@&Authorization&];
其中username与password就是需要的用户名与密码。
网上有人写了一个NSMutableURLRequest的category,用起来也方便,随便也分享给大家。
在这儿我们得注意了:在头中加Authorization字段,我在iOS5中测试了, 通过这种方式request的UIWebView是不能成功显示网页的。没有iOS3与4测试,我猜测是以前的OS可以用这种方法。但是如果用NSURLConnection去request,这种方法是可行的,能返回正确的html,但是image这些不能显示。UIWebView是基于NSURL
loading system的,理论上应是可行的,但是测试结果是不行。
即然这种方法不适用,那就得另寻方法。经过在网上找资料发现,如果把用户名与密码写在url里,那么就可以在UIWebView中正常访问。代码如下:
NSString *URLString = [[NSString stringWithFormat:@&http://%@:%@@%@&, @&username&, @&password&, [urlStr substringFromIndex:7]] stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
NSURL *url = [NSURL URLWithString:URLString];
NSURLRequest *req = [NSURLRequest requestWithURL:url
cachePolicy:NSURLRequestReloadIgnoringCacheData
timeoutInterval:20.0];
[webView loadRequest:req];
我在iPad1上测试可行,iPhone4上行,iPad与iPhone模拟器上都行,在iPad2上测试则不行,OS都是iOS5.
接在我在研究能通用方法,就是NSURL loading system。还在研究当中,有结果了再公布。
有了上面两种方法介绍,那么在有代理网络环境下去访问需要用户名与密码认识的网站,就可以完全正常了。
也是一个不错的选择,可以同时处理proxy与Http Basic Authentication。
排名:第353名
(4)(6)(2)(2)(28)(14)(186)(114)(2)(18)(17)(4)(15)(8)(45)(19)(3)(1)(6)(15)(3)(3)(3)(1)(3)(2)(3)八月工资献给了中秋,九月工资献给了国庆,十月工资献给了双十一。
用着白色的 EarPods,可手中的 iPhone 却是银色或者黑色的,强迫症心里有点不舒服吗?...
看你们以后还敢不敢再叫嚣“电子竞技没有考试”!游戏都玩不及格,好好学习才是正途,...
不知道圣诞季结束之后,这些厂商还能不能享受iPhone 7持续发热的温度呢?
目前网上流传着不少说法,具体方案还是要等苹果官宣啊。
将直营店开遍大中华,不知道能不能止住苹果营收下滑的颓势?
往年都需要春节加班的,不知道明年还要不要。
尽管带Touch Bar的MBP尚未发货,但配件已经到货了。
这款游戏更类似于《是男人就下100层》这种游戏,是的,就是比谁能够往更深的地方走去...
在测试阶段就已经广受好评的写作类应用《Bear》终于在11月3日将它的正式版本送上了 Ap...
此前本站已经报道了一款名为《JanKen Battle Arena》(猜拳竞技场)的游戏即将登场的...
近日,游戏开发商Meizi Games在苹果商店当中测试上架其竞速新作《建造竞速(Built for...
这款跳跃游戏并非传统意义上的纯跳跃,跳跃形式上做出了一些区别,而楼层以办公环境为...
《节奏英雄》以一种相对欢乐的形式将音游与跑酷两种不同形式的游戏结合在一起。
除了欧美游戏之外,日本也是一个游戏市场当中非常重要的一个组成部分,尤其是对中国玩...
尽管带Touch Bar的MBP尚未发货,但配件已经到货了。
说到KEF,也许不少传统HIFI发烧友都会对这家三大同轴专利拥有者之一的老牌英国厂商有...
我们在这里要强调一下,苹果的 USB-C 配件降价可是限时的。
鉴于Lightning接口每年都能为苹果换来数亿美元的授权费,因此为MacBook Pro换装USB-C...
用一个小配件就让 12 英寸 New MacBook 和全新的 MacBook Pro 重新获得 MagSafe 特性...
如果你拥有一部 iPhone 7 并且经常使用传统的 3.5mm 耳机的话,你应该知道需要时刻携...
不知道是不是因为太超前,外界的吐槽似乎有点让苹果措手不及。
参与活动的两款耳机分别是PowerBeats 2无线入耳式耳机和Beats solo 2无线头戴式耳机。
~技术贴~删除「系统自带App」「设置、通用设置、声音设置里碍眼的选项」。送给那些有洁癖的朋友,不喜勿喷。
注册时间 最后登录
在线时间1244 小时 UID
主题帖子人气
青苹果, 积分 120, 距离下一级还需 80 积分
强烈推荐 印第安老猫的帖子,删除的比我的彻底。
/read-htm-tid-6020028.html
删除「设置–- 隐私」里的Twitter、Facebook、新浪微博的选项设置
对应需要修改的文件:Privacy.plist
所在路径:/Applications/Preferences.app/
关键字:Twitter、FacebookSettings、Weibo
删除的代码:
& && &&dict&
& && && &&&&key&cell&/key&
& && && &&&&string&PSLinkCell&/string&
& && && &&&&key&detail&/key&
& && && &&&&string&TCCAccessController&/string&
& && && &&&&key&icon&/key&
& && && &&&&string&Twitter&/string&
& && && &&&&key&label&/key&
& && && &&&&string&TWITTER&/string&
& && &&/dict&
& && &&dict&
& && && &&&&key&cell&/key&
& && && &&&&string&PSLinkCell&/string&
& && && &&&&key&detail&/key&
& && && &&&&string&TCCAccessController&/string&
& && && &&&&key&icon&/key&
& && && &&&&string&FacebookSettings&/string&
& && && &&&&key&label&/key&
& && && &&&&string&FACEBOOK&/string&
& && &&/dict&
& && &&dict&
& && && &&&&key&cell&/key&
& && && &&&&string&PSLinkCell&/string&
& && && &&&&key&detail&/key&
& && && &&&&string&TCCAccessController&/string&
& && && &&&&key&icon&/key&
& && && &&&&string&Weibo&/string&
& && && &&&&key&label&/key&
& && && && &&string&SINAWEIBO&/string&
& && & &/dict&
(1 KB, 下载次数: 53)
20:15 上传
点击文件名下载附件
修改后的文件:
(1 KB, 下载次数: 654)
20:15 上传
点击文件名下载附件
友情提醒:注意备份
实验手机:iPhone4S
实验系统:IOS6.1
前提:越狱
所需软件:类似iTools的能够浏览手机文件系统的软件均可、plist Editor
(1.99 MB, 下载次数: 126)
05:17 上传
点击文件名下载附件
1、&&修改设置菜单(注意,删除之前请先进入相应选项进行相应的设置,以免删除后无法进行相应的设置)
删除选项:「邮件、通讯录、日历」、备忘录、提醒事项、 信息 、 地图 、 音乐 、 视频 、Twitter、Facebook、新浪微博、Nike+iPod(根据自己喜好选择删除的选项)
对应需要修改的文件:Settings.plist
所在路径:/Applications/Preferences.app/
方法:以删除Nike+iPod为例
1、&&导出Settings.plist到桌面
2、&&用plist Editor打开
3、&&编辑→寻找关键字VictoriaSettings
4、&&将VictoriaSettings所在的那组代码全部删除,代码以&dict&开头以&/dict&结束
5、&&将原来的Settings.plist删除
6、&&复制修改后的Settings.plist到/Applications/Preferences.app/
删除的代码:
& && &&dict&
& && && &&&&key&bundle&/key&
& && && &&&&string&VictoriaSettings&/string&
& && && &&&&key&cell&/key&
& && && &&&&string&PSLinkCell&/string&
& && && &&&&key&iconCache&/key&
& && && &&&&string&Victoria&/string&
& && && &&&&key&id&/key&
& && && &&&&string&victoria&/string&
& && && &&&&key&isController&/key&
& && && &&&&true/&
& && && &&&&key&label&/key&
& && && &&&&string&NIKE_PLUS_IPOD&/string&
& && && &&&&key&requiredCapabilities&/key&
& && && &&&&array&
& && && && && &&&&string&nike-ipod&/string&
& && && &&&&/array&
& && &&/dict&
注意:删除Nike+iPod后,最下面会多出一个分隔栏使得下面空白处变宽。只需编辑→寻找关键字PSGroupCell,定位到最后一个PSGroupCell,将其所在的那组代码删除即可。
删除的代码:
& && &&dict&
& && && &&&&key&cell&/key&
& && && &&&&string&PSGroupCell&/string&
& && &&/dict&
其它选项关键字:
「邮件、通讯录、日历」--AccountSettingsUI
备忘录 – NotesSettings
提醒事项 –RemindersSettings
信息 – SMSPreferences
地图 – MapsSettings
音乐 – MusicSettings
Twitter – TwitterSettings
Facebook – FacebookSettings
新浪微博 – WeiboSettings
Nike+iPod -- VictoriaSettings或者nike-ipod
(3 KB, 下载次数: 74)
05:12 上传
点击文件名下载附件
修改后的文件:
(2 KB, 下载次数: 192)
05:12 上传
点击文件名下载附件
2、&&修改声音菜单(注意删除之前请先将对应的声音设置选择无、振动选择无)
删除选项:收到新语音留言、收到新邮件、发送邮件、推文、Facebook贴文、日历提醒、提醒事项的提醒选项(根据自己喜好选择删除的选项)
对应需要修改的文件:Sounds.plist
所在路径:/Applications/Preferences.app/
方法:以删除收到新语音留言 为例
1、&&导出Sounds.plist 到桌面
2、&&用plist Editor打开
3、&&编辑→寻找关键字voicemail-sound-identifier
4、&&将voicemail-sound-identifier所在的那组代码全部删除,代码以&dict&开头以&/dict&结束
5、&&将原来的Sounds.plist删除
6、&&复制修改后的Sounds.plist到/Applications/Preferences.app/
删除的代码:
& && &&dict&
& && && &&&&key&cell&/key&
& && && &&&&string&PSLinkListCell&/string&
& && && &&&&key&defaultToneSelector&/key&
& && && &&&&string&defaultNewVoicemailToneIdentifier&/string&
& && && &&&&key&defaults&/key&
& && && &&&&string&com.apple.springboard&/string&
& && && &&&&key&detail&/key&
& && && &&&&string&RingtoneController&/string&
& && && &&&&key&get&/key&
& && && &&&&string&tone:&/string&
& && && &&&&key&key&/key&
& && && &&&&string&voicemail-sound-identifier&/string&
& && && &&&&key&label&/key&
& && && &&&&string&Voicemail&/string&
& && && &&&&key&pane&/key&
& && && &&&&string&TonePane&/string&
& && && &&&&key&requiredCapabilities&/key&
& && && &&&&array&
& && && && && &&&&string&telephony&/string&
& && && &&&&/array&
& && && &&&&key&vibrationContext&/key&
& && && &&&&string&TLToneContextNewVoicemail&/string&
& && &&/dict&
其它选项关键字:
收到新语音留言 --&&voicemail-sound-identifier
收到新邮件 --&&newmail-sound-identifier
发送邮件 --&&sentmail-sound-identifier
推文 --&&senttweet-sound-identifier
Facebook贴文 --&&facebookpost-sound-identifier
日历提醒 --&&calendaralert-sound-identifier
提醒事项的提醒选项 --&&reminderalert-sound-identifier
(2 KB, 下载次数: 35)
05:12 上传
点击文件名下载附件
修改后的文件:
(2 KB, 下载次数: 183)
05:12 上传
点击文件名下载附件
3、&&通用菜单(注意:删除之前请先进入相应选项进行相应的设置,以免删除后无法进行相应的设置)
删除选项:软件更新、Spotlight搜索、辅助功能、还原(根据自己喜好选择删除的选项)
对应需要修改的文件:General.plist
所在路径:/Applications/Preferences.app/
方法:以删除软件更新为例
1、&&导出General.plist到桌面
2、&&用plist Editor打开
3、&&编辑→寻找关键字SOFTWARE_UPDATE
4、&&将SOFTWARE_UPDATE所在的那组代码全部删除,代码以&dict&开头以&/dict&结束
5、&&将原来的General.plist删除
6、&&复制修改后的General.plist到/Applications/Preferences.app/
删除的代码:
& && &&dict&
& && && &&&&key&cell&/key&
& && && &&&&string&PSLinkCell&/string&
& && && &&&&key&cellClass&/key&
& && && &&&&string&PSBadgedTableCell&/string&
& && && &&&&key&detail&/key&
& && && &&&&string&SoftwareUpdatePrefController&/string&
& && && &&&&key&id&/key&
& && && &&&&string&SOFTWARE_UPDATE_LINK&/string&
& && && &&&&key&label&/key&
& && && &&&&string&SOFTWARE_UPDATE&/string&
& && &&/dict&
注意:删除Spotlight 搜索、还原选项后会多出一个分隔栏,要分别删除,不然影响美观
Spotlight 搜索产生的分隔栏,编辑→寻找关键字TV_OUT ,TV_OUT这组代码的下面就是这个分隔栏的代码,删掉即可,代码如下:
& && &&dict&
& && && &&&&key&cell&/key&
& && && &&&&string&PSGroupCell&/string&
& && &&/dict&
还原选项产生的分隔栏,编辑→寻找关键字PSGroupCell,定位到最后一个PSGroupCell,将其所在的那组代码删除即可,代码如下
& && &&dict&
& && && &&&&key&cell&/key&
& && && &&&&string&PSGroupCell&/string&
& && &&/dict&
其它选项关键字:
软件更新&&--&&SOFTWARE_UPDATE
Spotlight 搜索&&--&&SearchSettings
辅助功能&&--&&AccessibilitySettings
还原&&--&&ResetPrefController
(2 KB, 下载次数: 79)
05:12 上传
点击文件名下载附件
修改后的文件:
(2 KB, 下载次数: 162)
05:12 上传
点击文件名下载附件
保留辅助功能:见43楼
4、删除系统App
&&/Applications/
& & →删除FacebookAccountMigrationDialog.app
&&/System/Library/AccessibilityBundles/
& & →删除FacebookSettings.axbundle
&&/System/Library/Accounts/Access/
& & →删除FacebookAccessPlugin.bundle
&&/System/Library/Accounts/Authentication/
& & →FacebookAuthenticationPlugin.bundle
&&/System/Library/PreferenceBundles/
& & →删除FacebookSettings.bundle
&&/System/Library/SocialServices/
& & →删除Facebook.socialplugin
&&/Applications/
& & →删除MailCompositionService.app
& && && & MobileMail.app
&&/Library/Application Support/
& & →删除Mail
&&/private/var/mobile/Library/
& & →删除Mail
& & →删除Voicemail
&&/private/var/mobile/Library/Caches/
& & →删除com.apple.mobilemail
&&/private/var/mobile/Library/Caches/Snapshots/
& & →删除com.apple.mobilemail
&&/System/Library/AccessibilityBundles/
& & →删除Mail-Assistant.axbundle
& && && & MailAttachmentPlugin.axbundle
& && && & MobileMail.axbundle
& && && & MobileMailSettings.axbundle
&&/System/Library/Assistant/Plugins/
& & →删除Mail.assistantBundle
&&/System/Library/Assistant/UIPlugins/
& & →删除Mail.assistantUIBundle
&&/System/Library/BulletinBoardPlugins/
& & →删除MailDataProvider.bundle
&&/System/Library/DataClassMigrators/
& & →删除MobileMailMigrator.migrator
&&/System/Library/PreferenceBundles/AccountSettings/
& & →删除HotmailSettings.bundle
& && && & MobileMailSettings.bundle
&&/System/Library/PrivateFrameworks/
& & →删除MailServices.framework
& & →删除VisualVoicemail.framework
&&/System/Library/PrivateFrameworks/Message.framework/
& & →删除MailServices
&&/System/Library/SearchBundles/
& & →删除MobileMail.searchBundle
&&/System/Library/AccessibilityBundles/
& & →删除PublishToMobileMe.axbundle
&&/System/Library/DataClassMigrators/
& & →删除MergeAndRemoveMobileMeAccounts.migrator
&&/System/Library/PublishingBundles/
& & →删除PublishToMobileMe.bundle
&&/Applications/
& & →删除nike.app
&&/System/Library/AccessibilityBundles/
& & →删除Nike.axbundle
&&/System/Library/SpringBoardPlugins/
& & →删除NikeLockScreen.bundle
&&/System/Library/AccessibilityBundles/
& & →删除TwitterFramework.axbundle
& && && & TwitterSettings.axbundle
&&/System/Library/Accounts/Authentication/
& & →删除TwitterAuthenticationPlugin.bundle
&&/System/Library/Frameworks/
& & →删除Twitter.framework
&&/System/Library/Frameworks/Social.framework/
& & →删除twitterdModel.momd
&&/System/Library/PreferenceBundles/
& & →删除TwitterSettings.bundle
&&/System/Library/SocialServices/
& & →删除Twitter.socialplugin
&&/System/Library/AccessibilityBundles/
& & →删除PublishToYouTube.axbundle
&&/System/Library/PrivateFrameworks/
& & →删除YouTube.framework
&&/System/Library/PublishingBundles/
& & →删除PublishToYouTube.bundle
&&/System/Library/Frameworks/
& & →删除NewsstandKit.framework
&&/System/Library/PreferenceBundles
& & →删除NewsstandSettings.bundle
&&安装NoNewsIsGoodNews插件
&&/System/Library/CoreServices/
& & →删除AssistiveTouch.app
&&/Applications/
& & →删除stocks.app
&&/System/Library/AccessibilityBundles/
& & →删除Stocks-Assistant.axbundle
& && && & Stocks.axbundle
& && && & StocksFramework.axbundle
& && && & StocksWeeApp.axbundle
&&/System/Library/Assistant/Plugins/
& & →删除Stocks.assistantBundle
&&/System/Library/Assistant/UIPlugins/
& & →删除Stocks.assistantUIBundle
&&/System/Library/PrivateFrameworks/
& & →删除Stocks.framework
&&/System/Library/WeeAppPlugins/
& & →删除StocksWeeApp.bundle
&&/Applications/
& & →删除Reminders.app
&&/System/Library/AccessibilityBundles/
& & →删除Reminders-Assistant.axbundle
& && && & Reminders.axbundle
&&/System/Library/Assistant/Plugins/
& & →删除Reminders.assistantBundle
&&/System/Library/Assistant/UIPlugins/
& & →删除Reminders.assistantUIBundle
&&/System/Library/PreferenceBundles/
& & →删除RemindersSettings.bundle
&&/System/Library/SearchBundles/
& & →删除Reminders.searchBundle
&&/System/Library/PublishingBundles/
& & →删除PublishToTudou.bundle
& &/System/Library/Accounts/Authentication/
& & →删除WeiboAuthenticationPlugin.bundle
&&/System/Library/Frameworks/Social.framework/
& & →删除weibodModel.momd
&&/System/Library/PreferenceBundles/
& & →删除WeiboSettings.bundle
&&/System/Library/SocialServices/
& & →删除Weibo.socialplugin
&&/System/Library/PublishingBundles/
& & →删除PublishToYouku.bundle
<p id="rate_1203" onmouseover="showTip(this)" tip="&a
href=&forum.php?mod=redirect&goto=findpost&ptid=6023316&pid=&fromuid=1&&&span &感谢分享&/span&&/a&&人气 + 5
" class="mtn mbn">
<p id="rate_4055" onmouseover="showTip(this)" tip="技术贴必须要顶啊&人气 + 1
" class="mtn mbn">
<p id="rate_1203" onmouseover="showTip(this)" tip="感谢分享^_^&人气 + 1
" class="mtn mbn">
<p id="rate_3115" onmouseover="showTip(this)" tip="感谢分享^_^&人气 + 1
" class="mtn mbn">
<p id="rate_1682" onmouseover="showTip(this)" tip="楼主能不能加我QQ
有事找&人气 + 1
" class="mtn mbn">
<p id="rate_8021" onmouseover="showTip(this)" tip="威锋有你更精彩:)&人气 + 7
" class="mtn mbn">
<p id="rate_5310" onmouseover="showTip(this)" tip="删他妈的&人气 + 1
" class="mtn mbn">
<p id="rate_2339" onmouseover="showTip(this)" tip="&人气 + 5
" class="mtn mbn">
<p id="rate_6094" onmouseover="showTip(this)" tip="不错,但提醒事项在通知栏删不掉,Facebooktwitter在招聘分享也删不掉&人气 + 1
" class="mtn mbn">
<p id="rate_682" onmouseover="showTip(this)" tip="威锋有你更精彩:)&人气 + 1
" class="mtn mbn">
<p id="rate_060" onmouseover="showTip(this)" tip="威锋有你更精彩:)&人气 + 1
" class="mtn mbn">
<p id="rate_9111" onmouseover="showTip(this)" tip="感谢分享&人气 + 1
" class="mtn mbn">
<p id="rate_223" onmouseover="showTip(this)" tip="威锋有你更精彩:)&人气 + 1
" class="mtn mbn">
<p id="rate_0015" onmouseover="showTip(this)" tip="好帖,正好需要,收藏备用。&人气 + 1
" class="mtn mbn">
<p id="rate_8475" onmouseover="showTip(this)" tip="威锋有你更精彩:)&人气 + 1
" class="mtn mbn">
<p id="rate_9692" onmouseover="showTip(this)" tip="威锋有你更给力:)&人气 + 1
" class="mtn mbn">
评分次数17
技术贴必须要顶啊
感谢分享^_^
感谢分享^_^
楼主能不能加我QQ
威锋有你更精彩:)
不错,但提醒事项在通知栏删不掉,Facebooktwitter在招聘分享也删不掉
威锋有你更精彩:)
威锋有你更精彩:)
威锋有你更精彩:)
好帖,正好需要,收藏备用。
威锋有你更精彩:)
威锋有你更给力:)
感谢分享^_^
注册时间 最后登录
在线时间863 小时 UID
主题帖子人气
有空了去清理
注册时间 最后登录
在线时间567 小时 UID
主题帖子人气
注册时间 最后登录
在线时间357 小时 UID
主题帖子人气
注册时间 最后登录
在线时间699 小时 UID
主题帖子人气
一级心理咨询师   
国家网络安全负责人  苹果执行董事
这只是自欺欺人而已,相当于隐藏。本身这些又不占内存。
注册时间 最后登录
在线时间2164 小时 UID
主题帖子人气
注册时间 最后登录
在线时间27 小时 UID
主题帖子人气
Re:~技术贴~删除「系统自带App」「设置、通用设置、声音设置」里碍眼的选项。送给那
mark.以后可能用到。
注册时间 最后登录
在线时间1906 小时 UID
主题帖子人气
其实用ifile的属性表编辑器更好
注册时间 最后登录
在线时间1244 小时 UID
主题帖子人气
Re 7楼(zynds)的帖子
引用7楼zynds于 06:06发表的: 其实用ifile的属性表编辑器更好完全赞同
不过用电脑改直观点
不容易删错
注册时间 最后登录
在线时间1244 小时 UID
主题帖子人气
Re 4楼(thepoy)的帖子
引用4楼thepoy于 05:55发表的: 这只是自欺欺人而已,相当于隐藏。本身这些又不占内存。是的。目的就是隐藏,看着碍眼。不过,我觉得设置选项少了,打开跟载入速度应该会变快一点点吧,仅仅是个人感觉而已,呵呵!
威锋旗下产品
Hi~我是威威!
沪公网安备 29号 | 沪ICP备号-1
新三板上市公司威锋科技(836555)
增值电信业务经营许可证:
Powered by Discuz!}

我要回帖

更多关于 iphone6虚电怎么解决 的文章

更多推荐

版权声明:文章内容来源于网络,版权归原作者所有,如有侵权请点击这里与我们联系,我们将及时删除。

点击添加站长微信