我一直在敲打这个好几个小时。在Objective C中,AS3的Shape
类相当于什么?这是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();
目标C中是否有等价物?或者我一起错过了什么?