Questions tagged [uiweb]

11 questions
4
votes
1 answer

UIWebView Paste action add font tag to my html

In my application I have a contentEditable UIWebView. When I use copy: and then paste: functions, and examine the html generated, i see that the paste code is insterted in a "font tag" that change the appearence of the page. For example: I copy an…
Corey1986
  • 73
  • 1
  • 6
2
votes
3 answers

how to scroll a saved document horizontally in iphone webview

i have a webviewcontroller in which i am loading a saved html page or a pdf or any other document by this code. [webView loadRequest:[NSURLRequest requestWithURL:[NSURL fileURLWithPath:[[NSBundle mainBundle] pathForResource:@"yahoo"…
Rishi
  • 3,499
  • 8
  • 35
  • 54
1
vote
1 answer

loading cached webpage in UIWebView in ios

I've a task that increasing speed of webpage loading in UIWebView. For that I'm moving to cache concept. Here I'm using ASIWebPageRequest to cache all the content of the webpage. Its doing well.But when load the cached webpage, the hyperlinks are…
dineshsurya
  • 215
  • 1
  • 10
1
vote
1 answer

How can I add navigation to embedded UIWebView?

Im using the UIWebView to access a mobile website from within my iPhone application. I need help adding the forward and back navigation buttons. Im really new to this so if someone could provide some good details I would really appreciate your…
kevnm67
  • 177
  • 3
  • 11
0
votes
2 answers

Monotouch: Building a "console"?

I'm building a client/server app. The server sends me lots of information, that I need to display on the iPhone in a "console". I need to display several of columns (time, user, message). What is the best approach for this? I thought about creating…
MojoDK
  • 4,410
  • 10
  • 42
  • 80
0
votes
1 answer

UIWebView won't resize to fit content?

My webView is not resizing properly after it finished loading. I have tried this code. - (void)webViewDidFinishLoad:(UIWebView *)webview { CGRect frame = webView.frame; frame.size.height = 1; frame.size.width = screenWidth; …
amateurcoder
  • 97
  • 3
  • 12
0
votes
3 answers

iPhone - How may I catch a tap into a UIWebView or a UIImageView

I have a View generated like this : oneView = [[UIView alloc] initWithFrame:CGRectMake(x, y , w, h)]; oneView.tag = i; UITapGestureRecognizer* recognizer = [[UITapGestureRecognizer alloc] initWithTarget:self…
Oliver
  • 23,072
  • 33
  • 138
  • 230
0
votes
1 answer

NSData not loaded properly in UIWebView lodadata method

i want that UIWebView working offline. When i first visit the url than i have done the below code to save data in document directory in webViewDidFinishLoad method. NSCachedURLResponse* response = [[NSURLCache sharedURLCache] …
Hitarth
  • 1,950
  • 3
  • 27
  • 52
0
votes
2 answers

How to show vertical or horizontal scroller on UIWebView?

I ma using UIWebView to some html content. And some time the data is more in width or height but I have fixed size UIWebView. So for user perspective I want to show scroller vertical or horizontal to indicate the user that there are some more…
saurabh jain
  • 19
  • 2
  • 8
0
votes
1 answer

UIWebView and Gmail autofill username and password fields

UIWebView and Gmail autofill username and password fields is it possible? I want that the user insert his informatin only the first time
Usi Usi
  • 2,967
  • 5
  • 38
  • 69
0
votes
1 answer

iOS checkout for website

I'm building an iPhone app version of a website that sells tickets online. I'm trying to re-implement the checkout process on iOS without using a UIWebView, passing around some variables (# of tickets, date, etc...) and just doing the final HTTP…
pietrorea
  • 841
  • 6
  • 14