初始化地图但不要让它适合屏幕视图边界

时间:2011-05-03 15:39:22

标签: ios mapkit uinavigationbar

mapView =[[MKMapView alloc]initWithFrame:self.view.bounds];

这会在所有屏幕上制作mapView,所以它隐藏了我的UINavigationBar如何在不隐藏它的情况下显示我的地图呢?提前thx:)

1 个答案:

答案 0 :(得分:1)

尝试这个 -

mapView =[[MKMapView alloc]initWithFrame:CGRectMake(0.0f,0.0f,self.view.frame.size.width,self.view.frame.size.height)];