I try to control identifiers entered in a login form.
For the verification of access, no problem.
But how to stop or leave the action unfold from UIButton?
- (IBAction)ConnexionBouton:(UIButton *)sender forEvent:(UIEvent *)event {
// ON RECUPERE LES IDENTIFIANTS DONNES LORS DE LA VALIDATION DU FORMULAIRE
NSString *emailString = _emailField.text;
NSString *passString = _PassField.text;
// ON APPEL LE METHODE SITUEE DANS LE FICHIER Json.h / .m AFIN DUTILISER LE PARSER JSON
ssJSON *AppelJSON = [[ssJSON alloc] init];
NSDictionary *resultatAppelJSON = [AppelJSON Dictionnaire];
NSDictionary *Joueurs = [resultatAppelJSON objectForKey:@"resultats"];
NSArray *Joueur = [Joueurs objectForKey:@"joueurs"];
for (NSDictionary *item in Joueur) {
// RECHERCHE JOUEUR PAR LES IDENTIFIANTS DONNEES
NSString *email_joueur = [item objectForKey:@"email"];
NSString *PASS_joueur = [item objectForKey:@"PASS"];
// ON CONTROLE SI LES IDENTIFIANTS DE CE JOUEUR CORRESPONDENT OU NON A CEUX TAPPES
if ( email_joueur == emailString ) && ( PASS_joueur == passString )
{
}
// DEBRIFING XCODE
NSLog(@"%@", item);
}
}
If you want to stop executing the code in an IBAction method (which, remember, is just a method with a return type of
void
), then you canreturn;
at any point.