Почему кордова-колесо-селектор-плагин не работает правильно? - PullRequest
0 голосов
/ 31 января 2019

Привет, я использую свежую установку приложения Cordova.установить плагин cordova-wheel-selector-plugin

var data = {
  numbers: [
    {description: "1"},
    {description: "2"}
  ]
};
var config = {
  title: "Select a quantity",
  items:[
    data.numbers
  ],
  positiveButtonText: "Done",
  negativeButtonText: "Cancel"
};
window.SelectorCordovaPlugin.showSelector(config, function(result) {
  console.log("result: " + JSON.stringify(result) );
  console.log('User chose number: ' + result[0].description + ' at array index: ' + result[0].index);

  //note: as of now in iOS result[1] is ignored
  console.log('User chose fruit: ' + result[1].description + ' at 
array index: ' + result[1].index);
}, function() {
  console.log('Canceled');
});

введите описание изображения здесь

Селектор открывается, но не показывает колесо.В консоли xcode:

ПРЕДУПРЕЖДЕНИЕ ПО РЕЗЬБЕ: ['SelectorCordovaPlugin'] заняло 98,888184 мс.Плагин должен использовать фоновый поток.

...