-
7 Jul 2010 11:02 AM #1
[FIXED]Homescreen Icon on iOS4.0 doesn't seem to work
[FIXED]Homescreen Icon on iOS4.0 doesn't seem to work
Hi, I upgraded my Ipod-Touch 3G (8G, so technical 2G) to iOS4.0 yesterday. No I was playing a little bit with sencha touch and noticed, that the Icon set in Ext.setup isn't used when I add the App to my Homescreen. Instead it shows a small Screenshot of the actual page and uses that for an Icon.
Here is the code I've copied. Maybe someone can check this (sencha 0.91).
icon.png and phone_startup.png are both in the root Folder of my application and phone_startup.png is shown, so it can be no Path Problem.Code:Ext.setup({ icon: 'icon.png', // Starticon glossOnIcon: true, phoneStartupScreen: 'phone_startup.png', // warscheinlich startupscreen onReady: function() {
-
8 Jul 2010 10:17 AM #2
There appears to be a typo in the source code of the ext-touch.js file; I have the same problem and this is what I found in the ext-touch-debug.js
Notice for the phone platform it's not using the "rel" attribute. Add the "r" and you should be good.Code:if (Ext.isString(config.tabletIcon) && Ext.platform.isTablet) { appIcon.set({ rel: 'apple-touch-icon' + precomposed, href: config.tabletIcon }); } else if (Ext.isString(config.phoneIcon) && Ext.platform.isPhone) { appIcon.set({ el: 'apple-touch-icon' + precomposed, href: config.phoneIcon }); }
-
8 Jul 2010 10:20 PM #3
-
12 Jul 2010 10:16 AM #4
Thanks, this has been fixed in the next release.
Thank you for reporting this bug. We will make it our priority to review this report.
Similar Threads
-
[FIXED-27] .child doesn't seem to work (0.82)
By rdougan in forum Sencha Touch 1.x: BugsReplies: 1Last Post: 4 Jun 2010, 9:31 AM -
icon for panel: doesn't work
By TheMonolith in forum Ext 3.x: Help & DiscussionReplies: 8Last Post: 19 Feb 2010, 4:54 AM -
[FIXED] Composite doesn't work as documented
By akme247 in forum Ext GWT: Bugs (1.x)Replies: 3Last Post: 11 Feb 2009, 5:08 PM -
[FIXED] AccordianLayout.setActiveOnTop() doesn't work.
By EvilTed in forum Ext GWT: Bugs (1.x)Replies: 1Last Post: 2 Aug 2008, 11:23 AM -
[FIXED] CheckBox Readonly Doesn't Work
By nathan.modrzewski in forum Ext GWT: Bugs (1.x)Replies: 4Last Post: 12 May 2008, 6:09 PM


Reply With Quote

