菜鸟教程小白 发表于 2022-12-13 17:09:03

iphone - 关于 UIAlert 跳转到一个 xib


                                            <p><p>我有大约三个 xib 文件,a b c
b上有一个按钮,点击它会显示警报,代码是</p>

<pre><code>UIAlertView *alert = [
initWithTitle:@&#34;Warning&#34;
message:@&#34;You will jump to a when you click &#39;Yes,Go&#39;,or click &#39;No,I am not&#39; for exit&#34;
delegate:nil
cancelButtonTitle:@&#34;Yes,Go&#34;
   cancelButtonTitle:@&#34;No,I am not&#34;
otherButtonTitles:nil];
;
;
</code></pre>

<p>正如它的描述,当我点击“Yes,Go”时我想跳转到a,如果我点击“No,I am not”,这个应用程序将被关闭</p>

<p>那该怎么办呢?</p>

<p>谢谢</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>您可以在警报 View 委托(delegate)中处理事件</p>

<pre><code>- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex
</code></pre>

<p>在这里检查按钮索引并做你想做的事。</p></p>
                                   
                                                <p style="font-size: 20px;">关于iphone - 关于 UIAlert 跳转到一个 xib,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/5530573/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/5530573/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: iphone - 关于 UIAlert 跳转到一个 xib