ios - 我可以在 Xcode 中为一个 IBAction 设置多个 UIAlertViews 吗?
<p><p>是否可以在 Xcode 中为一个 IBAction 编写多个 UIAlertViews 以随机显示。例如:我正在制作一个随机显示多个问题的应用程序,当按下提交按钮时,会显示一条警报,说明答案是否正确。我希望警报有不同的消息,例如一次它显示一条消息,然后下一次它随机显示一条不同的消息。我该如何编程?</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>在您的 .h 中:</p>
<pre><code>@interface MyViewController : UIViewController {
NSArray *messages;
}
@property (nonatomic, retain) NSArray *messages;
</code></pre>
<p>在你的 .m 中</p>
<pre><code>@implementation MyViewController
@synthesize messages;
- (dealloc) {
;
}
- (void)viewDidLoad {
messages = [ initWithObjects:@"Funny Message", @"Even Funnier Message", @"Hilarious message", @"ROFL", @"OK this is getting boring...", nil];
}
</code></pre>
<p>当您需要警报时:</p>
<pre><code>NSUInteger messageCount = ;
int randomMessageIndex = arc4random() % messageCount;
UIAlertView *alert = [ initWithTitle:@"Title" message: delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil];
;
;
</code></pre></p>
<p style="font-size: 20px;">关于ios - 我可以在 Xcode 中为一个 IBAction 设置多个 UIAlertViews 吗?,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/7033839/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/7033839/
</a>
</p>
页:
[1]