本文介绍了更改UIDocumentInteractionController导航栏的颜色的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
有没有办法更改 UIDocumentInteractionController
导航栏
的色调/背景颜色?
Is there a way to change the tint/background color of UIDocumentInteractionController
navigationbar
?
推荐答案
@DOOManics实施的更清洁版本:
A cleaner version of @DOOManics implementation:
- (UIViewController *)documentInteractionControllerViewControllerForPreview:(UIDocumentInteractionController *)controller
{
return [self navigationController];
}
这篇关于更改UIDocumentInteractionController导航栏的颜色的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!