ios toast提示框(MBProgressHUD)

Posted brave-sailor

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ios toast提示框(MBProgressHUD)相关的知识,希望对你有一定的参考价值。

MBProgressHUD是一个开源项目,实现了很多种样式的提示框

https://github.com/jdg/MBProgressHUD,下载下来后直接把MBProgressHUD.h和MBProgressHUD.m加入即可。

运行效果如下 和android toast 类似

-(void)showAllTextDialog:(NSString *)str
{
    HUD = [[MBProgressHUD alloc] initWithView:self.view];
    [self.view addSubview:HUD];
    HUD.labelText = str;
    HUD.mode = MBProgressHUDModeText;
    
    //指定距离中心点的X轴和Y轴的位置,不指定则在屏幕中间显示
    //    HUD.yOffset = 100.0f;
    //    HUD.xOffset = 100.0f;
    
    [HUD showAnimated:YES whileExecutingBlock:^{
        sleep(1);
    } completionBlock:^{
        [HUD removeFromSuperview];
//        [HUD release];
        HUD = nil;
    }];
    
}

 

技术分享

以上是关于ios toast提示框(MBProgressHUD)的主要内容,如果未能解决你的问题,请参考以下文章

Android学习笔记(26):Toast提示信息框

Android开发_弹出小小提示框_Toast

vue2.0 自定义 提示框(Toast)组件

Toast(信息提示框)

WinForm | C# 弹出简易的消息提示框 (仿Android Toast消息提示)

活动中使用提示框(Toast)