簡體   English   中英

我在研究套件中使用定時步行測試時出錯

[英]Im getting an error using timed walk test in research kit

我在同時使用carekit的應用程序中使用了來自researchkit測試的定時行走。 但是,我不知道為什么會收到此錯誤。 任何幫助將不勝感激。 到目前為止,這就是我所擁有的。 (錯誤狀態使用未解決的標識符)

 import ResearchKit

  public var timedWalk: ORKOrderedTask 
{return ORKOrderedTask.timedWalk(withIdentifier: "Timed  Walk",intendedUseDescription: "Assessment measures balance", distanceInMeters: 3, timeLimit: 13, includeAssistiveDeviceForm: true, options: .excludeConclusion) 

 //Create a question.
let title = "Estimate your fall Risk"
let text = "This assessment measure how fast you walk to estimate your fall risk. Start from a sitting position stand walk 10 feet turn around and  walk back to sitting position"
***let questionStep = ORKQuestionStep(identifier: "Timed Get up and Go", title: title, text: text, answer: answerFormat)*** 
  questionStep.isOptional = false


       //Create an ordered task with a single question
   return ORKOrderedTask(identifier: "Timed Walk", steps: [questionStep])

這是上述代碼的語法正確版本:

public var timedWalk: ORKOrderedTask {
    return ORKOrderedTask.timedWalk(withIdentifier: "Timed Walk",
                                    intendedUseDescription:" Assessment measure, the, balance",
                                    distanceInMeters: 3, timeLimit: 13,  options: .excludeConclusion)
}

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM