Я пытался добавить ссылку на Google Maps, чтобы я мог показать некоторые направления к местоположению.Единственная проблема, с которой я столкнулся - это код, не распознающий метод.Вот примеры ниже, надеюсь, они помогут.
.h:
#import <UIKit/UIKit.h>
#import <CoreLocation/CoreLocation.h>
@interface More : UIViewController{
}
- (IBAction)directions:(id)sender;
-(CLLocationCoordinate2D)getCurrentLocation;
@end
.m:
- (IBAction)directions:(id)sender {
CLLocationCoordinate2D currentLocation = [self getCurrentLocation];
NSString* address = @"********";
NSString* url = [NSString stringWithFormat: @"http://maps.google.com/maps?saddr=%f,%f&daddr=%@",
currentLocation.latitude, currentLocation.longitude,
[address stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]];
[[UIApplication sharedApplication] openURL: [NSURL URLWithString:url]];
}
Ошибка: Определение метода для 'getCurrentLocation не найдено
Спасибо