ORKResult Class Reference
Inherits from | NSObject |
---|---|
Conforms to | NSCopying NSSecureCoding |
Declared in | ORKResult.h |
The ORKResult
class defines the attributes of a result from one step or a group
of steps. When you use the ResearchKit framework APIs, you typically get a result from the result
property
of either ORKTaskViewController
or ORKStepViewController
.
Certain types of results can contain other results, which together express a hierarchy; examples of these types of results are ORKCollectionResult
subclasses, such as ORKStepResult
and ORKTaskResult
.
When you receive a result, you can store it temporarily by archiving it with
NSKeyedArchiver
, because all ORKResult
objects implement NSSecureCoding
. If you want to serialize the result object to other formats, you’re responsible for implementing this.
The result object hierarchy does not necessarily include all the data collected
during a task. Some result objects, such as ORKFileResult
, may refer to files
in the filesystem that were generated during the task. These files are easy to find, because they are all
located in the output directory of the task view controller.
It’s recommended that you use NSFileProtectionComplete
(at a minimum) to protect these files, and that you similarly protect all serialization of ORKResult
objects that you write to disk. It is also generally helpful to keep the results together with the referenced files as you submit them to a back-end server. For example, it can be convenient to zip all data corresponding to a particular task result into a single compressed archive.
Every object in the result hierarchy has an identifier that should correspond
to the identifier of an object in the original step hierarchy. Similarly, every
object has a start date and an end date that correspond to the range of
times during which the result was collected. In an ORKStepResult
object, for example,
the start and end dates cover the range of time during which the step view controller was visible on
screen.
When you implement a new type of step, it is usually helpful to create a new
ORKResult
subclass to hold the type of result data the step can generate, unless it makes sense to use an existing subclass. Return your custom result subclass as one of the results attached to the step’s ORKStepResult
object.