举报投诉联系我们 手机版 热门标签 编程学
您的位置:编程学 > iOS警告我知道了 iOS 警告

iOS警告我知道了 iOS 警告

2023-04-15 19:18

iOS警告我知道了 iOS 警告

iOS警告我知道了 iOS 警告

iOS警告我知道了

利用一个特定的标题和消息来启动一个警告对话框。

提供一个可选按钮的列表。点击任何按钮触发各自的按下回调动作,并且忽略警告。在默认情况下,只有一个按钮是“OK”按钮。列表中最后一个按钮被视为“主”按钮,它被用粗体显示出来了。

    AlertIOS.alert(      "Foo Title",      "My Alert Msg",
      [
        {text: "Foo", onPress: () => console.log("Foo Pressed!")},
        {text: "Bar", onPress: () => console.log("Bar Pressed!")},
      ]
    )}

方法

static alert(title: string, message?: string, buttons?: Array<{ text: ?string; onPress: ?Function; }>)

例子

Edit on GitHub

    "use strict";    var React = require("react-native");    var {
      StyleSheet,
      View,
      Text,
      TouchableHighlight,
      AlertIOS,
    } = React;
    exports.framework = "React";
    exports.title = "AlertIOS";
    exports.description = "iOS alerts and action sheets";
    exports.examples = [{      title: "Alerts",
      render() {        return (
          <View>
            <TouchableHighlight style={styles.wrapper}
              onPress={() => AlertIOS.alert(                "Foo Title",                "My Alert Msg"
              )}>
              <View style={styles.button}>
                <Text>Alert with message and default button</Text>
              </View>
            </TouchableHighlight>
            <TouchableHighlight style={styles.wrapper}
              onPress={() => AlertIOS.alert(                null,                null,
                [
                  {text: "Button", onPress: () => console.log("Button Pressed!")},
                ]
              )}>
              <View style={styles.button}>
                <Text>Alert with only one button</Text>
              </View>
            </TouchableHighlight>
            <TouchableHighlight style={styles.wrapper}
              onPress={() => AlertIOS.alert(                "Foo Title",                "My Alert Msg",
                [
                  {text: "Foo", onPress: () => console.log("Foo Pressed!")},
                  {text: "Bar", onPress: () => console.log("Bar Pressed!")},
                ]
              )}>
              <View style={styles.button}>
                <Text>Alert with two buttons</Text>
              </View>
            </TouchableHighlight>
            <TouchableHighlight style={styles.wrapper}
              onPress={() => AlertIOS.alert(                "Foo Title",                null,
                [
                  {text: "Foo", onPress: () => console.log("Foo Pressed!")},
                  {text: "Bar", onPress: () => console.log("Bar Pressed!")},
                  {text: "Baz", onPress: () => console.log("Baz Pressed!")},
                ]
              )}>
              <View style={styles.button}>
                <Text>Alert with 3 buttons</Text>
              </View>
            </TouchableHighlight>
            <TouchableHighlight style={styles.wrapper}
              onPress={() => AlertIOS.alert(                "Foo Title",                "My Alert Msg",                "..............".split("").map((dot, index) => ({                  text: "Button " + index,                  onPress: () => console.log("Pressed " + index)
                }))
              )}>
              <View style={styles.button}>
                <Text>Alert with too many buttons</Text>
              </View>
            </TouchableHighlight>
          </View>
        );
      },
    }];    var styles = StyleSheet.create({      wrapper: {        borderRadius: 5,        marginBottom: 5,
      },      button: {        backgroundColor: "#eeeeee",        padding: 10,
      },
    });


阅读全文
以上是编程学为你收集整理的iOS警告我知道了 iOS 警告全部内容。
声明:本站所有文章资源内容,如无特殊说明或标注,均为采集网络资源。如若本站内容侵犯了原著者的合法权益,可联系本站删除。
相关文章
© 2024 编程学 bianchengxue.com 版权所有 联系我们
桂ICP备19012293号-7 返回底部