我有一个application
你按 a 的地方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])]];
}