我目前是开发新手,遇到了问题。我想从 .plist 中读取字符串,当按下按钮时,它会选择一个随机字符串并将其呈现在标签中?我有一个示例 .plist 和一个在我的 .h 和 .m 中实例化的按钮,但是我只是不知道如何选择一个随机字符串并将 UILabels 值更改为所选字符串。任何帮助将不胜感激,并提前感谢!
这是我的.plist
这是我的 .h
#import <UIKit/UIKit.h>
@interface ViewController2 : UIViewController {
IBOutlet UILabel *label1;
}
-(IBAction)randomButton;
这是我的 .m
#import "ViewController2.h"
@interface ViewController2 ()
@end
@implementation ViewController2
//What do I put in my randomButton method to extract from .plist?
-(IBAction)randomButton {
}