В настоящее время я создаю приложение, используя исследовательский комплект. Ниже мой вопрос.
let onsetQuestionStepTitle = "Title"
let onsetQuestionStepQuestion = "Question Name"
let onsetTextChoices = [
ORKTextChoice(text: "superb", value: 0 as NSCoding & NSCopying & NSObjectProtocol),
ORKTextChoice(text: "great", value: 1 as NSCoding & NSCopying & NSObjectProtocol),
ORKTextChoice(text: "fair", value: 2 as NSCoding & NSCopying & NSObjectProtocol),
ORKTextChoice(text: "not good", value: 3 as NSCoding & NSCopying & NSObjectProtocol),
ORKTextChoice(text: "bad", value: 4 as NSCoding & NSCopying & NSObjectProtocol)
]
let onsetAnswerFormat: ORKTextChoiceAnswerFormat = ORKAnswerFormat.choiceAnswerFormat(with: .singleChoice, textChoices: onsetTextChoices)
let onsetQuestionStep = ORKQuestionStep(identifier: "twoAwakeSurvey", title: onsetQuestionStepTitle, question: onsetQuestionStepQuestion, answer: onsetAnswerFormat)
steps += [onsetQuestionStep]
Если пользователь нажимает на превосходно, я хочу перейти к следующему шагу с идентификатором «threeAwakeSurvey» и перейти к «fourAwakeSurvey». Для этого я реализовал приведенный ниже код.
var task = ORKNavigableOrderedTask(identifier: "StepNavigationTaskIdentifier", steps: steps)
let resultSelector: ORKResultSelector = ORKResultSelector(resultIdentifier: "twoAwakeSurvey")
let askLocation = ORKResultPredicate.predicateForChoiceQuestionResult(with: resultSelector, expectedAnswerValue: 0 as NSCoding & NSCopying & NSObjectProtocol)
let locationNavigationRule = ORKPredicateSkipStepNavigationRule(resultPredicate: askLocation)
task.setSkip(locationNavigationRule, forStepIdentifier: "threeAwakeSurvey")
Однако это не работает. Я прочитал документацию, но до сих пор не понимаю, почему.