我将现有的iOS 6应用程序移植到新的iOS 7中.但是,当屏幕上出现MKMapView实例时,导航栏会丢失其色调.
重现步骤:
>打开Xcode
>创建一个新的Master-Detail应用程序;
>添加下一行作为AppDelegate.m didFinishLaunchingWithOptions方法的第一行:
[[UINavigationBar外观] setBarTintColor:[UIColor redColor]]
>将下一行添加到MasterViewController.m文件中:
#import< MapKit / MapKit.h>
>最后,将下一行添加到MasterViewController.m cellForRowAtIndexPath方法中:
MKMapView * view = [[MKMapView alloc] initWithFrame:CGRectMake(0,100,40)];
[cell.contentView addSubview:view];
>构建和运行
结果如下:
我做错了吗?
如何解决这个问题?
我应该开始使用Google Maps API吗?
解决方法
好像这样现在已经修复了(最新的ios-Version).我在模拟器和设备上都没有错误.