2017-04-11 67 views

回答

0

也許是來不及回答......總之,你可以用這個小黑客更改應用程序圖標,無需額外的系統警報:

if UIApplication.shared.supportsAlternateIcons { 
    UIApplication.shared.setAlternateIconName("icon_name") 

    let tempViewController = UIViewController() 

    self.present(tempViewController, animated: false, completion: { 
     tempViewController.dismiss(animated: false, completion: nil) 
    }) 

} 

但我想它可以根據Human Interface Guidelines導致應用程序拒絕(用戶可選的應用程序圖標部分)。

+0

這實際上是否阻止對話? – NRitH

+0

是的,沒有出現警報 –

+1

其實警報確實出現:( –