我的视图控制器的名称是 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:'
答案 0 :(得分:2)
我可能错了,但如果您的合成mapView2,那么合适的设置函数不会是:
[self setMapView2:args];
答案 1 :(得分:0)
您是否拥有在.h
中设置地图的属性property(nonamtoic, retain) id* mapView;