web-dev-qa-db-fra.com

Objective-C Split ()?

Existe-t-il un moyen de scinder les chaînes de l’objectif C en tableaux? Je veux dire comme ceci - chaîne d'entrée Oui: 0: 42: valeur dans un tableau de (Oui, 0,42, valeur)?

107
Christian Stewart
191
mipadi

Essaye ça:

    NSString *testString= @"It's a rainy day";
    NSArray *array = [testString componentsSeparatedByString:@" "];
95
Prabh
6
amrox

Utilisez ceci: [[string componentsSeparatedByString: @ ","] [0];

5
Josep Escobar

si vous voulez accéder d'abord à Word:

[[string componentsSeparatedByString:@" "] objectAtIndex:0];
0
UMUT