部分代码如下@interface mapViewController()<UIGestureRecognizerDelegate,BMKMapViewDelegate>
@property (unsafe_unretained, nonatomic) IBOutlet BMKMapView *mapView;
@end@implementation mapViewController
- (void)viewDidLoad {
    [super viewDidLoad];    NSLog(@"%@",self.mapView);}
-(void)viewWillAppear:(BOOL)animated {
    NSLog(@"%@",self.mapView);
    
    [_mapView viewWillAppear];
    _mapView.delegate = self; // 此处记得不用的时候需要置nil,否则影响内存的释放
}第一次打印self.mapView的时候出现Unknown class BMKMapView in Interface Builder file。
希望高手帮忙解决下,我用了storyboard,希望有大神可以留下邮箱帮我修改一下工程,让我学习一下,真心求教。