如何在UIImageView中插入UITextView并使其成为可移动视图

时间:2012-10-16 07:03:36

标签: iphone objective-c ios xcode

我想在图像视图中显示文本字段的内容,还需要在主视图中使其可移动。

1 个答案:

答案 0 :(得分:0)

如果我理解你的话......

例如:
myImageView - 您的UIImageView对象,
textView - 您的UITextView对象,
textField - 您的UITextField对象。

首先 - 您需要将textView添加到myImageView:

CGRect textviewFrame = CGRectZero;
textviewFrame.size = myImageView.frame.size;
textView.frame = textviewFrame;
textView.scrollEnabled = YES; // To enable scroll
textView.editable = NO;

您需要实现UITextField委托方法来更新textView文本:

- (void)textFieldDidEndEditing:(UITextField *)textField
{
    textView.text = textField.text;
}

所以,这就是你所需要的。