Add text box to springboard
#41
Posted 20 July 2011 - 03:57 PM
#42
Posted 20 July 2011 - 05:22 PM
#43
Posted 20 July 2011 - 05:33 PM
#44
Posted 20 July 2011 - 10:57 PM
As the textfield its too low down the screen for the keyboard to appear while letting you see what your typing when the user clicks the textfield and the keyboard will appear (but hasn't) comes up I'd capture a UIImage of the screen at that point, display it as the background image of a UIButton covering the entire screen (added just below the textfield), animate the button + text field up as the keyboard animates into view.
Then when try click done or tap the rest of the screen dismiss the keyboard and animate the image back to its normal position. After the animation remove the fullscreen image/button.
Personally I like the idea of faking the effect of moving springboard up and down then actually messing with springboard.
(I'll try coding it up in the morning)
Developer of : SwipeSelection - CardSwitcher - Emblem - MountainCenter - Check
#45
Posted 20 July 2011 - 11:11 PM
NexusOneRulez, on 20 July 2011 - 05:33 PM, said:
Like this "textfield on springboard please". The code they posted is just (in English rather the objc).
%hook-into-("Sprongboard")
-()A-Bit-Of-Code-you-know-will-get-run{
%do-what-is-meant-to-happen;
TextField = [new textfield];
[springboard addView:TextField];
}
%end-customizations
That's just pseudo code meant to show non programmers what it does. (it would never compile).
Tweak development is mostly just probing iOS with class dump + Cycript, then trial & error.
Developer of : SwipeSelection - CardSwitcher - Emblem - MountainCenter - Check
#46
Posted 21 July 2011 - 12:02 AM
and how do i do a class dump?
sorry.. : \
#47
Posted 21 July 2011 - 01:15 AM
su alpine cd /var/mobile mkdir dump mkdir dump/SpringBoard class-dump-z -H -o dump/SpringBoard /System/Library/CoreServices/SpringBoard.app/SpringBoard

Coming July 1st
#48
Posted 21 July 2011 - 01:43 AM
#49
Posted 21 July 2011 - 01:55 AM
#50
Posted 22 July 2011 - 02:13 AM

Coming July 1st
#51
Posted 22 July 2011 - 02:16 AM
C0deH4cker, on 21 July 2011 - 01:15 AM, said:
su alpine cd /var/mobile mkdir dump mkdir dump/SpringBoard class-dump-z -H -o dump/SpringBoard /System/Library/CoreServices/SpringBoard.app/SpringBoard
is there anyway to get passed the encyption when trying a class dump of an appstore app
#52
Posted 22 July 2011 - 07:29 PM

Coming July 1st
#53
Posted 23 July 2011 - 01:39 AM
thanks
#54
Posted 26 April 2012 - 05:00 AM
#55
Posted 28 February 2013 - 01:31 PM











