-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathApp.js
83 lines (72 loc) · 1.91 KB
/
App.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
/**
* Sample React Native App
* https://github.com/facebook/react-native
*
* @format
* @flow
*/
import React, {Component} from 'react';
import {
Platform,
StyleSheet,
Text,
View,
NativeModules,
NativeEventEmitter,
TouchableOpacity,
Button,
} from 'react-native';
// const instructions = Platform.select({
// ios: 'Press Cmd+R to reload,\n' + 'Cmd+D or shake for dev menu',
// android:
// 'Double tap R on your keyboard to reload,\n' +
// 'Shake or press menu button for dev menu',
// });
export default class App extends Component<Props> {
constructor(props) {
super(props);
this.state = {
}
}
componentDidMount() {
//监听
let eventEmitter = new NativeEventEmitter(NativeModules.RCExport);
this.listener = eventEmitter.addListener("nativeToRN", (result) => {
this.setState({
//此处赋值
IOSInfo:result
})
})
}
componentWillUnmount() {
//移除监听
this.listener && this.listener.remove();
}
//通知iOS
informIOS (eventName,propertyDic) {
NativeModules.RTModule.addEventName(eventName,propertyDic,(error,event) => {
alert(error)
})
}
render() {
return (
<View style={styles.container}>
{/*接收从iOS传过来的值*/}
<View style={{marginLeft: 15,marginRight: 15,marginTop: 120}}>
<Text style={{textAlign: 'center',fontSize: 18}}>{this.state.IOSInfo == null?'默认值':this.state.IOSInfo.name}</Text>
</View>
<View style={{marginLeft: 15,marginRight: 15,marginTop: 20}}>
<Button title={'跳iOS页面无参'} onPress={() => this.informIOS('RNToIOS',null)}/>
<Button title={'跳iOS页面有参'} onPress={() => this.informIOS('RNToIOS',{'fromRN':'RN跳iOS传的参'})}/>
</View>
</View>
);
}
}
const styles = StyleSheet.create({
container:{
display: 'flex',
flex: 1,
backgroundColor:"white"
}
});