S starwars246 macrumors member Original poster Dec 23, 2007 64 0 Jul 10, 2008 #1 could someone please give me a guide upon how to make an empty app please that would have an icon etc but opens into nothing and wouldnt affect my ipod or anything, any help would be useful
could someone please give me a guide upon how to make an empty app please that would have an icon etc but opens into nothing and wouldnt affect my ipod or anything, any help would be useful
C careys7 macrumors newbie May 26, 2008 16 0 Jul 10, 2008 #2 So you basically want just an icon? Make a web page and put this in the header: <link rel="apple-touch-icon" href="iphone.png" /> and then you can make your own icon. eg: HTML: <html> <head> <link rel="apple-touch-icon" href="iphone.png" /> </head> <body> <p>What ever</p> </body> </html> Just make sure href is pointing to where ever the icon is stored. You could just use the web clip thing (in Safari) click on the + button and then "Add to Home Screen" and it will add it to your home screen (duh)
So you basically want just an icon? Make a web page and put this in the header: <link rel="apple-touch-icon" href="iphone.png" /> and then you can make your own icon. eg: HTML: <html> <head> <link rel="apple-touch-icon" href="iphone.png" /> </head> <body> <p>What ever</p> </body> </html> Just make sure href is pointing to where ever the icon is stored. You could just use the web clip thing (in Safari) click on the + button and then "Add to Home Screen" and it will add it to your home screen (duh)