1
[CATransaction withAnimationSpeed:1.0 :^ {
if(newMultiplier > 100)
fillLayer.backgroundColor = ColRGBA(1, 1, 0, 0.2);
else
fillLayer.backgroundColor = ColRGBA(0, 0, 0, 0);
}];
^{} 의미? 왜이 기호를 사용하십시오.이 코드는 objective-c에서 무엇을 의미합니까?
답변 해 주셔서 감사합니다. –