ArcGIS Runtime SDK for iOS: AGSSymbolStyleSearchResult Class Reference
ArcGIS Runtime SDK for iOS  100.15
AGSSymbolStyleSearchResult Class Reference

Description

Results of search operations on a symbol style.

Instances of this class represent the results of searchSymbolsWithParameters:completion: (AGSSymbolStyle). It contains the information related to name, tags, category, class type, and key associated to a symbol. It also returns the symbol.

See also
- searchSymbolsWithParameters:completion: (AGSSymbolStyle)
Since
100
Inheritance diagram for AGSSymbolStyleSearchResult:
AGSObject

Instance Methods

(id< AGSCancelable >) - symbolWithCompletion:
 

Properties

NSString * category
 
NSString * key
 
NSString * name
 
AGSSymbolsymbol
 
NSString * symbolClass
 
NSArray< NSString * > * tags
 

Method Documentation

◆ symbolWithCompletion:

- (id<AGSCancelable>) symbolWithCompletion: (void(^)(AGSSymbol *__nullable result, NSError *__nullable error))  completion

Asynchronously returns a symbol from the search result.

Parameters
completionBlock that is invoked when the operation finishes. The result parameter is populated if the operation completed successfully, otherwise the error parameter is populated.
Returns
An operation which can be canceled.
Since
100.10

Property Documentation

◆ category

- (NSString*) category
readnonatomiccopy

Category associated with the result symbol.

Since
100

◆ key

- (NSString*) key
readnonatomiccopy

Key (unique identifier) associated with the result symbol.

Since
100

◆ name

- (NSString*) name
readnonatomiccopy

Name associated with the result symbol.

Since
100

◆ symbol

- (AGSSymbol*) symbol
readnonatomicstrong

The symbol from the search result. An AGSSymbol

Since
100.0
Deprecated:
100.10.0. The property has been replaced with symbolWithCompletion: for fetching a symbol from the search result.

Provided by category AGSSymbolStyleSearchResult(AGSDeprecated).

◆ symbolClass

- (NSString*) symbolClass
readnonatomiccopy

Class associated with the result symbol.

Since
100

◆ tags

- (NSArray<NSString*>*) tags
readnonatomiccopy

Tags associated with the result symbol.

Since
100