UIImageView 中的文本编辑器

发布于 2024-10-22 09:48:11 字数 82 浏览 3 评论 0原文

我有一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

痕至 2024-10-29 09:48:11

最简单的方法是在创建 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..

夜未央樱花落 2024-10-29 09:48:11

检测图像上的触摸

- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event

1.使用2.在触摸位置添加 UITextField 并让用户输入文本来 。
3.当文本写入完成后,合并ImageView和TextField。

    UIGraphicsBeginImageContext(myImageView.frame.size);
    [myImageView.layer renderInContext:UIGraphicsGetCurrentContext()];
    [mytextField.layer renderInContext:UIGraphicsGetCurrentContext()];
    UIImage *screenshotImage = UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext();
    UIImageWriteToSavedPhotosAlbum(screenshotImage, self, (SEL)@selector(image:didFinishSavingWithError:contextInfo:), nil);

希望这有帮助

1.Detect the touch on image using

- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event

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.

    UIGraphicsBeginImageContext(myImageView.frame.size);
    [myImageView.layer renderInContext:UIGraphicsGetCurrentContext()];
    [mytextField.layer renderInContext:UIGraphicsGetCurrentContext()];
    UIImage *screenshotImage = UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext();
    UIImageWriteToSavedPhotosAlbum(screenshotImage, self, (SEL)@selector(image:didFinishSavingWithError:contextInfo:), nil);

Hope this helps

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文