标签归档:iphone

修改iOS系统的hosts文件

iOS系统通常是指运行在iPhone或者iPad上的操作系统。

出于开发、调试等不同原因,我们可能要对其hosts文件进行修改。未越狱的手机或者平板已经被苹果公司限制权限,禁止修改hosts文件。

因此,对于这种情况,我们需要使用另一种方法来达到曲线救国的目的。

  1. 自己设立一个DNS服务器,如在外网则依然无法避免DNS污染问题;
  2. 使用Fiddler架设代理。

第二种方法比较适合新手操作,具体步骤如下:

  1. 下载Fiddler安装;
  2. 打开Tools>Telerik Fiddle Options>Connections;
  3. 勾选左侧全部四个复选框,确认;
  4. 重启Fiddler,在移动设备上设置代理服务器即可。

参考链接

iPhone iPad等iOS 设备上配置修改 hosts 方法

iPhone——教你如何不越狱隐藏系统自带 App 图标

出于各种原因,有时候我们不希望看到 iOS 系统自带的图标,比如 iOS5 的 youtube 图标,因为对我们来说没有用,放着也占地方;比如 iOS6 中的 Passbook,国内暂时还不怎么用到;或者 game center 图标,很多人就从来不会打开;甚至书报架图标,很多人都嫌太占地方,看杂志只喜欢在 iPad 的大屏上看爽。因为它们是系统自带的,删也删不掉,不如隐藏起来别碍地方吧……

继续阅读

推荐一款管理iphone的软件

博主申明,这不是软文XD

这个软件叫iTools,应该有的童鞋还是听过的。这个软件上手比较快,使用也很简单,功能也是不错滴。

相比于itunes的庞大身躯,这款软件要轻巧的多了。

使用简介

  • 准备

    首先要先下载iTools,然后再下载iTunes并安装。
  • 使用说明

    1.安装完iTunes后,直接打开iTools(可不必打开iTunes)
    2.连接上你的iphone,就会看见iTools有了响应。
    2.1如果出现如下图所示情况请注意是否iphone已经连接好电脑或iphone的待机锁是否已解锁,然后再重新连接电脑。
    3.如连接成功,则如下图所示。
  • 更多使用说明请参考:http://itools.hk/tscms/index.php?a=column&pid=4

Signing iOS mobileconfig files with your certificate

If you’ve ever used Apple’s iPhone Configuration Utility, you’ve probably noticed that it says ‘Unsigned’ when you send the .mobileconfig file to your device. To sign the profile, export or email the config file to yourself, have your certificate files handy, and type the following:

openssl smime \
-sign \
-signer your-cert.pem \
-inkey your-priv-key.pem \
-certfile TheCertChain.pem \
-nodetach \
-outform der \
-in ConfigProfile.mobileconfig \
-out ConfigProfile_signed.mobileconfig

The files you’ll need are:

your-cert.pem – this is the certificate you’ve been issued
your-priv-key.pem – this is your private key
TheCertChain.pem – this is the certificate chain (optional, in some cases)
ConfigProfile.mobileconfig – This is the unsigned copy of your configuration profile

The original instructions are located here.