码迷,mamicode.com
首页 > 移动开发 > 详细

iOS 10.3+ 动态修改 App 图标

时间:2019-01-18 20:06:29      阅读:332      评论:0      收藏:0      [点我收藏+]

标签:技术分享   new   color   read   没有   undle   ports   sse   doc   

  支持系统:

  • iOS 10.3+
  • tvOS 10.2+

  Apple 官方文档  

  官方 API:

@interface UIApplication (UIAlternateApplicationIcons)
// If false, alternate icons are not supported for the current process.
@property (readonly, nonatomic) BOOL supportsAlternateIcons NS_EXTENSION_UNAVAILABLE("Extensions may not have alternate icons") API_AVAILABLE(ios(10.3), tvos(10.2));

// Pass `nil` to use the primary application icon. The completion handler will be invoked asynchronously on an arbitrary background queue; be sure to dispatch back to the main queue before doing any further UI work.
- (void)setAlternateIconName:(nullable NSString *)alternateIconName completionHandler:(nullable void (^)(NSError *_Nullable error))completionHandler NS_EXTENSION_UNAVAILABLE("Extensions may not have alternate icons") API_AVAILABLE(ios(10.3), tvos(10.2));

// If `nil`, the primary application icon is being used.
@property (nullable, readonly, nonatomic) NSString *alternateIconName NS_EXTENSION_UNAVAILABLE("Extensions may not have alternate icons") API_AVAILABLE(ios(10.3), tvos(10.2));
@end

 

  步骤:

  在 info.plist 文件中新增 Icon files (iOS 5)

  技术分享图片

  其中,Primary Icon 是应用默认图标

  Xcode 中,默认 没有 CFBundleAlternateIcons,需要删掉 Newstand Icon,添加上 CFBundleAlternateIcons。

  技术分享图片

  Primary Icon 可不用设置,使用系统默认的 Assets.xcassets 中的 AppIcon。

  

 

iOS 10.3+ 动态修改 App 图标

标签:技术分享   new   color   read   没有   undle   ports   sse   doc   

原文地址:https://www.cnblogs.com/ZachRobin/p/10289240.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!