0

为什么当另一个转场结束时不能正确调用一个转场?我想一定是我的代码错误或无法调用?

- (IBAction)optionTapped
{
    if (greeting)
        {
            UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Alerta!" message:@"something.." delegate:nil cancelButtonTitle:@"Ok" otherButtonTitles:nil];
            [alert show];
            [self performSegueWithIdentifier:@"firstSegue" sender:itemToSent];
            greeting = NO;
        }
    else
        {
            [self performSegueWithIdentifier:@"anotherSegue" sender:nil];
        }
}

- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender
{
    if ([segue.identifier isEqualToString:@"anotherSegue"]) {
        UIViewController *viewController = segue.destinationViewController;
        OptionsViewController *controller = (OptionsViewController *)viewController;
        controller.delegate = self;
    } else if ([segue.identifier isEqualToString:@"firstSegue"]) {
        UINavigationController *navigationController = segue.destinationViewController;
        CCGetViewController *controller = (CCGetViewController *)navigationController.topViewController;
        controller.delegate = self;
        controller.itemToSent = sender;
    }

- (void)firstSegueViewController:(CCGetViewController *)controller didFinishAddItem:(InfoListItems *)item
{
    itemToSent = item;
    [self dismissViewControllerAnimated:YES completion:nil];
    if (scanTap) {
        [self scanTapped];
    } else if(infoTap){
        [self optionTapped];
    }
}

还有一件事:“firstSegue”嵌入在 NavigationController 中,“anotherSegue”只是一个视图控制器。

4

1 回答 1

1

我试图不断地移动segue,但我也失败了。

因此,我尝试将第一个 segue 和第二个 segue 之间的间隔设置为一秒钟。

ss

这很好用!当您在红色窗口中按下按钮时,会出现绿色窗口,之后会自动出现蓝色窗口。

- (void)viewDidLoad
{
    [super viewDidLoad];
    // Do any additional setup after loading the view, typically from a nib.
    [self performSelector:@selector(segue) withObject:nil afterDelay:1.0];
}

- (void)segue
{
    [self performSegueWithIdentifier:@"toBlue" sender:self];
}

您可以下载示例项目并运行它:

https://github.com/weed/p120812_DoubleSegue

于 2012-08-12T04:44:02.400 回答