一.安装签名工具ldid
使用brew安装ldid
brew install ldid
二.修改环境变量
1.编辑用户的配置文件
vim ~/.bash_profile
2.在.bash_profile文件后面加入以下两行
export THEOS=~/theos
export PATH=$THEOS/bin:$PATH
3.让.bash_profile配置的环境变量立即生效(或重新打开终端)
source ~/.bash_profile
三.下载theos
把thoes
下载到$THEOS目录下(也就是刚才配置的~/thoes)
git clone --recursive https://github.com/theos/theos.git $THEOS
—recursive 表示遍历项目所依赖的所有其他第三方的包文件,自动下载
下载完成后输入指令
nic.pl
如果输出了以下内容,表示theos已经安装成功
NIC 2.0 - New Instance Creator
------------------------------
[1.] iphone/activator_event
[2.] iphone/application_modern
[3.] iphone/application_swift
[4.] iphone/cydget
[5.] iphone/flipswitch_switch
[6.] iphone/framework
[7.] iphone/ios7_notification_center_widget
[8.] iphone/library
[9.] iphone/notification_center_widget
[10.] iphone/preference_bundle_modern
[11.] iphone/tool
[12.] iphone/tool_swift
[13.] iphone/tweak
[14.] iphone/xpc_service
Choose a Template (required):
网友评论