jailbreak

    0熱度

    1回答

    #import <UIKit/UIAlertView.h> @class NSObject; @interface SBIconController : NSObject + (SBIconController *)sharedInstance; - (BOOL)isEditing; @end %hook SBIconController -(void)iconTapped:(

    8熱度

    2回答

    我試圖用make package install安裝越獄的調整,但我從dpkg的收到此錯誤: dpkg-deb: file `/tmp/_theos_install.deb' contains ununderstood data member data.tar.xz , giving up dpkg: error processing /tmp/_theos_install.deb (--in

    0熱度

    1回答

    如我們所知,iOS不支持後臺camera.but越獄調整快速拍攝可以做到這一點。 我想知道它是如何工作的。它使用了一些特殊的lib?

    0熱度

    1回答

    我調整了鉤子到應用程序(tweak1) 調整應該使用框架來執行一些代碼。 不幸的是,在iOS7中,我無法做到這一點。 但是,當相同的代碼在一個單獨的調整(tweak2)與springBoard掛鉤執行時,它運行得很好。 我的問題是可能的,我發送一個字典從第一次調整(tweak1)tweak2,所以它得到執行。 我想我需要使用CPDistributedNotificationCenter。但不確定。

    0熱度

    1回答

    嘗試使用狄奧和具有這種誤差如圖 /var/theos/makefiles/common.mk:103: *** You did not specify a target, and the "i phone" platform does not define a default target. Stop. 我的Makefile ARCHS = armv7 armv7s SDKVERSION

    0熱度

    1回答

    越獄iPhone iPhone 7:是否可以直接從Springboard在後臺關閉所有應用程序而無需打開後臺切換器面板? 我嘗試這樣做,以這樣的方式 SBAppSliderController* switcherController = MSHookIvar<SBAppSliderController*>(self, "_switcherController"); [_switcherCont

    2熱度

    1回答

    我想使用隱私/隱藏iOS方法,例如SpringBoard類(example here)中的clearIdleTimer。我該怎麼做呢?許多信息引用了更老的iOS版本。 這只是爲了實驗,我認識到私人API不是App Store批准的。此外,我的iOS設備已註冊開發,但尚未越獄。 編輯:我發現這些iOS-Runtime-Headers但樣品不適合我。

    0熱度

    1回答

    我對使用Theos構建的簡單應用程序有一個奇怪的問題。 我使用的是最新的跳板頭(傾倒/固定他們自己),最新LDID和libsubstrate,而我在我的iPhone 5(與iOS 7.0.4)測試。 這是(板缺)的Makefile: include theos/makefiles/common.mk APPLICATION_NAME = Reboot Reboot_FILES = main.

    0熱度

    3回答

    我需要在其他iPhone上安裝我自己的應用程序,但沒有越獄和沒有App Store! 喜歡的東西:~~>tui.tongbu.com 它無需安裝App Store和越獄 又如~~>sibche.ir;) 我的意思是他們是如何破解他們的應用程序,這樣它將安裝在未越獄的iPhone上。

    1熱度

    1回答

    如何在調整中像下面的代碼那樣定義我自己的實例變量?這裏myBool是新的。我在iOS 7.0.4中使用Theos/Logos。這可能嗎?在任何地方都找不到它。我知道MSHookIvar,但只適用於現有的變量。 @interface SBApplication { BOOL myBool; } - (void)setBadge:(id)arg1; @end %hook SBA