ITMS-90338:非公共API用法-该应用引用了非公共选择器_setAlwaysRunsAtForegroundPriority:

时间:2019-07-04 14:47:44

标签: testflight

我只是更改文本,然后再正常工作。请任何人都可以帮助我。

预先感谢

2 个答案:

答案 0 :(得分:0)

我解决了:

  • ionic cordova插件rm cordova-plugin-ionic-webview
  • ionic cordova插件添加cordova-plugin-ionic-webview@4.1.0
  • 离子科尔多瓦建立iOS

答案 1 :(得分:0)

我也遇到了同样的问题:

<script>
$('#myTable > tbody > tr > td:nth-child(4)').each(function(){
        console.log($(this).text();)  // Getting Yes, No Properly
        if($(this).text() == 'Yes')
        {
            $(this).css('background-color', 'red');
        } 
</script>