Theos for armv7 and arm64

前端 未结 6 1950
旧巷少年郎
旧巷少年郎 2020-12-30 17:54

I\'m trying to get theos working on OSX Mavericks. I recently purchased an iPhone 5s and have since then jailbroken it. Now I am trying to get Theos working so I can start w

6条回答
  •  佛祖请我去吃肉
    2020-12-30 18:19

    If you're using iOS 7, you have to hook the correct method: try -(void)launchFromLocation:(int)location.

    Because it uses a parameter, your code should look like this:

    -(void)launchFromLocation:(int)location {
        // your stuff
        %orig(location);
    }
    

提交回复
热议问题