Jump to content

KingRalph

Senior Member
  • Posts

    1,300
  • Joined

  • Last visited

Posts posted by KingRalph

  1. Well idk who the creator is and he probably wouldn't get back to me, he probably gets a few hundred questions about it a day on gnu so thought I would ask the community and see if anyone who might of had the same problem has a fix.

     

    Ya spent a little bit of time on it but I'm on Windows and it's so buggy also want one I can use on the go.

    Ok reread that lol the thread that I posted his solution did not solve my problem so I need more solutions if he had more he would have posted them

     

    GDB has issues and is not under active development.

     

    There is a significant lldb setup tutorials on this site, I suggest you use one of them. :)

  2. Place the file with the correct permissions/group/owner in the folder and not much changed.

     

    Installing apps or updating them through appstore is impossible. I get a "x can't be downloaded/installed right now" message. Apps installed through appcake crash upon opening.

    I have moved past the loading freeze in cydia, so I can install tweaks again.

    Install this package

    cydia://package/net.angelxwind.completeppsyncremover
  3. do I do yours or shmoos

    TBH, it doesn't make much of a difference, but using nil instead of NULL is generally a better habit. (Due to system level programming) :3

     

    EDIT:

    I just remembered that %orig calls the original function. The (correct) answer to your question, is:

    %hook CLPEngine
     
    -(void)removeSubsriptionTimeObserver:(id)arg1 {
        arg1 = nil;
    }
    %end

     

  4. So the void I'm trying to hack it has the class of course so %hook then the class then it has -(void) removeSubsriptionTimeObserver:(id) then it has a return value (void) then below it is Argument #1 (Id) then below the Argument is NULL how would I put this ^ in my tweak.xm

    This is the answer to your question:

    %hook CLPEngine
    
    -(void)removeSubsriptionTimeObserver:(id)arg1 {
        %orig(nil)
    }
    %end
    
×
  • Create New...

Important Information

We would like to place cookies on your device to help make this website better. The website cannot give you the best user experience without cookies. You can accept or decline our cookies. You may also adjust your cookie settings. Privacy Policy - Guidelines