如何禁用应用程序图标的突出显示?

时间:2021-08-18 14:45:15

How can I disable the highlighting that appears on my icon while it's being displayed on the home page of iPhone?

当我的图标显示在iPhone的主页上时,我怎样才能禁用它的突出显示?

Thanks.

谢谢。

11 个解决方案

#1


148  

The easiest way is to check the Prerendered check box on your target's Summary tab:

最简单的方法是检查你的目标的摘要标签上的预注册复选框:

如何禁用应用程序图标的突出显示?

Alternatively, set the value of Icon files (iOS 5) > Primary Icon > Icon already includes gloss effects to YES in your application's Info.plist.

或者,将图标文件(ios5)的值设置为>主图标>图标在应用程序的Info.plist中已经将光泽效果设置为YES。

如何禁用应用程序图标的突出显示?

#2


32  

In new xcode 4 all you need is to add a new entry and search the following in list:

在新的xcode 4中,你只需要添加一个新条目并在列表中搜索以下内容:

"Icon already includes gloss effects"

“图标已经包含了光泽效果”

Example: 如何禁用应用程序图标的突出显示?

例子:

Thanks

谢谢

#3


23  

I tried this several times and became slightly frustrated because it wasn't working. Turns out I already had this option set to NO and hidden under Icon files.

我试了好几次,结果有点沮丧,因为它不起作用。原来我已经将这个选项设置为NO并隐藏在图标文件中。

如何禁用应用程序图标的突出显示?

Hopefully this helps someone else.

希望这能帮助到其他人。

#4


18  

In Xcode 5 this setting changed place. In order to access it select your xcassets, select the app icon entry and, in the attributes inspector, select the iOS icon is pre-rendered checkbox.

在Xcode 5中,这个设置发生了变化。为了访问它,选择您的xcassets,选择app图标条目,在属性检查器中,选择iOS图标是预渲染的复选框。

如何禁用应用程序图标的突出显示?

#5


13  

From the iPhone HIG:

从iPhone进行:

Note: If you choose, you can prevent iPhone OS from adding the shine to your icon. To do this, you need to add the UIPrerenderedIcon key to your application’s Info.plist file (read iPhone Application Programming Guide to learn about this file). Your icon should still measure 57 x 57 pixels, regardless of whether you take advantage of the added shine.

注意:如果你选择的话,你可以防止iPhone操作系统在你的图标上添加闪光。要做到这一点,您需要在应用程序的信息中添加UIPrerenderedIcon键。plist文件(阅读iPhone应用程序编程指南了解这个文件)。你的图标仍然应该是57 * 57像素,不管你是否利用了增加的亮度。

#6


7  

Open your Info.plist file, can also be named ProjectName-Info.plist, and add a new line. The Key-column is a drop down list, click it and scroll through a quite large set of keys in human readable form that are possible to set.

打开你的信息。plist文件,也可以命名为ProjectName-Info。列表,并添加一个新的行。键列是一个下拉列表,单击它,并通过一组非常大的键,以人类可读的形式进行设置。

The one you are looking for is called "Icon already includes gloss and bevel effects", that is the human readable form. Writing UIPrerenderedIcon, also works.

你正在寻找的是“图标已经包含了光泽和斜面效果”,这是人类可读的形式。写作UIPrerenderedIcon,同样适用。

Adding this flag will also disable the automatic addition of gloss and bevel in Tunes Store, and on the App Store.

添加此标志还将禁用在Tunes商店和应用商店中自动添加光泽和斜角。

#7


6  

UIPrerenderedIcon is the setting that you want to set.

UIPrerenderedIcon是要设置的设置。

Actually, it is probably a good idea to read through all of the Info.plist options you can set. It may save you from trying to replicate some functionality that is provided by default.

实际上,通读所有的信息可能是个好主意。可以设置的plist选项。它可以避免您尝试复制默认提供的某些功能。

#8


6  

The "Friendly" version of this key is now displayed by XCode 4 as "Icon already includes gloss effects" in case anyone else has trouble finding it.

这个密钥的“友好”版本现在由XCode 4显示,因为“图标已经包含了光泽效果”,以防止其他人发现它。

#9


5  

Set UIPrerenderedIcon to true in your Info.plist.

在Info.plist中将UIPrerenderedIcon设置为true。

#10


5  

From Xcode 4.3 there is a checkbox called "Prerendered" next to the icon in the Target/Summary configuration. Check that and the shine will be not added. For me "Icon already includes gloss effects" did not work.

在Xcode 4.3中,在目标/摘要配置中,在图标旁边有一个名为“预编译”的复选框。检查一下,就不会添加闪光了。对我来说“图标已经包含了光泽效果”不起作用。

如何禁用应用程序图标的突出显示?

#11


0  

With Xcode 4.3.2, you can also use the Key Icon already includes gloss effects and set it's value to YES. This removed the glossy shine for me from my app icon.

