AWFTableLayerTypeRow
Objective-C
@interface AWFTableLayerTypeRow
Swift
class AWFTableLayerTypeRow
An AWFTableLayerTypeRow
object is a subclass of AWFTableSectionRow
that is used for managing data layer row options in a AWFMapOptionsViewController
instance.
-
The data layer type associated with the row.
Declaration
Objective-C
@property (nonatomic) AWFMapLayer _Nonnull layerType;
Swift
var layerType: AWFMapLayer { get set }
-
Instantiates and returns an
AWFTableLayerTypeRow
instance initialized with the specifiedtitle
andlayerType
.Declaration
Objective-C
+ (nonnull instancetype)rowWithTitle:(nonnull NSString *)title layerType:(nonnull AWFMapLayer)layerType;
Swift
convenience init(title: String, layerType: AWFMapLayer)
Return Value
An initialized
AWFTableLayerTypeRow