MSFGeocodingAddress
Objective-C
@interface MSFGeocodingAddress : MSFAddress
Swift
class MSFGeocodingAddress : MSFAddress
A geographical address describing country, region, county and other information.
-
Constructs an empty Address object.
Declaration
Objective-C
- (id)init;Swift
init!() -
Constructs a new address from the the country, region, county and other attributes.
Declaration
Objective-C
- (id)initWithCountry:(NSString *)country region:(NSString *)region county:(NSString *)county locality:(NSString *)locality neighbourhood:(NSString *)neighbourhood street:(NSString *)street postcode:(NSString *)postcode houseNumber:(NSString *)houseNumber name:(NSString *)name categories:(MSFStringVector *)categories;Swift
init!(country: String!, region: String!, county: String!, locality: String!, neighbourhood: String!, street: String!, postcode: String!, houseNumber: String!, name: String!, categories: MSFStringVector!)Parameters
countryThe country name of the address.
regionThe region name of the address.
countyThe county name of the address.
localityThe locality name of the address.
neighbourhoodThe neighbourhood name of the address.
streetThe street name of the address.
postcodeThe postcode of the address.
houseNumberThe house number of the address.
nameThe name of the address.
categoriesThe category tags describing the address.
-
Undocumented
Declaration
Objective-C
-(void)dealloc;Swift
func dealloc()