-4
當試圖使計時器更改顯示的文本時,出現此錯誤。'NSString'沒有可見的@interface聲明選擇器'重複'
if ([operation isEqualToString:@"/"]) if (n2 == 0)
{
AudioServicesPlaySystemSound(SoundID);
self.userIsTyping = NO;
NSString *errorZeroIsNotDivisible = [NSString stringWithFormat: @"%g Is not divisible in 0", n1];
NSString *getBackToCurrentOperation = [NSString stringWithFormat:@"%g %@", n1, operation];
self.display.text = errorZeroIsNotDivisible;
NSTimer scheduledTimerWithTimeInterval:6 invocation:self.display.text = [getBackToCurrentOperation repeats:NO];
}
所以我可以做一個計時器,設置顯示的文本? 我嘗試過不同的事情,但我無法得到它。 我會感謝您的幫助。 –
你可以使用這個計劃的計時器,但你的代碼是在調用的地方使用asignment –
非常感謝,我不知道如何正確使用NSTimer。 現在我的代碼正在運行,因爲我想 –