2

我正在写一个启动画面。初始屏幕将连接到服务器并接收一些数据。成功接收数据后,我想以编程方式转到下一个视图控制器。我怎样才能做到这一点?它与单击按钮不同吗?因为即使我将代码放在 LoadingViewContrller 的 viewDidLoad 中,我也不会被转发到下一个屏幕。

TableViewController *tvc = [[TableViewController alloc] init];
tvc.modalTransitionStyle = UIModalTransitionStyleCrossDissolve;
[self presentModalViewController:tvc animated:NO];

检索完所有数据后,我想自动跳转到 TableViewContrller。

以下是我从网络检索数据时的代码。

- (void)fetchedData:(NSData *)responseData {
if(responseData == nil){
    [ErrorViewController showError];
}else{
 //methods to start parsing and adding json into array
if(delegate){
    [delegate jsonReceivedData:array]; 

//codes to go to next screen should be here
}
}
4

1 回答 1

2

好的,这样做的方法很简单。使您的应用程序的第一个屏幕与初始屏幕相同。声明并实例化一个 NSTimer,可能在 viewWillAppear 中,如下所示:

mainTimer = [NSTimer scheduledTimerWithTimeInterval:1 target:self selector:@selector(updateTime) userInfo:nil repeats:YES];

然后实例化一个 BOOL:

- (void)fetchedData:(NSData *)responseData {
if(responseData == nil){
    [ErrorViewController showError];
}else{
 //methods to start parsing and adding json into array
if(delegate){
    [delegate jsonReceivedData:array]; 

    myBool = YES;
}
}

在计时器访问的方法中(在本例中为“updateTime”)执行以下操作:

-(void)updateTime{
    if(myBool){
        [mainTimer invalidate];
        MyViewController *vC = [[MyViewController alloc] init];
        //pass vC information, now that it has been initialized
        //or pass information to a singleton, from which vC can retrieve it
        // (I can show you how to do that, too, if need be)
        //I will assume you are using a navigationController
        [self.navigationController pushViewController:vC animated:YES];
    }
}

为了篇幅,我省略了mainTimerand的声明myBool

于 2012-04-12T13:53:39.800 回答