当前位置 博文首页 > dengren1956的博客:iOS 10.3+ 动态修改 App 图标

    dengren1956的博客:iOS 10.3+ 动态修改 App 图标

    作者:[db:作者] 时间:2021-09-20 16:28

      支持系统:

    • 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
    cs