有几个问题像这样漂浮,但没有答案可行。
我正在为这样的UIView添加新的CALayers:
func placeNewPicture() {
let newPic = CALayer()
newPic.contents = self.pictureDragging.contents
newPic.frame = CGRect(x: pictureScreenFrame.origin.x - pictureScreenFrame.width/2, y: pictureScreenFrame.origin.y - pictureScreenFrame.height/2, width: pictureScreenFrame.width, height: pictureScreenFrame.height)
self.drawingView.layer.addSublayer(newPic)
}
并尝试删除它们:
func deleteDrawing() {
for layer in self.drawingView.layer.sublayers {
layer.removeFromSuperlayer()
}
}
这样可以成功删除图像,但是下次触摸屏幕时应用程序会崩溃,调用main但调试器中没有打印任何内容。有几种这样的情况,在删除子图层后,应用程序会在短时间内崩溃。
从父视图中删除CALayers的正确方法是什么?
答案 0 :(得分:8)
我认为错误是您删除了所有子图层,而不是您添加的子图层。 保留一个属性以保存您添加的子图层
var layerArray = NSMutableArray()
然后尝试
func placeNewPicture() {
let newPic = CALayer()
newPic.contents = self.pictureDragging.contents
newPic.frame = CGRect(x: pictureScreenFrame.origin.x - pictureScreenFrame.width/2, y: pictureScreenFrame.origin.y - pictureScreenFrame.height/2, width: pictureScreenFrame.width, height: pictureScreenFrame.height)
layerArray.addObject(newPic)
self.drawingView.layer.addSublayer(newPic)
}
func deleteDrawing() {
for layer in self.drawingView.layer.sublayers {
if(layerArray.containsObject(layer)){
layer.removeFromSuperlayer()
layerArray.removeObject(layer)
}
}
}
使用 Leo Dabus 进行更新建议,您也可以设置图层名称。
newPic.name = "1234"
然后检查
func deleteDrawing() {
for layer in self.drawingView.layer.sublayers {
if(layer.name == "1234"){
layerArray.removeObject(layer)
}
}
}