我的视图控制器的名称为RouteToStationViewController,在此视图控制器中,当我尝试编译时收到警告,该警告后来导致崩溃,我的相关代码是:

- (void)loadView {
    [self setMapView:[[[RMMapView alloc]initWithFrame:CGRectMake(0.0, 0.0, 700, 700)]autorelease]]; //this line cause warning

    [mapView2 setBackgroundColor:[UIColor blackColor]];
    self.view = mapView2;

}


我得到的警告是:

warning: 'RouteToStationViewController' may not respond to '-setMapView:'

最佳答案

我可能是错的,但是如果您合成mapView 2,那么合适的set函数将不是:

[self setMapView2:args];

10-07 22:59