+ Reply
Results 1 to 2 of 2
  1. #1
    What's Jailbreak?
    Join Date
    Apr 2010
    Posts
    7
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Fixed Springboard Tweak based on Smoothboard source

    What I want to do is make a fixed Springboard, so swiping on the homescreen will not have a response, the screen stays on the same Springboardpage. This would be great (in my opinion) in combination with Overboard or Infinidock.

    Because of my lack of iPhone development skills I decided to get the source code of an App that manipulates Springboard behaviour.

    I found the source of Smoothboard, which effectively disables paging:

    %hook SBIconListScrollView
    -(void)setPagingEnabled: (BOOL)enabled {
    %orig(NO);
    }
    %end

    Besides pagingEnabled the Scroll View Class also contains a scrollEnabled, right? So, my question is, would this be possible:

    %hook SBIconListScrollView
    -(void)setScrollEnabled: (BOOL)enabled {
    %orig(NO);
    }
    %end

    I have a Windowsmachine. So far as I know I'm not able to create dynamic libraries, so I cannot try this. I tried a brute approach with IDA Pro, but it didn't work out well.

    Is there somebody that could / would help me to create a nice working dylib with the correct imports, etc?
    Last edited by Yourii; 04-19-2010 at 06:44 AM. Reason: Placed a whitespace between : and (, otherwise it would become a sad smiley

  2. #2
    What's Jailbreak?
    Join Date
    Apr 2010
    Posts
    7
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Nobody?

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts