Question
Cannot update label in iOS 14
Hi everyone, my project has some labels that could be updated at every sequence step.
with:
$scope.$on('stepstarted', function(evt, arg1, arg2, arg3) {
//pulisco l'etichetta e stampo l'etichetta del passo successivo
console.log("----STEP STARTED----")
var parsedArg3 = JSON.parse(arg3);
console.warn(arg3);
//console.log("stepNumber="+parsedArg3.stepNumber);
//console.log("stepDescription="+parsedArg3.stepDescription);
//console.log("nextStep="+parsedArg3.nextStep);
$scope.app.nextStep = parsedArg3.nextStep;
$scope.app.totalSteps = parsedArg3.totalSteps;
console.log(">> Arg1: " + arg1); //nome dell'animazione
console.log(">> Arg3: " + arg3); //stringhe contenute nel pvz
//stampa su etichetta la descrizione
$scope.app.stepDescription = parsedArg3.stepDescription;
$scope.setWidgetProp("stepDescription", "text", $scope.app.stepDescription); //step-description è il nome della label in cui di vanno a stampare le indicazioni dei passi
$scope.setWidgetProp("stepDescription3", "text", $scope.app.stepDescription);
});
All is working fine in preview mode, so when test the experience with my device that is running iOS 14 no labels will be update.
Anyone has some idea how to resolve this problem?
Thank you.

