STRUCT
public struct AppIconTemplate: Codable, Equatable
public let devices: Set<AppIconDevice>
The devices supported for the app icon.
public let specifyGamut: Bool
Whether to support specific display gamuts.
public let prerendered: Bool
Backward compatibility for iOS 6.0 indicating if the icon includes the mask and shine effect.
public init(from decoder: Decoder) throws
Name | Description |
---|---|
decoder | The decoder to read data from. |
public init(
devices: Set<AppIconDevice>? = nil,
specifyGamut: Bool = false,
prerendered: Bool = false
)