问题
I have problem I've been sitting with. I have a UIViewController List
and a UIViewController Login
.
On Login
I have a button "Done", also another hidden button on the same UIViewController that has a segue to List
(Type: push). I gave it an identifier in the interface builder of xcode named "LoginToList". Now from another class (a class that runs while Login
is the active controller) I call:
[[Login sharedLogin] performSegueWithIdentifier:@"LoginToList"];
The Login
class clearly has a segue with identifier "LoginToList"
Yet I keep getting:
'NSInvalidArgumentException', reason: 'Receiver (<Login: 0x6d79d90>) has no segue with identifier 'LoginToList''
the + (id) sharedLogin
looks like this:
+ (id) sharedLogin {
static Login *sharedLogin = nil;
@synchronized(self) {
if (sharedLogin == nil) {
sharedLogin = [[self alloc] init];
}
return sharedLogin;
}
}
If anyone has any idea why it says that, I'd be glad to hear it! :D
I don't know if I'm missing something stupid but I can't spot it :(
EDIT: I have create a segue in the interfacebuilder (ctrl + click drag from Login
to List
) using the UIViewControllers themselfves (Login
& List
). Then I named the segue "LoginToList"
in other words I gave it that identifier. I clicked the segue and at the top-right there was a "Identifier" field which I used.
I Still get the error saying Login
has no segue with identifier "LoginToList"
.
sad
回答1:
As far as your code snippet goes, it looks like you tried to create a singleton out of the Login Controller, but only did it half way.
The seque can't be found because the the Controller was initialized using the storyboard, not using your shared class method. So you end up having two independent instances. Additionally, your class method does not initialize the controller with the storyboard bindings, so you don't have any seques here.
You should try to hand a reference of the LoginController's instance (initialized unsing storyboard segues etc.) to the 'other class' and use that one.
回答2:
sharedLogin = [[self alloc] init];
try this
sharedLogin = [self.storyboard instantiateViewControllerWithIdentifier:@"xxxx"];
you must set IdentifierName in storyboard LoginViewController
回答3:
without knowing about what your init does ...
i found in attempting to dynamically [[alloc] init] a view controller for use like this, i had to call initWithNibName:bundle:, and thus i had to put my view controller in a separate xib class so it didn't get confused in the storyboard and leave warnings about an unreachable scene.
without initWithNibName:bundle:, my guess is that your call to [[alloc] init] in sharedLogin is not properly tying the UIStorybardSegue* that you you have clearly created to the Login view controller in a way that it can be used from the object returned .
(my situation is that i had a popover in iPad and a regular navigation segue in iPhone. for iPhone, i am using the hidden button with segue in iPhone, but it is performing a segue to a scene and view-controller that undoubtedly gets initialized in awakeFromNib: . for iPad, i'm putting into a popover, and the popover isn't connected to anything … and gets initialized with initWithNibName:bundle: to the item that is in a separate .xib file.]
回答4:
first, i believe segues should follow camel case rules. change to...
loginToList
second, disconnect and reconnect your views in ib.
third, clean your project (shift-command-k).
lastly, you should be using something like this method...
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender
{
if ([[segue identifier] isEqualToString:@"loginToList"]) {
[[segue destinationViewController] setDelegate:self];
}
}
for your segue. then setup a delegate protocol method to dismiss the view controller.
来源:https://stackoverflow.com/questions/9568034/nsinvalidargumentexception-reason-receiver-has-no-segue-with-identifier