我正在使用守则来检查一下,如果我想要提交的话,如果我有这个词,那么我就会检查一下。 如果说不了,我就希望它登上屏幕。 现在,所有这一切都奏效,唯一一件事是屏幕上扬2次,因为我的阵列有2个字。 在这里,《法典》对它的解释稍有改进。
NSArray *searchContacts = [NSArray arrayWithObjects:
@"CADEAU",
@"KADERZ",nil];
NSString *myContact = labelsText.text;
for (NSString *contact in searchContacts) {
if ([contact isEqualToString:myContact]) {
this is where I put in my words, CADEAU & KADERZ in this case. When I put one of these words into labelsText.text it does exactly what I want. but for the else statement if the labels text.text word is not CADEAU or KADERZ, it pop ups a screen:
else {
UIAlertView *alert = [[UIAlertView alloc]
这一屏幕现在将翻两番,这样一来,两度不得不施压,我为什么要这样做,仅仅不得不迫使人们一度不解阵列中有多少字?