iphone - 关于 UIAlert 跳转到一个 xib
<p><p>我有大约三个 xib 文件,a b c
b上有一个按钮,点击它会显示警报,代码是</p>
<pre><code>UIAlertView *alert = [
initWithTitle:@"Warning"
message:@"You will jump to a when you click 'Yes,Go',or click 'No,I am not' for exit"
delegate:nil
cancelButtonTitle:@"Yes,Go"
cancelButtonTitle:@"No,I am not"
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]