ResearchKit:根据之前的回复更改选择

时间:2015-10-06 10:39:21

标签: ios researchkit

我正在使用ResearchKit处理Survey应用程序,我需要根据之前的响应更改下一个问题的值。例如:

Question 1: How many cars do you have?
- 1 Car
- 2 Cars
- 3 Cars
- 4 Cars
- xx Cars

Question 2: Which is your favorite car?
 - car number 1
 - car number 2
 - car number 3
 - car number 4
 - car number XX

问题2的选项数量将基于问题1中选择的值。

知道我该怎么做?

3 个答案:

答案 0 :(得分:1)

我找到了一个解决方案,虽然在您呈现ViewController后无法创建新步骤,但可以使用新数组更新步骤的 answerFormat

for(ORKQuestionStep* step in ((ORKOrderedTask*)self.task).steps) {
            if([step.answerFormat isKindOfClass:[ORKValuePickerAnswerFormat class]]) {
               step.answerFormat = [[ORKValuePickerAnswerFormat alloc] initWithTextChoices:arrayOfChoices];
            }
        }

答案 1 :(得分:1)

看看ORKNavigableOrderedTask。 (有关用法示例,请参阅ORKTest。)

基本上,您要为第一个问题上的所有不同选项定义单独的步骤,然后根据其答案有条件地导航到相应的步骤。

答案 2 :(得分:0)

您也可以使用:

func step(after step: ...) and
func step(before step: ...)

使用这些,您可以即时创建步骤。 但是,您也失去了一些其他功能,必须自己管理所有导航。