Advertise Mobile SDKs Books Events Forum News Social Networking Support Us
Follow @iphonedevsdk on Twitter

Interface 2, Advanced iOS
Mockup & Code Gen
($9.99)

Make your own iPhone apps
and run them live!
(free)

Pic Frame Dynamo: Photo Editing
($0.99)

Abiliator
($1.99)

Want your application or service advertised on iPhone Dev SDK?

Go Back   iPhone Dev SDK Forum > iPhone SDK Development Forums > iPhone SDK Development

Reply
 
LinkBack Thread Tools Display Modes
Old 12-30-2011, 03:55 PM   #1 (permalink)
Registered Member
 
Join Date: Dec 2011
Posts: 3
Diversitymedia is on a distinguished road
Default Loading webpage on app start up

Hi,

I was wondering if it is possible to load the tabbed webpages when the app is opened. I have five tabs and one of them is a webpage but when I click the tab it takes a while to load the webpage.

Thanks in Advance
Diversitymedia is offline   Reply With Quote
Old 12-30-2011, 04:05 PM   #2 (permalink)
Just helping out.
 
Domele's Avatar
 
Join Date: Feb 2011
Posts: 2,565
Domele is on a distinguished road
Default

Does calling loadRequest: on the UIWebView not work?
__________________
If you are looking for a quality developer, I'm your man. Give me a PM if you are interested.

New app - See screenshots and details at www.globaclock.com.

If you want to thank me, click the link. Every click counts. If you want to do more, buy my app. A link is available on my website. Thanks.
Domele is offline   Reply With Quote
Old 01-04-2012, 07:48 AM   #3 (permalink)
Registered Member
 
Join Date: Dec 2011
Posts: 3
Diversitymedia is on a distinguished road
Default

Quote:
Originally Posted by Domele View Post
Does calling loadRequest: on the UIWebView not work?

Nope, It still only loads when I click the tab.
Diversitymedia is offline   Reply With Quote
Old 01-04-2012, 02:19 PM   #4 (permalink)
Registered Member
 
Join Date: Apr 2009
Location: michigan
Posts: 197
michelle is on a distinguished road
Default

Quote:
Originally Posted by Diversitymedia View Post
Nope, It still only loads when I click the tab.
I usually use something like this

@implementation MyWebViewController

@synthesize mywebView;

// Implement viewDidLoad to do additional setup after loading the view, typically from a nib.
- (void)viewDidAppear {
self.mywebView.delegate = self;
[super viewDidAppear];
self.navigationController.navigationBar.hidden = YES;
self.view.backgroundColor = [UIColor clearColor];
self.wantsFullScreenLayout;
self.mywebView.hidden = YES;
self.mywebView.scalesPageToFit;

if (isRegistration()) {
[self urlbuttonTapped];
}
}

- (IBAction)urlbuttonTapped {

mywebView.hidden = YES;
NSString *domain = @"yousite/register?dc=";
NSString *urlString = [NSString stringWithFormat:@"%@%@",domain,[appDelegate geturlParm]];


NSURL *aURL = [NSURL URLWithString:urlString];
[[UIApplication sharedApplication] openURL: aURL];

}


#pragma mark -
#pragma mark UIWebViewDelegate

- (void)webViewDidFinishLoadUIWebView *)webView {

mywebView.hidden = NO;

}




You can also look at this


The webviewController code We promised a few people - Life in The Clouds
__________________
Help us build great applications or let us make your applications exceptional. find us on Facebook
michelle is offline   Reply With Quote
Reply

Bookmarks

Tags
iphone, loading, webpage, xcode

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



» Advertisements
» Online Users: 401
14 members and 387 guests
7twenty7, AppsBlogger, comicool, Creativ, Dalia, dansparrow, Duncan C, HemiMG, heshiming, LunarMoon, Murphy, pbart, teebee74, Tomsky
Most users ever online was 1,387, 04-10-2012 at 04:21 AM.
» Stats
Members: 175,676
Threads: 94,127
Posts: 402,915
Top Poster: BrianSlick (7,990)
Welcome to our newest member, jleannex55
Powered by vBadvanced CMPS v3.1.0

All times are GMT -5. The time now is 06:53 AM.
Powered by vBulletin® Version 3.8.0
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.3.0