IOS7, Segue and storyboards - How to create without a button?

喜夏-厌秋 提交于 2019-12-17 03:36:20

问题


I currently have a login View and an Application view, I have successfully implemented validation on the login view and I need to programmatically shift to the application view on successful validation.

I understand I can add a segue to the login button and then call it programmatically like so...

[self performSegueWithIdentifier:@"LoginSegue" sender:sender];

But this will obviously be triggered whenever the button is clicked (As the segue was created attached to the button). I've just read that I should create a button (And hide it) and then make a programmatic call to the segue - this seems a bit 'wrong'.

How can a create a segue that isn't attached to any particular UI event?


回答1:


Delete the current segue.

Attach the segue from the origin view controller to the destination (and then name it).

Now, your button press method should look something like this:

Objective-C:

- (IBAction)validateLogin:(id)sender {
    // validate login
    if (validLogin) {
        [self performSegueWithIdentifier:@"mySegue" sender:sender];
    }
}

Swift:

@IBAction func validateLogin(sender: UIButton) {
    // validate login
    if validLogin {
        self.performSegueWithIdentifier("mySegue", sender:sender)
    }
}

The key here is that the origin view controller should be the one you're dragging from to create the segue, not the button or any other UI element.

Personally, I hook ALL of my segues up this way, even the ones that should trigger on simple button pushes without any validation or logic behind them. It's easy enough to call it from the button's method.

And, I usually declare all of my segue names as constant strings somewhere in the project.



来源:https://stackoverflow.com/questions/21205485/ios7-segue-and-storyboards-how-to-create-without-a-button

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!