我正在制造一个颜色检测器
它像
如果X,Y坐标的颜色不等于文本字段的颜色,则返回F
我的程序:
Timer.scheduledTimer(withTimeInterval: 0.000001, repeats: true, block:
{ timer in
if(self.textcolor.stringValue != self.nowColor.stringValue){
self.effect.stringValue = "F";
}
})
但是返回F仍要延迟0.5s〜1秒
可可中的任何其他内容都能使它立即更改并且应用程序在后台运行吗?