美文网首页iOS 日常开发随笔
iOS 系统弹窗 自动消失

iOS 系统弹窗 自动消失

作者: 阿狸先森丶12138 | 来源:发表于2017-06-16 11:26 被阅读31次

    -(void)showAlertView:(NSString*)message

    {

    UIAlertView *toast = [[UIAlertView alloc] initWithTitle:nil

    message:message

    delegate:nil

    cancelButtonTitle:nil

    otherButtonTitles:nil, nil];

    [toast show];

    double duration = 1;

    dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(duration * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{

    [toast dismissWithClickedButtonIndex:0 animated:YES];

    });

    }

    相关文章

      网友评论

        本文标题:iOS 系统弹窗 自动消失

        本文链接:https://www.haomeiwen.com/subject/bgwpqxtx.html