Change Launcher icon while installing the app in IOS? - iphone

Is it possible to set the user selected icon as launcher icon while installing the application in IOS?
Our client was asking the requirement as while installing itself user can select their custom launcher icon for Iphone Application. please help me to find out the solution.

Without a jailbreak, no, you can not do it.
The icon and the background image used while loading the app are both static. The first thing you can change is after the app has loaded, then you could have a user chosen splash screen.

Related

Tizen SDK TV Icon

I am currently building an application for commercial use, but I want to be sure my Icon loos correct in the My Apps screen on the television. As of know I only see the default developer icon. I have replace the icon with my own in my project. I co see Icon in the recent pop up menu, but it is missing from My Apps. In the attachment IMG_2834.jpg has the black icon which is ok, but IMG_2835.JPG is the basic default Icon. Well I dont want that I would like to see my Icon on this screen.
Would you please check these Articles, They mentioned 'In order for application icons to display on the Samsung Apps screen must comply with the conditions given...'
Creating and Registering App Icons
Creating and registering App Icons and Screenshots

Change notification image of Facebook apps

Does anyone know if/how it's possible to change this icon when a user receives a notification through the Facebook API?
Link to nofification example: http://postimg.org/image/93lh58btd/ (I want to change the wheel icon to a custom icon)
That icon is nothing but your app's icon.
In the App Settings, open App Details and add Icons and save the changes.

iOS app - on quit ask for password

I am building iOS app for promo. The client asked that people using it should never quit it, so I got an idea.
When people are trying to quit, they would be asked to enter the password, otherwise it's impossible. Is there a solution to this?
I would appreciate any help, thanks!
Here are the steps to easily disable the home button :
Launch the Settings app from the Home screen of your iPhone or iPad Tap on General.
Scroll down towards the bottom of the screen and tap on
Accessibility.
Under the Learning section, tap on Guided Access.
If it's not already, turn the toggle next to Guided Access to the On
position, then choose a passcode.
After having deployed your application on the device, open it and triple tap the home button.
Set your options and then tap on start.
You can leave the guided access mode by triple tapping the home button again, it will ask you for the passcode you set before.
Here is a link for more details (and illustrated with photos)
What you are doing is not possible I guess. See for quitting any app the user can simply press the big quit button on the ipad or iphone and then the app would go into the background nevertheless.
You can't prevent the user from quitting. If you try to prevent it, the OS will terminate the app directly. With iOS 4.0, you can have tasks that are allowed to complete in the background.
Check this out.
For an overview about running tasks.

Run the existing iPhone app in background from JSP page inside an UIWebView

I have a button in JSP page inside an UIWebView by pressing the button i want to run another
existing iPhone native application in background only.Do anyone have a solution for this.
You can't start any apps programatically. The only exception is if the desired app supports URL schemes. (see docs)
But it is not possible to launch it in background only.

iPhone webClip browser app suggestions

I want do build an webclip browser app. I will display all my webclips in to a scroll view when the user taps on one I want to add that web clip to the iPhone.
How to I tell to the iOS to install that webclip from my app?
Any docs, example, tutorials are welcome.
If by webclip you mean adding a link to a web address to the home screen then you can't do that programatically.
I think only Safari can do this so you would have to open the destination webpage in Safari and instruct the user how to add it to the home screen.
See this for a discussion on the feature. Javascript for "Add to Home Screen" on iPhone?