<small id='bKYof'></small><noframes id='bKYof'>

      <bdo id='bKYof'></bdo><ul id='bKYof'></ul>
    <i id='bKYof'><tr id='bKYof'><dt id='bKYof'><q id='bKYof'><span id='bKYof'><b id='bKYof'><form id='bKYof'><ins id='bKYof'></ins><ul id='bKYof'></ul><sub id='bKYof'></sub></form><legend id='bKYof'></legend><bdo id='bKYof'><pre id='bKYof'><center id='bKYof'></center></pre></bdo></b><th id='bKYof'></th></span></q></dt></tr></i><div id='bKYof'><tfoot id='bKYof'></tfoot><dl id='bKYof'><fieldset id='bKYof'></fieldset></dl></div>
    <legend id='bKYof'><style id='bKYof'><dir id='bKYof'><q id='bKYof'></q></dir></style></legend>

      1. <tfoot id='bKYof'></tfoot>

        iOS中如何实现弹出对话框?

        时间:2024-04-14
          <tfoot id='GhUQB'></tfoot>

            • <bdo id='GhUQB'></bdo><ul id='GhUQB'></ul>

                  <i id='GhUQB'><tr id='GhUQB'><dt id='GhUQB'><q id='GhUQB'><span id='GhUQB'><b id='GhUQB'><form id='GhUQB'><ins id='GhUQB'></ins><ul id='GhUQB'></ul><sub id='GhUQB'></sub></form><legend id='GhUQB'></legend><bdo id='GhUQB'><pre id='GhUQB'><center id='GhUQB'></center></pre></bdo></b><th id='GhUQB'></th></span></q></dt></tr></i><div id='GhUQB'><tfoot id='GhUQB'></tfoot><dl id='GhUQB'><fieldset id='GhUQB'></fieldset></dl></div>

                1. <small id='GhUQB'></small><noframes id='GhUQB'>

                    <tbody id='GhUQB'></tbody>
                  <legend id='GhUQB'><style id='GhUQB'><dir id='GhUQB'><q id='GhUQB'></q></dir></style></legend>

                2. 本文介绍了iOS中如何实现弹出对话框?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  计算后,我想显示一个弹出框或警告框,向用户传达消息.有谁知道我在哪里可以找到有关这方面的更多信息?

                  After a calculation, I want to display a pop up or alert box conveying a message to the user. Does anyone know where I can find more information about this?

                  推荐答案

                  是的,UIAlertView 可能就是您要找的.这是一个例子:

                  Yup, a UIAlertView is probably what you're looking for. Here's an example:

                  UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"No network connection" 
                                                                  message:@"You must be connected to the internet to use this app." 
                                                                 delegate:nil 
                                                        cancelButtonTitle:@"OK"
                                                        otherButtonTitles:nil];
                  [alert show];
                  [alert release];
                  

                  如果你想做一些更花哨的事情,比如在 UIAlertView 中显示自定义 UI,你可以继承 UIAlertView 并在 中放入自定义 UI 组件初始化 方法.如果要在 UIAlertView 出现后响应按钮按下,可以设置上面的 delegate 并实现 - (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex 方法.

                  If you want to do something more fancy, say display a custom UI in your UIAlertView, you can subclass UIAlertView and put in custom UI components in the init method. If you want to respond to a button press after a UIAlertView appears, you can set the delegate above and implement the - (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex method.

                  您可能还想查看 UIActionSheet.

                  这篇关于iOS中如何实现弹出对话框?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:Android Studio 0.2.2 + ActionBarSherlock 设置:找不到类 'androi 下一篇:如何编辑 UIAlertAction 文本字体大小和颜色

                  相关文章

                    1. <tfoot id='eTOHx'></tfoot>
                    2. <legend id='eTOHx'><style id='eTOHx'><dir id='eTOHx'><q id='eTOHx'></q></dir></style></legend>
                      <i id='eTOHx'><tr id='eTOHx'><dt id='eTOHx'><q id='eTOHx'><span id='eTOHx'><b id='eTOHx'><form id='eTOHx'><ins id='eTOHx'></ins><ul id='eTOHx'></ul><sub id='eTOHx'></sub></form><legend id='eTOHx'></legend><bdo id='eTOHx'><pre id='eTOHx'><center id='eTOHx'></center></pre></bdo></b><th id='eTOHx'></th></span></q></dt></tr></i><div id='eTOHx'><tfoot id='eTOHx'></tfoot><dl id='eTOHx'><fieldset id='eTOHx'></fieldset></dl></div>
                    3. <small id='eTOHx'></small><noframes id='eTOHx'>

                      • <bdo id='eTOHx'></bdo><ul id='eTOHx'></ul>