我正在尝试更改Apple Research工具包的标签,图像等的默认颜色,但没有取得任何成功。
是否有配置。我需要在AppDelegate中更改它吗?能否请您分享一个代码示例。
我不确定如何使用“appearanceWhenContainedInInstancesOfClasses”。
Set tint color at UIView
UIView.appearanceWhenContainedInInstancesOfClasses([ORKTaskViewController.self]).tintColor = UIColor().darkPurple
答案 0 :(得分:0)
将以下内容用于您用于调用任务的视图控制器。色调颜色应相应改变。要更改颜色方案,请在任务完成后再调用它。您的ORKConsentDocument动画和其他任务现在将具有您选择的相同颜色色调。
UIView.appearance().tintColor = UIColor.blue
// Code to do present task
present(taskViewController, animated: true, completion: nil)
// in extension
func taskViewController(_ taskViewController: ORKTaskViewController, didFinishWith reason: ORKTaskViewControllerFinishReason, error: Error?) {
//Handle results with taskViewController.result
taskViewController.dismiss(animated: true, completion: nil)
UIView.appearance().tintColor = UIColor.red
这假设红色是您的默认颜色。