UIWebView show blank to iOS dev beginner - ios

I'm new for iOS develop. I tried to make a very simple app just show a UIWebView which display a web page:
ViewController.m:
#import "ViewController.h"
#implementation ViewController
#synthesize webView = _webView;
- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
// Release any cached data, images, etc that aren't in use.
}
#pragma mark - View lifecycle
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
NSString *urlAddress = #"http://jsfiddle.net/emj365/qaQnF/embedded/result/";
NSURL *url = [NSURL URLWithString:urlAddress];
NSURLRequest *requestObj = [NSURLRequest requestWithURL:url];
[self.webView loadRequest:requestObj];
}
...
ViewController.h
#import <UIKit/UIKit.h>
#interface ViewController : UIViewController {
UIWebView * _webView;
}
#property (nonatomic, retain) IBOutlet UIWebView * webView;
#end
UIWebView show blank. What's wrong?

There are a few different things that could go wrong. A few options you should check:
Did you check to see if the outlet was actually connected to the webview in the xib?
Implement the UIWebView delegate and check for (networking) errors

Related

I can't leave pdf with webview

Does anyone know how to leave pdf with webview
this app is done with xcode,i learn it from internet
but I got a issue, when I click a download link
it would open the file in app , but I can't go back to
previous page , I can't do anything but close app & restart
So what should I add to make app go back to previous page
here is my app ,
viewcontroller.h
#import <UIKit/UIKit.h>
#interface ViewController : UIViewController
#property (weak, nonatomic) IBOutlet UIWebView *webview;
#end
viewcontroller.m
#import "ViewController.h"
#interface ViewController ()
#end
#implementation ViewController
- (void)viewDidLoad {
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
NSURL *url = [NSURL URLWithString:#"http://mywebsite/index.php"];
[self.webview loadRequest:[NSURLRequest requestWithURL:url]];
}
- (void)didReceiveMemoryWarning {
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
#end

UIWebView Screen Fitting Issue

I have developed a website in Twitter Bootstrap, I am now using a UIWebView to display that site inside of an IOS app. I am getting it to display fine, but the screen is off and it is running off of the side of the screen... I feel like I might have my UIWebView configured wrong, the site looks like if I go to it in Safari on my mobile device, so I know the site is working properly.
It even displays Google wrong in the UIWebView.... I will display my code and 2 screen shots below(The first screenshot is what it currently looks like, the second is what it should look like and what it looks like in safari mobile :
ViewController.h
#import <UIKit/UIKit.h>
#interface ViewController : UIViewController
#property (strong, nonatomic) IBOutlet UIWebView *webView;
#end
ViewController.m
#import "ViewController.h"
#interface ViewController ()
#end
#implementation ViewController
- (void)viewDidLoad {
[super viewDidLoad];
NSURL *url = [NSURL URLWithString:#"http://www.google.com"];
NSURLRequest *request = [NSURLRequest requestWithURL:url];
[_webView loadRequest:request];
_webView.scalesPageToFit = YES;
_webView.frame=self.view.bounds;
[_webView loadRequest:request];
}
- (void)didReceiveMemoryWarning {
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
#end
AS-IS Screen Shot
TO-BE Screen Shot
No need to use loadRequest: two time, Use:
- (void)viewDidAppear:(BOOL)animated{
[super viewDidAppear:animated];
[_webView reload];
}
To me it looks like the UIWebView is not set up correctly in the Storyboard or Interface Builder. Do you use Auto Layout? If so, are the constraints set correctly?
A simple way to make sure the UIWebView is displayed full screen would be to add 4 constraints that align it with the top, bottom, leading and trailing edges of its superview, e.g. like so:
EDIT: Here are some rough instructions on how to add those constraints.
You should add the following code after [_webView loadRequest:request]; :
_webView.scalesPageToFit = YES;
and If your UIWebView is not located properly, add the following code too :
_webView.frame=self.view.bounds;
In the Utilities pane, select "Scales Pages to Fit":
In the view controller in which the web view resides, make sure you can view the boxes (or bounds) of the view (note: the bottom doesn't appear because I couldn't fit it within the image):
Code in view controller:
#import "SomeViewController.h"
#interface SomeViewController ()
#end
#implementation SomeViewController
#synthesize webView;
- (void)viewDidLoad {
[super viewDidLoad];
// Do any additional setup after loading the view.
NSString *urlLink = #"www.google.com";
NSURL *url = [NSURL URLWithString:urlLink];
NSURLRequest *urlRequest = [NSURLRequest requestWithURL:url];
[self.webview loadRequest:urlRequest];
}
- (void)didReceiveMemoryWarning {
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
Photo of the other settings in the view controller:

Open an URL in UIWebView

I have an important question. I'm creating an iPhone app.
I have an UIWebView (https://www.google.de/) with goBack, goForward and reload.
Now, I want a Button e.g. Bar Button Item named Home or Homepage, to open an URL (https://www.google.de/) in this WebView, to go back to the homepage.
How can I do this? How can I "say" the button to open the link in my WebView? I ask for answer.
// ViewController.h
#import <UIKit/UIKit.h>
#interface ViewController : UIViewController
#property (nonatomic, strong) IBOutlet UIWebView *site ;
#end
// ViewController.m
#import "ViewController.h"
#interface ViewController ()
#end
#implementation ViewController
-(IBAction)refresh:(id)sender; {
NSURL *url=[NSURL URLWithString: #"https://www.google.de/"]; NSURLRequest * requestURL=[NSURLRequest requestWithURL:url]; [_site loadRequest:requestURL];
}
- (void)viewDidLoad {
[self refresh:self];
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
}
- (void)didReceiveMemoryWarning {
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
#end
UIWebView has methods, goBack and goForward. You can make actions and bind it with your bar buttons to go back and forward whenever you want.
- (IBAction)goBack:(id)sender {
[_site goBack];
}
- (IBAction)goForward:(id)sender {
[_site goForward];
}
- (IBAction)goHomepage:(id)sender {
NSURL *url=[NSURL URLWithString: #"https://www.google.de/"];
NSURLRequest *requestURL=[NSURLRequest requestWithURL:url];
[_site loadRequest:requestURL];
}
To help you more, here's a tutorial on this, and if you don't want to read that tutorial, you can check their source code from here !

webview not working in objective c

I am trying to load a series of urls based on the contents of my database i.e: http://www.whatever.com but when I run the app in the simulator nothing appears, my code reads as follows
.h file (imports statements excluded)
#interface FSFourthScreenViewController : UIViewController
//insert code to create web view
{
NSString * urlString;
UIWebView * FSWebView;
}
// properties
#property (nonatomic, retain) NSString * urlString;
#property (nonatomic, retain) IBOutlet UIWebView * FSWebView;
#end
.m file import statements excluded
#interface FSFourthScreenViewController ()
#end
#implementation FSFourthScreenViewController
#synthesize FSWebView, urlString;
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
if (self) {
// Custom initialization
}
return self;
}
- (void)viewDidLoad
{
[super viewDidLoad];
//background image
self.view.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:#"backgroundimage.png"]];
NSURL * url = [NSURL URLWithString:urlString];
NSURLRequest * requestObj = [NSURLRequest requestWithURL:url];
[FSWebView loadRequest:requestObj];
}
- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
#end
I have wired the webview correctly, and assigned the right field in the database. I also cleaned out xCode and the simulator, but still no joy... any ideas welcome?
add this code ,check your objects:
- (void)viewDidLoad
{
[super viewDidLoad];
//background image
self.view.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:#"backgroundimage.png"]];
NSURL * url = [NSURL URLWithString:urlString];
if (!url)
{
NSLog(#"url is nil!!!");
}
NSURLRequest * requestObj = [NSURLRequest requestWithURL:url];
if (!FSWebView)
{
NSLog(#"RSWebView is nil!!!");
}
[FSWebView loadRequest:requestObj];
}
i guess the url is nil ,or the webview is nil
Try it,
[self.FSWebView loadRequest:requestObj];
Set the urlString. In the code you provided, the urlString is never set, so the URL you create with it cannot be loaded.
You can follow this tutorial :
http://mrudulajampala.blogspot.ca/2012/10/uiwebview-tutorial.html
And you find its source code here:
https://sites.google.com/site/iphonesdktutorials/sourcecode/UIWebViewTutorialPart1.zip?attredirects=0
Hopefully it will help you out.
If your project is iOS6 and abrove you can use this tool the web inspector to be sure that the web page is loading without any error.
You can follow this tutorial :
http://moduscreate.com/enable-remote-web-inspector-in-ios-6/
i hope it will help you to find the problem
Your code is correct. But your urlString is null . That is why it is not showing anything.
you just add an an url , and then test for it
As I see you havent UIWebViewDelegate in your FSFourthScreenViewController.h. You need to add it and to add its delegate WebView methods to your FSFourthScreenViewController.m
Check documentation for more details of UIWebViewDelegate :
Documentation
Add
<UIWebViewDelegate> in your view controller
self.FSWebView.delegate=self;
NSURL* url = [NSURL URLWithString:#"http://i.wrightscs.com"]; //replace your string here
[self.FSWebView loadRequest:[NSURLRequest requestWithURL:url]];
Hope it helps you...

Memory warning after loading numerous pages, need to clear memory from webview

I have a gif I have embedded into a html style web page in the supporting files. Every view controller has a webview in it with this html page. The gif is a moving background which I want in all of my view controllers (45 total). I cant find a way to clear the memory after moving on to the next viewcontroller. After about 14 viewcontrollers back and forth, the app crashes. Here is what I have:
In the H:
#import <UIKit/UIKit.h>
#interface ViewController : UIViewController
#property (nonatomic, strong) IBOutlet UIWebView *webView;
#end
In the M:
#import "ViewController.h"
#interface ViewController ()
#end
#implementation ViewController
#synthesize webView;
- (void)viewDidLoad
{
NSString *pathImg = [[NSBundle mainBundle] pathForResource:#"background" ofType:#"gif"];
NSString* webViewContent = [NSString stringWithFormat:
#"<html><body><img style='width:760;height:1024;' src=\"file://%#\" /></body></html>", pathImg];
[webView loadHTMLString:webViewContent baseURL:nil];
webView.scrollView.bounces = NO;
webView.scrollView.scrollEnabled = NO;
webView.opaque=FALSE;
[webView setBackgroundColor:[UIColor clearColor]];
}
- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
#end
Thanks for any help!

Resources