MMPopupView icon indicating copy to clipboard operation
MMPopupView copied to clipboard

状态栏字体颜色怎么修改???

Open yhl714387953 opened this issue 7 years ago • 2 comments

状态栏颜色默认是黑色的,能改成别的么?APP中我设置状态栏字体是白色的

yhl714387953 avatar Mar 16 '17 07:03 yhl714387953

dispatch_once(&onceToken, ^{ window = [[MMPopupWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]]; window.rootViewController = [[MMRootViewController alloc] init]; });

我是这样修改的,自定义一个根控制器

yhl714387953 avatar Mar 29 '17 06:03 yhl714387953

-(UIStatusBarStyle)preferredStatusBarStyle{

return UIStatusBarStyleLightContent;

}

在跟控制器内修改颜色

yhl714387953 avatar Mar 29 '17 06:03 yhl714387953