在视图控制器之间切换错误

时间:2011-05-25 10:03:46

标签: iphone objective-c ipad uiviewcontroller

我在视图控制器之间切换时遇到了一些问题。

我按照本页的建议:

View Controllers: How to switch between views programmatically?

我的设置如下;我有一个闪屏,上面有一个按钮,该按钮加载我的第二个视图控制器。我有IntroductionViewController作为根视图,按钮显示“加载网站”,这个加载网站事件我想切换到WebsiteViewController。

在IntroductionViewController上我已经将按钮设置为IBOutlet和IBAction,这是非常好的NSLogging,因此我知道该方法正在运行。

我需要的是当你点击加载网站它打开WebsiteViewController。到目前为止,我所得到的是上述问题:

IntroductionViewController.h

#import <UIKit/UIKit.h>
#import "WebsiteViewController.h"

@class WebsiteViewController;

@interface IntroductionViewController : UIViewController {
    IBOutlet UIButton *websiteButton;
    IBOutlet WebsiteViewController *websiteViewController;
}
@property (nonatomic, retain) UIButton *websiteButton;
@property (nonatomic, retain) WebsiteViewController *websiteViewController;

-(IBAction)loadWebsite:(id)sender;

@end

IntroductionViewController.m

#import "IntroductionViewController.h"

@implementation IntroductionViewController

@synthesize websiteButton;
@synthesize websiteViewController;

-(IBAction)loadWebsite:(id)sender{
    if(self.websiteViewController.view.superview == nil)
    {
        [self.view addSubview:websiteViewController.view];
    }   
}

行:[self.view addSubview:websiteViewController.view];没有做任何事情,但正如我之前所说的,这个函数是NSLogging正常的。我不知道如何处理这个问题。

3 个答案:

答案 0 :(得分:2)

看起来你没有分配你的websiteViewController,没有分配你没有它的实例使用或引用它,记录它只会返回null。

如果您没有实施ModalViewController,我还会尝试展示UINavigationController。下面是一个分配webview控制器并将其显示为modalView的示例:

-(IBAction)loadWebsite:(id)sender{
    WebsiteViewController *webView = [[WebsiteViewController alloc] init];
    [self.view presentModalViewController:webView animated:YES];
    [webView release];
}

默认过渡样式为UIModalTransitionStyleCoverVertical,但请查看documentation了解更多信息。您可以像这样设置过渡样式:

webView.modalTransitionStyle = UIModalTransitionStyleCoverVertical

答案 1 :(得分:1)

我敢打赌你的WebsiteViewController对象尚未实例化。 NSLog(@"%@", websiteViewController);我打赌它是空的! :p你需要创建对象 - 我不知道如何使用界面构建器。

无论如何,您正在使用旧方法在视图控制器之间切换。新的方法/最好的方法是使用导航控制器这样做:

-(IBAction)loadWebsite:(id)sender{
    [self.navigationController pushViewController:websiteViewController animated:YES];  
}

但除非您设置了导航控制器,否则这将无效,我不知道如何在界面构建器中执行此操作。这就是为什么我讨厌界面构建器并相信你应该停止学习它! :P

如果没有界面构建器,您应该这样做:

在您的app delegate .h文件中,将其添加到顶部:

#include "IntroductionViewController.h"

然后在代码中包含其他@propertys:

@property (nonatomic, retain) UINavigationController *navController;

现在,在您的应用委托.m文件交换中,应用程序确实使用以下选项完成启动:

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
    // Override point for customization after application launch.
    [self.window makeKeyAndVisible];

    // lets make the navigation controller by setting up a view controller first.
    IntroductionViewController *viewController = [[IntroductionViewController alloc] initWithNibName:nil bundle:nil];
    viewController.title = @"Home";
    navController = [[UINavigationController alloc] initWithRootViewController:viewController];
    [navController setNavigationBarHidden:NO]; // set to yes to hide the title bar
    [viewController release];

    [self.window addSubview:navController.view];

    return YES;
}

这将为您提供导航控制器(您可以轻松隐藏标题栏... - 请参阅注释)。并显示第一个视图控制器(IntroductionViewController)。

现在运行我上面给你的代码就行了。 [self.navigationController pushViewController:websiteViewController animated:YES];。{{1}}。这将viewController提供给navigationController,navigationController完成所有添加和删除视图等等!

您根本不必使用界面构建器! :p(嗯......现在你必须学习如何在不拖放的情况下构建视图!)。

无论如何......我希望有所帮助。

答案 2 :(得分:1)

可能您可能忘记将IBOutlet绑定到您的WebsiteViewController。对于Orientation支持,您可以使用

 - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOr‌​ientation 
 { 
      // Overriden to allow any orientation. 
      return ((interfaceOrientation==UIInterfaceOrientationLandscapeLeft) || (interfaceOrientation==UIInterfaceOrientationLandscapeRight)); 
 }

还有一个想法是您的方向问题,您可以在显示类似

的同时将框架设置为您的视图
 - [yourViewController.view setFrame:CGRectMake(0,0,1024,768)] //iPad and 
 - [yourViewController.view setFrame:CGRectMake(0,0,480,320)] //iPhone.

可能会有效。

Thax。