ReactNative的黄色警告虽然不会影响运行,但挺影响观感的。
这个warning的意思是代码中有被React舍弃的代码,若想屏蔽此提示,可在index.js内加入:
import { YellowBox } from 'react-native';
YellowBox.ignoreWarnings(['Warning: isMounted(...) is deprecated']);
若有其他黄色提醒,则类似将提醒开头的字符添加.ignoreWarnings([,,,,])的字符数组中,即可被屏蔽。