几个小时以来,我一直在努力解决这个问题。什么相当于 AS3Shape
在 Objective C 中的类?它是一个 UIView 吗?
我正在尝试从图像中获取带有自定义路径的位图填充。在 Flash 中,它很简单:
var mesh:Shape = new Shape();
mesh.graphics.beginBitmapFill(new MeshBitmapData(), null, true, false);
mesh.graphics.drawRect(0, 0, 400, 400);
mesh.graphics.endFill();
Objective C中是否有等价物?还是我一起错过了什么?