Tagged Questions
0
votes
1answer
36 views
Accessing UIWebView Information from another Class?
Hi everyone! to start off, my app involves web scraping and javascript injection authentication, since the site I'm trying to access data from, has no api (Don't worry it's legal). With that said ...
0
votes
1answer
93 views
iOS loading Base 64 encoded data in webview
I am trying to load base64 encoded data in a webview.Following is the code i am using
NSDictionary *fileFormatDic=[[NSDictionary ...
0
votes
0answers
158 views
.docx not getting saved in 'Documents' directory
I am developing an app for iPad.I have to display .doc/.docx/.xls/.xlsx/.pdf documents in UIWebView from a url to a UIWebView.The list of documents is displayed in a UITableView,so when a user selects ...
0
votes
0answers
33 views
NSData into UIWebView with MIME type [duplicate]
Possible Duplicate:
Correct way to load image into UIWebView from NSData object
I am having NSData downloaded from server for which i am having MIME type also. But i dont know how to load ...
0
votes
1answer
436 views
Open .msg and .eml files from iOS UIWebview
I am trying to display .msg and .eml files using iOS sdk 5.1 in a UIWebView. I have the files in a binary format (NSData). I am able to display doc, docx, ppt, pptx, xls, xlsx, pdf, png, bmp and jpg ...
0
votes
1answer
227 views
Download file to app directory in iphone
I am new to iPhone,
I am currently developing an iPhone app and would like to implement the ability to download file from the internet. I have created the UIWebView, but want to know the best way of ...
1
vote
2answers
355 views
How to play NSData audio or video in iOS?
I need to present an audio or video content in iOS.
Unfortunately, I do not receive the audio/video as URL, but as NSData with content-type (MIME type).
It seems UIWebView does not play the ...
1
vote
1answer
101 views
Making Images Viewed By UIWebView Smaller
i have a list of entries from a database and I'm feeding them in to HTML to a UIWebView that is making a list of the database entries on the page.
(Much Easyer/Better then extending UITableView Cells)
...
1
vote
2answers
877 views
how to load NSData to UIWebView without creating a binary file first
I am a noob and need some help:
I have an NSData ready with bytes (it's an RTF formatted text) received from a class. Now I'd like to be able to load the said NSData into UIWebView without having to ...
0
votes
1answer
197 views
Using theos, how can I download an HTML file and overwrite an existing one (objective-c)?
I am trying to make a simple application (using theos on my device so no xcode/mac, just ifile) that displays an HTML file and has a button in the navigation bar that updates the local HTML file by ...
0
votes
1answer
366 views
How to show a NSData object containing a MS Office document without saving to disk?
I have a NSData object that holds the contents of a MS Office Word document that I want to show - using UIWebView.
I'm using the following command:
[self.webView loadData:data ...
0
votes
1answer
460 views
Convert BLOB image from NSData to NSString so it can be displayed in HTML UIWebView
So I successfully retrieved my BLOB image from the database and set it to NSData *content..
content = [[NSData alloc]
initWithBytes:sqlite3_column_blob(query, 16)
...
2
votes
2answers
3k views
How do i insert UIImage on UIWebView
I'm trying to display an Animated-GIF image in a UIImageView. Because this way only the first frame is shown i wanted to try a different approach.
UIWebView.
How can i get an Animated-GIF that is ...
6
votes
3answers
9k views
Display PDF in UIWebView using loadData
I am trying to display a PDF I have stored locally in a UIWebView. This is how I currently attempt to do this:
if (![[NSFileManager defaultManager] fileExistsAtPath:self.url]) {
LOG_ERROR(@"Couldn't ...
1
vote
1answer
175 views
Referring to a sandbox file from HTML with iPhone
I'm trying to build a HTML based application for the iPad. I want to build a background process using Objective-C to download images and data and then refer to those from within a HTML file using the ...
11
votes
9answers
13k views
Correct way to load image into UIWebView from NSData object
I have downloaded a gif image into an NSData object (I've checked the contents of the NSData object and it's definitely populated). Now I want to load that image into my UIWebView. I've tried the ...
3
votes
1answer
864 views
How to load a LOCAL .html file with a UIWebview?
I am trying to load an HTML file stored locally on the apps documents directory using the method shown below. It ain't workin. What am I doing wrong?
NSLog(@"Loading Saved Copy!");
urlAddress = ...
0
votes
1answer
683 views
How to download an .html file for local use?
I am trying to download an HTML file from the internet and store it in my app for later (offline) viewing. I use the following method to download the file but my NSLogs report that no data has been ...