我在iOS7上的UISplitviewController中的导航栏之间看到一个白色分隔符.
我找不到将其改为黑色的方法.我将splitViewController视图的backgroundColor更改为黑色,但没有运气.
我找不到将其改为黑色的方法.我将splitViewController视图的backgroundColor更改为黑色,但没有运气.
解决方法
只要您的屏幕位于Landscape中,您就可以将其用作解决方法:
UIView *coverView = [[UIView alloc] initWithFrame:CGRectMake(320,1,64)]; [coverView setBackgroundColor:[UIColor colorWithPatternImage:[UIImage imageNamed:@"black_pixel.png"]]]; [splitViewController.view addSubview:coverView];