Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.
iOS6
Xcode 4.5.1
Making application for iOS5 or later
using storyboard

I want to load an URL when a tabBarItem is clicked.

At targetViewController.m

@interface targetViewController ()
@end

@implementation targetViewController
@synthesize webview;

- (void)viewDidLoad
{
    [self loadingMethod:view.webview];
    [super viewDidLoad];
}
(snip)

and target2ViewController.m is almost same as targetViewController.m

At customTabBarViewController.m

- (void)tabBar:(UITabBar*)tabBar didSelectItem:(UITabBarItem*)item {
  NSString *str;
  if(item.tag == 0) {
    webview = ((targetViewController *)self.selectedViewController).webview;
    [self myLoadingMethod:webview];
  } else if (item.tag == 1){
    webview = ((target2ViewController *)self.selectedViewController).webview;
    [self myLoadingMethod:webview];
  }
}

However this doesn't work well. When the tarBarItem for targetViewContoller is clicked, the target"2"ViewContoller's webview will load. and the tabBarItem for target"2"ViewCOntroller is clicked, targetViewContoller's webview will load.

so How can I access to the webview which is included in the ViewController for the cliced tabBarItem?

share|improve this question
Given that when you tap a tabbar item, you present a viewcontroller's view, why don't you just load the url in its viewDidAppear: method? – Alladinian Oct 30 '12 at 9:54
Sorry for my short explanation. I want to load an url when viewDidApeard and the tabBarItem is clicked. – Hisatake Ishibashi Oct 30 '12 at 10:04

1 Answer

up vote 1 down vote accepted

Use UITabBarController property selectedViewController ,which will give you the selected ViewController. In Code you adding [self myLoadingMethod:wwebview]; which wrong and it should be [self myLoadingMethod:webview]. Please check.

share|improve this answer
Tnank you for your comments. I just mistype only in this site. I wrote right in the actual code. then I use selectedViewController, but I was not the ViewController but a ViewController which was showed when the tabBarItem has been clicked. – Hisatake Ishibashi Oct 30 '12 at 10:07
if you find answer helpful ,please vote up or accept the answer. – Sandy Oct 30 '12 at 11:20

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.