なぜこれがうまくいかないのか理解できません.単に id num が毎回使用されていないと言っているだけです...そしてそれを配列に追加することはありません. これに関するヘルプは大歓迎です。私はほぼ確実に明らかな何かを見逃していますが、それは私を怒らせます。
- (IBAction)idNumInputEnd:(id)sender
{
// Check if ID Number has been used before, if it hasnt, add it to the list.
NSString *idNumCheck = idNumberInput.text;
if ([idNumberList containsObject:idNumCheck])
{
NSLog(@"This id number has been used before, ask user if he would like to reload the data");
}
else
{
NSLog(@"This id number hasn't been used before and is thus being added to the array");
[idNumberList addObject:idNumCheck];
}
}