Xcode: 14.3.1
@AppStorage("setting_active_app_icon") var setting_active_app_icon = ""
Picker(selection: $setting_active_app_icon) {
Text("红色").tag("AppIcon1")
Text("橙色").tag("AppIcon2")
Text("黄色").tag("AppIcon3")
Text("绿色").tag("AppIcon4")
Text("蓝色 - 默认").tag("AppIcon5")
} label: {
Text("更改图标")
}
.onChange(of: setting_active_app_icon) { newValue in
print("更改图标 Picker onChange", newValue, type(of: newValue))
UIApplication.shared.setAlternateIconName(newValue) { (error) in
if let error = error {
print("Failed request to update the app’s icon: \(error)")
}
}
}
熊猫小账本
一个简洁的记账 App,用于记录日常消费开支收入,使用 iCloud 保存同步数据。