Alert.alert()和alert()和Prompt和AlertIOS.alert

alert('报名时间已过!');
Alert.alert()和alert()和Prompt和AlertIOS.alert_第1张图片
Paste_Image.png
  Alert.alert(

                            "标题标题",

                            "内容内容内容内容内容内容内容内容内容内容"

);
Alert.alert()和alert()和Prompt和AlertIOS.alert_第2张图片
Paste_Image.png
  Alert.alert(

                            "标题标题",

                            "内容内容内容内容内容内容内容内容内容内容"
,
 [
        {text: "取消"/*, onPress: () => console.log('Cancel Pressed!')*/},
 
       {text:"确定", onPress: () => console.log('OK!')}
    
]);
Alert.alert()和alert()和Prompt和AlertIOS.alert_第3张图片
Paste_Image.png

点击确认按钮
控制台打印

Paste_Image.png
 this.setState({
      
  promptVisible: false,
   
     message: "You cancelled"
   
 }) }
   
 onSubmit={ (value) => {
    
    this.setState({
      
      promptVisible: false,
     
       message: `You said "${value}"`
    
    });
     
   this.saveResponse(value);
    }

    }/>
Alert.alert()和alert()和Prompt和AlertIOS.alert_第4张图片
Paste_Image.png
  AlertIOS.alert('网络已断开,请设置网络')
Alert.alert()和alert()和Prompt和AlertIOS.alert_第5张图片
屏幕快照 2017-02-13 下午4.12.30.png
        AlertIOS.alert('提示', '当前处于移动网络状态,是否继续播放?', [
            {
                text: '取消播放',
                onPress: function () {
                    
                }
            },
            {
                text: '继续播放',
                onPress: function () {
                    
                }
            }
        ])
Alert.alert()和alert()和Prompt和AlertIOS.alert_第6张图片
屏幕快照 2017-02-13 下午4.14.40.png

你可能感兴趣的:(Alert.alert()和alert()和Prompt和AlertIOS.alert)