how to insert UIImage into UITextView

ぐ巨炮叔叔 提交于 2019-12-05 17:28:04

问题


im working on a editable notebook type project. it consists some text and images at any time. in UITextView if we add images as subview the frames are fixed. but i have editable option. so i must save image as NSString format in UITextView, but it should look image type in uipart. so please suggest me how can i handle this requierment.

Thanks in advance


回答1:


I think you're asking for something that's not possible.

If you need to truly interleave text and graphics, UIWebView is about your only answer. But it's not editable.




回答2:


I know it's too late.
As per my understanding, you can use UIWebView to insert text and images both.
Create an HTML file and put it in app bundle. Set the attribute of div or paragraph(in HTML) as contentEditable = "true". And load that file:-

NSBundle *bundle = [NSBundle mainBundle];
NSURL *indexFileURL = [bundle URLForResource:@"Index" withExtension:@"html"]; // HTML file name is "Index"
[YourWebView loadRequest:[NSURLRequest requestWithURL:indexFileURL]];

This way, your UIWebView becomes editable and you can insert text and image both.

Edit:- Please have a look at this link:- Adding Images to UITextView




回答3:


Solved as follows. Taken Scrollview, in that managing size of the textview & inserting image with Specified size. Like textview,image,tetxview, image and goes on...

Thanks for all your support to solve the issue.



来源:https://stackoverflow.com/questions/2117460/how-to-insert-uiimage-into-uitextview

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!