方法一:
选择supporing files 文件夹下面的.plist 文件 然后添加 Icon already includes gloss effects 后面选择一下
(这里要-YES-才会不显示高光!!!)

方法二:
在最新的几个xcode 的版本里面 icon 图标旁边有一个选项直接选择一下子就OK了
(这里要-勾选-才会不显示高光!!!)

判断iphone或者ipad
self.window = [[[UIWindowalloc] initWithFrame:[[UIScreenmainScreen] bounds]] autorelease];
if ([[UIDevicecurrentDevice] userInterfaceIdiom] == UIUserInterfaceIdiomPhone) {
self.viewController = [[[SendMsgToWeChatViewControlleralloc] initWithNibName:@"ViewController_iPhone"bundle:nil] autorelease];
} else {
self.viewController = [[[SendMsgToWeChatViewControlleralloc] initWithNibName:@"ViewController_iPad"bundle:nil] autorelease];
}


ios6去除高光效果,和判断iphone或ipad设备,布布扣,bubuko.com
原文:http://www.cnblogs.com/xyzaijing/p/3614041.html