1

当我点击搜索栏时,该searchBarBookmarkButtonClicked方法没有触发。我已经添加了self.searchBar.deleagate = self;and 在我的 .h 文件中添加了<UISearchBarDelegate>.

.h 文件:

#import <UIKit/UIKit.h>
#import <MapKit/MapKit.h>

@interface ViewController : UIViewController <UISearchBarDelegate,MKMapViewDelegate>

@property (strong, nonatomic) IBOutlet UISearchBar *searchBar;

@property (strong, nonatomic) IBOutlet MKMapView *myMap;

@end

.m 文件:

#import "ViewController.h"

@interface ViewController ()

@end

@implementation ViewController

- (void)viewDidLoad {
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
   self.searchBar.delegate = self;
   self.myMap.delegate = self;
}

- (void)searchBarBookmarkButtonClicked:(UISearchBar * )searchBar{
NSLog(@"working");

[self.searchBar resignFirstResponder];
NSLog(@"working");

CLGeocoder *geocoder = [[CLGeocoder alloc] init];

[geocoder geocodeAddressString:self.searchBar.text completionHandler:^(NSArray *placemarks, NSError *error) {
    CLPlacemark *placemark = [placemarks objectAtIndex:0];
    MKCoordinateRegion region;
    CLLocationCoordinate2D newLocation = [placemark.location coordinate];
    region.center = [(CLCircularRegion *)placemark.region center];

    MKPointAnnotation *annotation = [[MKPointAnnotation alloc] init];
    [annotation setCoordinate:newLocation];
    [annotation setTitle:self.searchBar.text];
    [self.myMap addAnnotation:annotation];

    MKMapRect mr = [self.myMap visibleMapRect];
    MKMapPoint pt = MKMapPointForCoordinate([annotation coordinate]);
    mr.origin.x = pt.x - mr.size.width * 0.5;
    mr.origin.y = pt.y -mr.size.width * 0.25;
    [self.myMap setVisibleMapRect:mr animated:YES];
}];

}

@end
4

3 回答 3

2

确保你有

  1. 所有委托都已正确设置,这可以在代码或情节提要中完成。
  2. 使用正确的委托方法来捕获事件。

如果你认为

- (void)searchBarBookmarkButtonClicked:(UISearchBar * )searchBar

然后尝试使用其他更直接的方法来触发搜索

- (void)searchBarSearchButtonClicked:(UISearchBar *)searchBar
于 2015-08-20T19:36:40.887 回答
1

试试这个 UISearchBar 委托方法:

- (void)searchBarTextDidBeginEditing:(UISearchBar *)searchBar
于 2015-08-20T17:13:45.697 回答
0

谢谢@Rahul!原来我用错了方法!

。H:

#import <UIKit/UIKit.h>
#import <MapKit/MapKit.h>

@interface ViewController : UIViewController <UISearchBarDelegate,MKMapViewDelegate>

  @property (strong, nonatomic) IBOutlet UISearchBar *searchBar;

  @property (strong, nonatomic) IBOutlet MKMapView *myMap;

@end

米:

#import "ViewController.h"

@interface ViewController ()

@end

@implementation ViewController

- (void)viewDidLoad {
  [super viewDidLoad];
  // Do any additional setup after loading the view, typically from a nib.
  self.searchBar.delegate = self;
  self.myMap.delegate = self;
}

- (void)searchBarBookmarkButtonClicked:(UISearchBar * )searchBar{

[self.searchBar resignFirstResponder];

CLGeocoder *geocoder = [[CLGeocoder alloc] init];

[geocoder geocodeAddressString:self.searchBar.text completionHandler:^(NSArray *placemarks, NSError *error) {
CLPlacemark *placemark = [placemarks objectAtIndex:0];
MKCoordinateRegion region;
CLLocationCoordinate2D newLocation = [placemark.location coordinate];
region.center = [(CLCircularRegion *)placemark.region center];

MKPointAnnotation *annotation = [[MKPointAnnotation alloc] init];
[annotation setCoordinate:newLocation];
[annotation setTitle:self.searchBar.text];
[self.myMap addAnnotation:annotation];

MKMapRect mr = [self.myMap visibleMapRect];
MKMapPoint pt = MKMapPointForCoordinate([annotation coordinate]);
mr.origin.x = pt.x - mr.size.width * 0.5;
mr.origin.y = pt.y -mr.size.width * 0.25;
[self.myMap setVisibleMapRect:mr animated:YES];
}];

}

@end
于 2015-08-20T20:06:47.073 回答