我要實現,在scoreString的值是30時,標簽會讀出"about 30 minutes"。
這是我顯示字符串的代碼:
NSString *scoreString = [[score objectForKey:@"score"] stringValue];
testLabel.text = scoreString;
需要寫出about 和minute兩個字符串。
需要創建一個包含所有組件的新字符串:
testLabel.text = [NSString stringWithFormat:@"about %@ minutes", scoreString];