UITextView用户交互无法正常工作

时间:2014-07-08 07:15:18

标签: ios

我有一个UImageView,当我拿这个UITextView进行裁剪并返回我的键盘时,我有一个UImageView我的键盘没有显示,但我可以更改我的文字颜色和文字我也无法移动UITextViewpanGesture。我已完成图像渲染,可通过以下代码将UITextView添加到UImageView

[passingImageView addSubview:textView];
[canvas addSubview:passingImageView];

UIGraphicsBeginImageContext(canvas.bounds.size);
[canvas.layer renderInContext:UIGraphicsGetCurrentContext()];

UIImage *resultingImage = UIGraphicsGetImageFromCurrentImageContext();

UIGraphicsEndImageContext();
return resultingImage;

1 个答案:

答案 0 :(得分:1)

UIImageView默认情况下通常没有userInteractionEnabled TRUE。只是做

passingImageView.userInteractionEnabled=YES;

它应该有用。

干杯。