zoukankan      html  css  js  c++  java
  • ios:UIAlertView自动消失

    tyle="margin-top:20px; margin-right:0px; margin-bottom:0px; margin-left:0px; font-family:'Courier New',Console,Verdana,微软雅黑; font:normal normal normal 14px/26px Arial">

    在写程序的过程中用到很多提示的信息,于是非常自然地就要使用UIAlertView控件。但是这些提示的信息有时候只需提示就行,不用操作,那么此时就要这个提示框自动消失就OK了。 UIAlertView弹出后2s让其自动消失,两种方法: (1)结合NSTimer

     定义UIAlertView *baseAlert;

     - (void) performDismiss: (NSTimer *)timer {    

     [baseAlert dismissWithClickedButtonIndex:0 animated:NO];//important     

     [baseAlert release];     

     baseAlert = NULL;

     }

     - (void) presentSheet {     

    baseAlert = [[UIAlertView alloc]  initWithTitle:@"Alert" message:@"\nMessage Message Message "  delegate:self cancelButtonTitle:nil                               otherButtonTitles: nil];    

    [NSTimer scheduledTimerWithTimeInterval:2.0f target:self selector: @selector(performDismiss:)  userInfo:nil repeats:NO];   

    [baseAlert show]; } 

    (2)使用PerformSelectorwithObjectafterDelay:方法

     - (void) dimissAlert:(UIAlertView *)alert {    

     if(alert)     {        

     [alert dismissWithClickedButtonIndex:[alert cancelButtonIndex] animated:YES]; 

     [alert release];  

       }

     }  

    - (void)showAlert{

     UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"title" message:@"message" delegate:nil  cancelButtonTitle:nilotherButtonTitles:nil];         

     [alert show];

      [self performSelector:@selector(dimissAlert:) withObject:alert afterDelay:2.0];

    }

  • 相关阅读:
    为什么学微信小程序开发
    mac 上配置sublime text3插件
    获取元素的宽度和高度
    移动端页面SEO优化需要注意的10个要点
    gulp详细入门教程
    HTTP协议详解
    深入了解 Flexbox 伸缩盒模型
    移动前端之viewport
    如何设置“用eclipse开发时自动在顶端产生import”?
    认识 java JVM虚拟机选项 Xms Xmx PermSize MaxPermSize 区别
  • 原文地址:https://www.cnblogs.com/javawebsoa/p/3095455.html
Copyright © 2011-2022 走看看