RSDAnswerResultFinder
public protocol RSDAnswerResultFinder
RSDAnswerResultFinder
is a convenience protocol used to retrieve an answer result. It is used in
survey navigation to find the result for a given input field.
Seealso
RSDSurveyNavigationStep
-
Find an answer result within this result. This method will return
nil
if there is a result but that result does not conform to to theRSDAnswerResult
protocol.Declaration
Swift
func findAnswerResult(with identifier: String) -> RSDAnswerResult?
Parameters
identifier
The identifier associated with the result.
Return Value
The result or
nil
if not found.