菜鸟教程小白 发表于 2022-12-13 08:48:13

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:@&#34;Funny Message&#34;, @&#34;Even Funnier Message&#34;, @&#34;Hilarious message&#34;, @&#34;ROFL&#34;, @&#34;OK this is getting boring...&#34;, nil];
}
</code></pre>

<p>当您需要警报时:</p>

<pre><code>NSUInteger messageCount = ;
int randomMessageIndex = arc4random() % messageCount;

UIAlertView *alert = [ initWithTitle:@&#34;Title&#34; message: delegate:nil cancelButtonTitle:@&#34;OK&#34; 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]
查看完整版本: ios - 我可以在 Xcode 中为一个 IBAction 设置多个 UIAlertViews 吗?