MBMMapMemoryBudget
@interface MBMMapMemoryBudget : NSObject
- (nonnull instancetype)initWithValue:(nonnull id)value __attribute__((deprecated("Please use: '+from{TypeName}:' instead.")));
+ (nonnull instancetype)fromMapMemoryBudgetInMegabytes:(nonnull MBMMapMemoryBudgetInMegabytes *)value;
+ (nonnull instancetype)fromMapMemoryBudgetInTiles:(nonnull MBMMapMemoryBudgetInTiles *)value;
- (BOOL)isMapMemoryBudgetInMegabytes;
- (BOOL)isMapMemoryBudgetInTiles;
- (nonnull MBMMapMemoryBudgetInMegabytes *)getMapMemoryBudgetInMegabytes __attribute((ns_returns_retained));
- (nonnull MBMMapMemoryBudgetInTiles *)getMapMemoryBudgetInTiles __attribute((ns_returns_retained));
@property (nonatomic, nonnull) id value;
@property (nonatomic, readonly) MBMMapMemoryBudgetType type;
@end
                Undocumented
- 
                  
                  
Deprecated
Please use: ‘+from{TypeName}:’ instead.
Undocumented
Declaration
Objective-C
- (nonnull instancetype)initWithValue:(nonnull id)value __attribute__((deprecated("Please use: '+from{TypeName}:' instead.")));Swift
init(value: Any) - 
                  
                  
Undocumented
Declaration
Objective-C
+ (nonnull instancetype)fromMapMemoryBudgetInMegabytes:(nonnull MBMMapMemoryBudgetInMegabytes *)value;Swift
class func fromMapMemoryBudget(_ value: MBMMapMemoryBudgetInMegabytes) -> Self - 
                  
                  
Undocumented
Declaration
Objective-C
+ (nonnull instancetype)fromMapMemoryBudgetInTiles:(nonnull MBMMapMemoryBudgetInTiles *)value;Swift
class func fromMapMemoryBudget(_ value: MBMMapMemoryBudgetInTiles) -> Self - 
                  
                  
Undocumented
Declaration
Objective-C
- (BOOL)isMapMemoryBudgetInMegabytes;Swift
func isMapMemoryBudgetInMegabytes() -> Bool - 
                  
                  
Undocumented
Declaration
Objective-C
- (BOOL)isMapMemoryBudgetInTiles;Swift
func isMapMemoryBudgetInTiles() -> Bool - 
                  
                  
Undocumented
Declaration
Objective-C
- (nonnull MBMMapMemoryBudgetInMegabytes *)getMapMemoryBudgetInMegabytes __attribute((ns_returns_retained));Swift
func getInMegabytes() -> MBMMapMemoryBudgetInMegabytes - 
                  
                  
Undocumented
Declaration
Objective-C
- (nonnull MBMMapMemoryBudgetInTiles *)getMapMemoryBudgetInTiles __attribute((ns_returns_retained));Swift
func getInTiles() -> MBMMapMemoryBudgetInTiles - 
                  
                  
Undocumented
Declaration
Objective-C
@property (nonatomic, nonnull) id valueSwift
var value: Any { get set } - 
                  
                  
Undocumented
Declaration
Objective-C
@property (nonatomic, readonly) MBMMapMemoryBudgetType typeSwift
var type: MapMemoryBudgetType { get } 
        MBMMapMemoryBudget Class Reference