可以为基于自定义视图的 UIBarButtonItem 使用色调颜色吗?
Possible to use tint color for a customview based UIBarButtonItem?
是否可以像正常 UIBarButtonItem
一样为基于 UIBarButtonItem
的 cutomview 着色?
UIBarButtonItem *update = [[UIBarButtonItem alloc] initWithCustomView:b];
或者它知道默认的色调颜色是什么?
我应该用标准色调 (0, 122, 255) 重新给图像上色吗?
尝试像这样设置您的图像:
UIImage(named: "imagename")?.withRenderingMode(.alwaysTemplate)
您也可以在资产目录中将 Render As
设置为 Template Image
。
是否可以像正常 UIBarButtonItem
一样为基于 UIBarButtonItem
的 cutomview 着色?
UIBarButtonItem *update = [[UIBarButtonItem alloc] initWithCustomView:b];
或者它知道默认的色调颜色是什么?
我应该用标准色调 (0, 122, 255) 重新给图像上色吗?
尝试像这样设置您的图像:
UIImage(named: "imagename")?.withRenderingMode(.alwaysTemplate)
您也可以在资产目录中将 Render As
设置为 Template Image
。