答案 0 :(得分:0)
要忽略特定的YellowBox消息:
import { YellowBox } from 'react-native';
class App extends Component {
constructor(props) {
super(props);
YellowBox.ignoreWarnings([
'Warning: componentWillMount is deprecated',
'Warning: componentWillReceiveProps is deprecated',
]);
}
...
更新:正如@Auticcat指出的那样,这仅适用于模拟器。