How to block all input on iPhone app(for jailbroken devices)? [closed] - iphone

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I'm trying to block all user input in my app. That includes touch event,sleep button, home button, etc. It's for jailbroken device. So you can use whatever that works.
Thank you!

Press and hold the power button.

Even with a Jailbroken device I dont think there is anyway to prevent the home button from quitting your app. Its a bit like ctrl-alt-delete on windows.

Erm, how is this a good idea? There's no way they'd be able to exit the app then.
It's a bad form to ask for help creating what sounds like a malicious app, or at least not provide enough details to make it clear what the heck you're doing.

Related

How to set iPhone lock screen background programmatically? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
I am interested to develope an app which will show quotes on the lock screen of my iPhone. I want app like following image.
I am trying to do it but not getting any idea.
Please help me so I can start working on it.
This is not possible, the SDK does not let you do this.
As #Toam pointed out, the SDK does not allow you to set the lock screen background. However, you can kinda-sorta get around this. If you're willing to play a little music, you can set your own images/text to the lock screen in playback mode. Details can be found here: https://stackoverflow.com/a/8387406/716216

treehouse iphone [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I am making my first app.
I'm doing the treehouse tutorials and I've made a button and a label from a single view template. When I press "play" or "run" the simulator just brings up either a white screen (for ipad) or nothing (for iphone). What am I missing? I've searched on google, but it's such a generic question that I couldn't find what I was looking for without explaining myself. What obvious little thing am I missing here?
Try setting your initial view controller in your MainStoryboard.
I think Sam is trying to say that in your project settings, you have a choice of "Main Interface" (which must be a XIB file) or "Main Storyboard". If you set this your app will know which view to show on startup.

Launch application in background [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
Is that possible to run/launch application in background. I mean not making visible it to user?
For example by receiving local/push notification, even if user doesn't open(brings to foreground) an application, somehow open it in background, "hidden" for user?
Regards.
Short answer no, you can run programs in background on the iPhone like: audio players, navigation or voip clients.
Also if you app does not come to the forenground there is no way to receive any notifications(local or push).
The only applications that are allowed to do this are Newsstand applications in iOS 5.

Why is the "20% battery" message box crashing my app? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
I work on a ipod apps, and when I run it on a real device, my apps crash when the msgbox 20$% battery left. How I can fix that? I think this msgbox stop one of my thread(a timer), is it possible?
Does the same thing happen when the device receives a phone call, SMS, or push notification? If so, it's probably something in your app delegate’s -application:willResignActive: method. Check your code in there, or—better yet—update your question to include that code.

Custom Keyboard in iphone [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
i have to develope an application in which
i have to add two buttons within the keyboard
i need to know how to implement it.
please help me.
i will be thank full.
I have been watching the iphone classes that are in itunes from Stanford University. They had someone from Apple there and asked this question and they said that you cannot change the keyboard except to change the return key to one of the other settings for it. I do like what Facebook and Tweetie (the guy that wrote this also talked in the iphone classes) have done to add buttons. They stated that overall Apple wanted a consistant look and feel to things like the keyboard.
You can't do this. You can do what the Facebook and Tweetie apps do, though, and add an additional set of controls right above the keyboard.
You can do it with the latest iOS version. Check the inputView property of UITextField for details.