我有一個application
,您在那裏按下button
,當您按下按鈕時,標籤隨機詞變化。但是當我按下按鈕我的label
消失。從數組中獲取值並將其放在文本標籤中
我該怎麼辦?
這是代碼:
if (sender == self.button) {
NSString*path = [[NSBundle mainBundle]pathForResource:@"wordss" ofType:@"plist"];
words = [[NSMutableArray alloc]initWithContentsOfFile:path];
[self.randomLabel setText:[self.words objectAtIndex:arc4random_uniform([self.words count])]];
}
Tnx它的工作幾乎只有標籤顯示數字而不是字符串。這怎麼可能? – T1992
對不起,但我沒有得到你。請澄清你想知道什麼?請告訴我。 :) –
在words.plist中每個刺都有一個類似於項目o,項目1等的按鍵。當我按下按鈕時,標籤顯示的是密鑰而不是密鑰的值 – T1992