MQSearchAheadFeedback
@interface MQSearchAheadFeedback : NSObject
Feedback object returned when includesFeedback
is set in the MQSearchAheadOptions class
Please visit https://developer.mapquest.com/documentation/searchahead-api/feedback/ for more information
-
If the results are displayed in a list or on a map, replace {/id*} with the IDs displayed in the corresponding URL (resultViewedUrl or mapResultViewedUrl) and POST to the resulting URL
Declaration
Objective-C
@property (assign, readwrite, nonatomic, nullable) NSString *resultClickedURL;
Swift
var resultClickedURL: String? { get set }
-
If there is direct interaction with a result (such as a click/tap), replace {/id} with the ID in the URL corresponding to the medium interacted with (resultClickedUrl for list and mapResultClickedUrl for map) and POST to the resulting URL
Declaration
Objective-C
@property (assign, readwrite, nonatomic, nullable) NSString *resultViewedURL;
Swift
var resultViewedURL: String? { get set }