如何编写 cydia 应用程序
我想知道如何创建一个在 iphone 启动时运行的 cydia 调整,并将某些 iphone 功能挂接为短信或通话。
所以我想知道我应该从哪里开始:
- 如何编写一个cydia应用程序(xCode?工具链?哪个工具链?如何安装它?)
- 在哪里可以找到有关移动基板挂钩方法的文档?
- 如何在 iPhone 启动时为我的应用程序加注星标?
如果有人能给我链接关于如何开始 jb 开发的非常菜鸟指南(我只是“正式”开发),我会很高兴
谢谢大家
I was wondering about to create a cydia tweak running on iphone startup and hooking some iphone feature as sms or call.
So I wanted to know where should I start:
- How to write a cydia application (xCode? Toolchain? which toolchain? how to install it?)
- Where can I found documentation about the hooking methods of the mobile substrate?
- How can I star my application on iPhone startup?
I'd be glad if someone can link me THE VERY NOOB guide on how to start jb developpement (I juste develop "officially")
Thanks everybody
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我知道还有其他方法可以做到这一点,但如果您是获得许可的 iOS 开发人员,您可以简单地在应用程序中签署代码并将其放到您已越狱的注册测试设备之一上,然后按照以下分步说明进行操作:
下载 iFile来自 Cydia 商店。我建议您付费,但您可以找到其他来源来获得破解版本。然后在设备上使用 iFile 并进入以下目录:
var/mobile/Applications/YourAppName
选择 YourAppName.app 文件夹
点击 zip 文件按钮(位于显示屏底部的 + 和垃圾按钮之间)
系统将提示您命名 zip 文件并点击创建。
这是您提交到 Cydia 的 zip 文件,您可以从 iFile 中通过电子邮件将其发送给自己,或者如果您想使用 DiskAid 等程序将其从您的设备中提取。完毕!
测试
要进行测试,您需要将 .app 文件复制到以下目录中:
var/stash/应用程序
退出 iFile 并从设备中删除您的应用程序。重新启动、重新启动或重新启动。
然后该图标将出现在您的桌面上。
希望这对某人有帮助!
注意:这违反了 Apple 政策,但如果你不告诉,我也不会告诉;)
I know there are other ways of doing this, but if your a licensed iOS Developer you can simply sign the code in your App and put it on to one of your registered testing Devices that's jailbroken and follow the step by step instructions below:
Download iFile from the Cydia Store. I would suggest paying for it, but you can find other sources where you can get a cracked version. Then use iFile on the device and go into the following directory:
var/mobile/Applications/YourAppName
Select YourAppName.app folder
Tap the zip file button, (between + and trash buttons at bottom of display)
You will be prompted to name the zip file and hit create.
That's the zip file you submit to Cydia, you can email it to yourself from within iFile, or if you want use a program like DiskAid to pull it from your Device. DONE!
TESTING
To test you need to copy the .app file into the following directory:
var/stash/Applications
Exit iFile and Delete your app from the devise. Respring, Reboot, or Restart.
The icon will then be on your desktop.
HOPE THIS HELPS SOMEONE!!!
Note: This is against Apple policy, but if you don't tell I won't ;)