UIImageView 中的文本编辑器
我有一个 sdk 3.1.2,是否有任何框架或类或委托方法或协议可以在我们的 UIImageView 中添加文本???。如果存在的话指导我!!!!
i have a sdk 3.1.2 and is there any framework or class or delegate methods or protocols to add text in our UIImageView???. if there exist then guid me!!!!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
最简单的方法是在创建 imageView 时设置 userInteractionEnabled = YES;现在为 imageView 创建 textView 或 TextField addsubview。
我确信它有效..
Easiest way is when you create imageView set userInteractionEnabled = YES; now create textView or TextField addsubview for imageView.
I am sure it works..
检测图像上的触摸
1.使用2.在触摸位置添加 UITextField 并让用户输入文本来 。
3.当文本写入完成后,合并ImageView和TextField。
希望这有帮助
1.Detect the touch on image using
2.At the touched location add a UITextField and let the user enter his text.
3.When is done writing the text merge ImageView and TextField.
Hope this helps