Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to insert UIImage into UITextView

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

like image 747
Madhu Avatar asked Jan 22 '10 13:01

Madhu


2 Answers

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

like image 42
Piyush Dubey Avatar answered Oct 18 '22 02:10

Piyush Dubey


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.

like image 130
David Dunham Avatar answered Oct 18 '22 04:10

David Dunham