I am making an iOS MobileSubstrate Tweak and I have hooked Springboard and the launch() method. Now I want to display a view with a button and if it is clicked it would call the %orig (the original code). How can I display a view if I don't have a view controller? I'd appreciate some help. Thanks in advance :)
Asked
Active
Viewed 477 times
0
-
See here: http://www.andyibanez.com/2012/07/02/create-a-mobilesubstrate-tweaks/ – drewmm Mar 20 '13 at 08:44
-
This launches a an AlertView, not a view. I need to display a whole view that covers the whole screen and I can add controls to it. :) – Nick Aliferopoulos Mar 25 '13 at 16:49
1 Answers
0
I believe what you would want to do is to add this
UIViewController *view = [[UIViewController alloc] init];
and then go from there configuring the view how you want.

teknogeek
- 103
- 6