我正在使用研究工具包框架在 Swift 中开发一个应用程序。用户在进行调查时给出的答案被保存在本地数据库中。需要在应用程序中实现一个功能,这样当用户再次开始调查时,他可以查看之前选择的答案。我们可以为创建的 ORKOrderedTask 设置默认选择值吗?
下面是使用的代码片段:
var steps = [ORKStep]()
let questQuestionStepTitle = "What is your quest?"
let textChoices = [
ORKTextChoice(text: "Create a ResearchKit App", value: 0),
ORKTextChoice(text: "Seek the Holy Grail", value: 1),
ORKTextChoice(text: "Find a shrubbery", value: 2)]
let questAnswerFormat: ORKTextChoiceAnswerFormat = ORKAnswerFormat.choiceAnswerFormatWithStyle(.SingleChoice, textChoices: textChoices)
let questQuestionStep = ORKQuestionStep(identifier: "TextChoiceQuestionStep", title: questQuestionStepTitle, answer: questAnswerFormat)
steps += [questQuestionStep]
return ORKOrderedTask(identifier: "SurveyTask", steps: steps)
我们可以为选项设置默认选择值吗?