0
所以我創建了一個文本文件來存儲我的應用的小數據位。每一行都是它自己的對象,我不知道如何改變一行中的字符串。我想寫一個條件,如果在某一行的字符串是「是」,並且用戶將其更改爲「否」,那麼它將字符串更改爲「否」。 這裏的代碼使用索引對象在數組中更改字符串
if(lineNumber == 0 && userInput == [NSString stringWithFormat:@"YES"])
{
if([[line objectAtIndex:0] isEqual:@"NO"])
{
// [[line objectAtIndex:0]... How would you change this to "NO"
}
}
非常感謝您! – V2Krazy