Tagged Questions
0
votes
1answer
18 views
How to change html text font size in uiwebview
In my application I am loading HTML String which is coming from server, the string already contain font color and font size but I need to change the color and size of the font. To replace that I have ...
0
votes
0answers
15 views
Open HTML links in Safari when viewed in UIWebView using html/Javascript
On a website i'm developing, when viewed on an iPhone application (UIWebView) i want all links to open in Safari and not inside the UIWebView.
I'am looking for an HTML/Javascript only solution and ...
0
votes
2answers
56 views
Webview displaying one HTML file in iPhone sdk
I have three HTML files in my local resources bundle. I need to display it as a reader. So i used a web view to display that using following code,
- (void)viewDidLoad
{
[super viewDidLoad];
...
1
vote
1answer
77 views
Remove selection gray shadow from html input on iOS
I'm currently working on html rich text editor for my iOS application,so,the setup is simple,i have a UIWebView loading my editor code,the html input is a 'contentEditable' DIV.
The problem is that ...
0
votes
1answer
43 views
How to allow for HTML rendering in UIWebView?
I have a UIWebView in which I am showing a certain object from an array (in this case, an email message body). I am doing this with the following code:
NSString *string = [messages ...
2
votes
1answer
36 views
How to make UIWebView Links open in a UIPopover?
I currently have a simple HTML file loaded in a UIWebView with a bunch of links embedded in the text of the file. I am wondering if there is a way to make these links open in a UIPopover.
The links ...
-1
votes
1answer
41 views
Encoded NSData for a url not saving to the documents directory
I'm trying to save a html page locally on the iPhone's documents directory so I can load the page if the phone is in an offline state
My issue is when I call my NSData object directly to be written ...
0
votes
2answers
35 views
Assign HTML tag string in nsstring for uiweb view
How to assign HTML tag string format to strin directly , so that i can display it in UiWEB VIEW directly .
<tr>
<td align="center"><b> Disclaimer</b></td>
...
2
votes
3answers
93 views
NSString to HTML
I'm showing NSString in a UIWebview to show the text with custom smileys (images) but I got into trouble as UIWebview is not able to detect special characters like \n,\r,\t, whitespaces,&,<,> ...
4
votes
4answers
138 views
Get the div of current scroll offset of UIWebView
I have two different HTML files, two different UIWebViews & a UISegmentControl. On segmentChanged, I had displayed the WebView by loading a HTML file.
Both HTML files contains common sections ...
0
votes
2answers
101 views
Autoplay inlined youtube video on Iphone
I need to autoplay an inlined video from youtube in uiwebview with IOS 5.0+.
I managed to make it play inlined with this:
NSString *html = [NSString stringWithFormat:@"\
<html>\
...
0
votes
2answers
50 views
how to show full web contents including images in UIWebView
the problem i am facing is that, in my web pages, there are some images, which are half on screen because of their size. I have tried UIScrollView but it did not help. So i need to find out a way in ...
0
votes
0answers
13 views
UIWebview zooming on selecting Combobox
I have a Select box/ combo box, when i press that the picker appears and the UIwebview gets zoomed out. We had disabled the zooming of UIwebview.
UIwebview doesnot zoom till we select the combo box, ...
0
votes
0answers
33 views
How to play video with UIWebview
I'm currently trying to play a video url that was sent from a private web server, and can't seem to make it work with my uiwebview.
An example of the url that I'm receiveng from the server:
...
0
votes
1answer
45 views
Click text <input> in UIWebView-hosted HTML page causes flicker
One of the view controllers in my iPhone app contains a UIWebVew, which loads a local HTML file that contains an <input class="textInput"> element.
When this text input is clicked, the ...
1
vote
2answers
73 views
Can I use the zoom functionality of UIWebView to just make the HTML text size grow? And not lose any content off the sides?
I have a UIWebView that I am using to display pretty simple HTML. When I enable Scales Pages to Fit, I can pinch and zoom and its pretty cool. But the problem is that it isn't an "intelligent" zoom. ...
0
votes
3answers
95 views
Xcode UIWebView local HTML
I know HTML, javascript, CSS… but I wanted to make a native/hybrid iPhone app using HTML5 but without using something like PhoneGap or Nimblekit.
I never wrote a real (not web app) iPhone app before, ...
0
votes
0answers
32 views
how to show wikipedia page with proper format in UIWebView
I use this link to get content of the page but it is not in proper format, like no table borders, some background color for text.
http://en.wikipedia.org/w/index.php?action=render&title=Pakistan
...
0
votes
0answers
31 views
ContentEditable does not scroll till device rotation
I have a problem with an html page inside my UIWebView.
My Html Page have a contenteditable div
with this css
#contentEditor {
height: 98%;
width: 98%;
...
0
votes
0answers
73 views
Returning HTML files from SQLite upon request from UIWebView using MonoTouch
When using a WebView to load local HTML files I am able to intercept the requests for content associated with the HTML website.
web_view.Delegate = new ViewDelegate();
If I define a new class with ...
0
votes
0answers
40 views
How can I overwrite or save an existing local HTML file that's edited in a UIWebView?
The app uses a UIWebView to load up local HTML files (which are now just text) for editing. I need to save whats been edited by the user back to the local file. This is the only way I could think of ...
0
votes
1answer
42 views
webView dynamic height issue
I have one webView, in which i am showing html text. I am counting webView height as given below.
int height = [[_webViewDesc stringByEvaluatingJavaScriptFromString:@"document.body.offsetHeight;"] ...
0
votes
1answer
56 views
How would you create a new local HTML file into a UIWebView on iOS?
First I would like to point out I'm very new to web development and more comfortable with iOS development, so excuse me if there's something fundamental I'm not understanding.
I've seen how you can ...
6
votes
4answers
224 views
Is It Possible To Interact With UIWebView Without Touch?
I'm trying to interact with a loaded page in a UIWebView without touching the screen. I have tried mediaplaybackrequiresuseraction with no success. I have also tried the method provided here, but ...
0
votes
0answers
24 views
Ipad application: Search word in many HTML pages and display list of results in tableview
I'm developing an Ipad application in witch I insert an UiWebview loading html pages and a search bar in the top, when i write a keyword, it can search and highlight it in the opened page only, but ...
0
votes
0answers
81 views
iPhone - UIWebView TOP & LEFT padding while streaming video
I am streaming video from an IP camera using a UIWebView and an HTML tag. The streaming works just fine, but the UIWebView is creating a strange padding or boarder on the stream on the right side and ...
1
vote
3answers
92 views
Why Is Youtube Video Not Filling UiWebView?
I'm a noob to iphone development and I am having trouble displaying an embedded youtube video within a UIwebview. Currently, the youtube video sits in the top left hand corner of the uiwebview and it ...
1
vote
1answer
74 views
Why isn't Brightcove Player Loading in UIWebview?
I'm a noob to iPhone development and I am having trouble loading the brightcove player into the UIWebView. I am well aware that iOS can't play flash, but I don't need to play the video. I just want ...
0
votes
0answers
48 views
Uiwebview loading too long
I am using Uiwebview to load html-files for an Iphone-app. Switching between different pages lasts some seconds where the screen remains white. Are there any ideas how to get rid of the loading time, ...
0
votes
0answers
79 views
UIWebView ContentEditable Paste Issue
I Load an HTML Page with contenteditable div inside my UIWebView.
I use copy: and paste: action for formatting the text.
In IOS 5 it works fine, with IOS 6, when i paste, the system keeps the ...