1
我有iPhone上diplaying圖標問題顯示在PhoneGap的應用程序圖標。在Android上顯示正確。我使用Phonegap Build編譯應用程序。這是我在config.xml文件中使用的代碼我無法爲iPhone
<icon src="images/icon.png" gap:platform="ios" width="57" height="57" />
我有iPhone上diplaying圖標問題顯示在PhoneGap的應用程序圖標。在Android上顯示正確。我使用Phonegap Build編譯應用程序。這是我在config.xml文件中使用的代碼我無法爲iPhone
<icon src="images/icon.png" gap:platform="ios" width="57" height="57" />
您是否定義了默認圖標?
<icon src="icon.png" /><!-- default; don't change location! -->
下面是iOS上的部分,我如何使用它在我的PhoneGap構建項目。
<icon src="icon.png" /><!-- default; don't change location! -->
<icon src="icons/ios/classic.png" gap:platform="ios" width="57" height="57" />
<icon src="icons/ios/ipad.png" gap:platform="ios" width="72" height="72" />
<icon src="icons/ios/retina.png" gap:platform="ios" width="114" height="114" />
<icon src="icons/ios/retina_ipad.png" gap:platform="ios" width="144" height="144" />
並且不要改變默認圖標的位置,就像樣本中提到的那樣(註釋)。