标签归档:iOS

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.