如何在imgeview中键入文本...现在使用鼠标成功绘图。我需要使用键盘在同一图像视图中键入文本...
答案 0 :(得分:3)
尝试在UIImageView的顶部叠加UITextView,并为两者设置适当的帧,以便文本显示到您希望它出现的位置。
为您的UITextView设置此属性
myTextView.backgroundColor = [UIColor clearColor];
myTextView.textColor = [UIColor redColor]; //or whatever color you like based on the background image in your UIImageView.
当UITextView变为活动状态时,当键盘出现时,你必须要注意滚动。
如果您需要更多帮助,请详细说明您的问题和需求。