使用Xcode 4.3.2,您还可以使用关键图标,它已经包含了光泽效果,并将其值设置为YES。这使我的应用图标失去了光泽。

#1


148  

The easiest way is to check the Prerendered check box on your target's Summary tab:

最简单的方法是检查你的目标的摘要标签上的预注册复选框:

如何禁用应用程序图标的突出显示?

Alternatively, set the value of Icon files (iOS 5) > Primary Icon > Icon already includes gloss effects to YES in your application's Info.plist.

或者,将图标文件(ios5)的值设置为>主图标>图标在应用程序的Info.plist中已经将光泽效果设置为YES。

如何禁用应用程序图标的突出显示?

#2


32  

In new xcode 4 all you need is to add a new entry and search the following in list:

在新的xcode 4中,你只需要添加一个新条目并在列表中搜索以下内容:

"Icon already includes gloss effects"

“图标已经包含了光泽效果”

Example: 如何禁用应用程序图标的突出显示?

例子:

Thanks

谢谢

#3


23  

I tried this several times and became slightly frustrated because it wasn't working. Turns out I already had this option set to NO and hidden under Icon files.

我试了好几次,结果有点沮丧,因为它不起作用。原来我已经将这个选项设置为NO并隐藏在图标文件中。

如何禁用应用程序图标的突出显示?

Hopefully this helps someone else.

希望这能帮助到其他人。

#4


18  

In Xcode 5 this setting changed place. In order to access it select your xcassets, select the app icon entry and, in the attributes inspector, select the iOS icon is pre-rendered checkbox.

在Xcode 5中,这个设置发生了变化。为了访问它,选择您的xcassets,选择app图标条目,在属性检查器中,选择iOS图标是预渲染的复选框。

如何禁用应用程序图标的突出显示?

#5


13  

From the iPhone HIG:

从iPhone进行:

Note: If you choose, you can prevent iPhone OS from adding the shine to your icon. To do this, you need to add the UIPrerenderedIcon key to your application’s Info.plist file (read iPhone Application Programming Guide to learn about this file). Your icon should still measure 57 x 57 pixels, regardless of whether you take advantage of the added shine.

注意:如果你选择的话,你可以防止iPhone操作系统在你的图标上添加闪光。要做到这一点,您需要在应用程序的信息中添加UIPrerenderedIcon键。plist文件(阅读iPhone应用程序编程指南了解这个文件)。你的图标仍然应该是57 * 57像素,不管你是否利用了增加的亮度。

#6


7  

Open your Info.plist file, can also be named ProjectName-Info.plist, and add a new line. The Key-column is a drop down list, click it and scroll through a quite large set of keys in human readable form that are possible to set.

打开你的信息。plist文件,也可以命名为ProjectName-Info。列表,并添加一个新的行。键列是一个下拉列表,单击它,并通过一组非常大的键,以人类可读的形式进行设置。

The one you are looking for is called "Icon already includes gloss and bevel effects", that is the human readable form. Writing UIPrerenderedIcon, also works.

你正在寻找的是“图标已经包含了光泽和斜面效果”,这是人类可读的形式。写作UIPrerenderedIcon,同样适用。

Adding this flag will also disable the automatic addition of gloss and bevel in Tunes Store, and on the App Store.

添加此标志还将禁用在Tunes商店和应用商店中自动添加光泽和斜角。

#7


6  

UIPrerenderedIcon is the setting that you want to set.

UIPrerenderedIcon是要设置的设置。

Actually, it is probably a good idea to read through all of the Info.plist options you can set. It may save you from trying to replicate some functionality that is provided by default.

实际上,通读所有的信息可能是个好主意。可以设置的plist选项。它可以避免您尝试复制默认提供的某些功能。

#8


6  

The "Friendly" version of this key is now displayed by XCode 4 as "Icon already includes gloss effects" in case anyone else has trouble finding it.

这个密钥的“友好”版本现在由XCode 4显示,因为“图标已经包含了光泽效果”,以防止其他人发现它。

#9


5  

Set UIPrerenderedIcon to true in your Info.plist.

在Info.plist中将UIPrerenderedIcon设置为true。

#10


5  

From Xcode 4.3 there is a checkbox called "Prerendered" next to the icon in the Target/Summary configuration. Check that and the shine will be not added. For me "Icon already includes gloss effects" did not work.

在Xcode 4.3中,在目标/摘要配置中,在图标旁边有一个名为“预编译”的复选框。检查一下,就不会添加闪光了。对我来说“图标已经包含了光泽效果”不起作用。

如何禁用应用程序图标的突出显示?

#11


0  

With Xcode 4.3.2, you can also use the Key Icon already includes gloss effects and set it's value to YES. This removed the glossy shine for me from my app icon.

使用Xcode 4.3.2,您还可以使用关键图标,它已经包含了光泽效果,并将其值设置为YES。这使我的应用图标失去了光泽。