我有一个UImageView
,当我拿这个UITextView
进行裁剪并返回我的键盘时,我有一个UImageView
我的键盘没有显示,但我可以更改我的文字颜色和文字我也无法移动UITextView
到panGesture
。我已完成图像渲染,可通过以下代码将UITextView
添加到UImageView
:
[passingImageView addSubview:textView];
[canvas addSubview:passingImageView];
UIGraphicsBeginImageContext(canvas.bounds.size);
[canvas.layer renderInContext:UIGraphicsGetCurrentContext()];
UIImage *resultingImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
return resultingImage;
答案 0 :(得分:1)
UIImageView
默认情况下通常没有userInteractionEnabled
TRUE
。只是做
passingImageView.userInteractionEnabled=YES;
它应该有用。
干杯。