表情符号“图像”

时间:2017-02-25 03:01:26

标签: ios swift cocoa cocoa-touch

此界面有两个library(data.table) dcast(df, SET ~ SP, value.var=c("T1", "T2", "T3")) # SET T1_bird T1_cat T1_dog T2_bird T2_cat T2_dog T3_bird T3_cat T3_dog #1: A 5 0 1 0 NA 0 NA 4 0 #2: B NA 2 NA 3 0 NA 0 0 NA #3: C 0 0 1 0 0 0 0 6 0 #4: D NA NA NA NA NA 22 NA NA 1 个,每个都有一个表情符号。因为我现在买不起图形,而这正是我们正在使用的。

aux

对于普通图像,由于enter image description here

,我能够使用此代码着色
UIButton

然而,这不起作用(当然在这种情况下,因为没有let button = UIButton(type: .Custom) let image = UIImage(named: "image_name")?.imageWithRenderingMode(.AlwaysTemplate) button.setImage(image, forState: .Normal) button.tintColor = UIColor.redColor()

在这种情况下,我可以使用任何方法来修改按钮吗?

1 个答案:

答案 0 :(得分:2)

您可以不以您想象的方式更改您提供的示例图像的颜色,因为您正在考虑的tintColor方法将“覆盖”所有现有像素,你的颜色只有扁平的形状。

但是,有custom manipulations可以完成,你可以使用Cor eImage Filters来实现某种形式的效果,如果可能的话。

相关:

To convert your Emoji to UIImage

以上回答了所提供标题中的问题。在你的情况下:

  

因为我现在不能买得起图形而这正是我们正在使用的。

没有解决方案。