美文网首页
弹出提示框

弹出提示框

作者: 彼岸的黑色曼陀罗 | 来源:发表于2016-09-06 19:08 被阅读0次

方式一:底部弹出提示框(UIActionSheet)

  • 调用initWithTitle:delegate:cancelButtonTitle:取消destructiveButtonTitle:确定otherButtonTitle:
  • showInView:self.view
  • 遵守协议<UIActionSheetDelegate>
  • 实现代理方法
    • clickButtonAtIndex:当buttonIndex == 0时,返回到上一级

方式二:中间弹出(UIAlertView)

  • 调用initWithTitle:message:delegate:cancelButtonTitle:otherButtonTitles:
  • show

方式三:UIAlertController(可以实现上面两种效果)

  • 创建控制器

    • alertControllerWithTitle:message:preferredStyle:弹出指定的样式
  • 创建按钮 UIAlertAction
    -点击按钮的时候会调用这个方法 ,可以做pop操作。actionWithTitle:style:handler:^(){}

  • 把按钮添加到控制器上,有几个添加几个addAction

  • 弹框modal形式弹出

    • presentViewController:animated:completion:
  • 注意:只有alert样式的时候,才可以添加文本框。

相关文章

  • swal的几种用法

    1,弹出提示框,点击确认,进行下一步操作 2,仅弹出提示框 3,仅弹出提示框,简单写法

  • iOS 拨打电话的三种方式

    1:直接拨打, 不会弹出提示框 2: 会弹出提示框 3:会弹出提示框(注意:这里是telprompt, 推荐用这种...

  • 提示框

    target:点击按钮---->屏幕中间弹出提示框 target:点击按钮---->屏幕底部弹出提示框

  • 普通的提示框

    弹出提示框,点击确定取消提示框 (void)showError:(NSString *)errorMsg {// ...

  • 弹出提示框和自动消失

    创建弹出提示框对象 UIAlertController* alert = [UIAlertController a...

  • 全局模态框组件的实现

    功能:1、未登录,会弹出图一的提示框2、加入购物车成功,弹出图二提示框效果: 子组件中,创建src/compone...

  • 混合开发cordova下ios插件的开发

    介绍:提示框插件,调用本地提示框弹出提示,有多种样式. 安装: * `cordova plugin add co...

  • cordova-plugin-dialogs 使用详解

    介绍: 提示框插件,调用本地提示框弹出提示,有多种样式 安装: cordova plugin add cordov...

  • XXAlertView使用

    XXAlertView对UIAlertController封装,能够方便的实现警告框。 使用方法 弹出提示框 弹出...

  • 弹出提示框

    方式一:底部弹出提示框(UIActionSheet) 调用initWithTitle:delegate:cance...

网友评论

      本文标题:弹出提示框

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