我使用它是为了通过我的移动应用程序在我的日历上添加事件。 我想要做的是改变导航栏项目的颜色(取消和完成)请检查下图:
有什么建议吗?
使用此代码
[self.navigationController.navigationBar setTintColor:[UIColor whiteColor]];
如果你正在展示 UIViewController
然后使用下面的代码:
创建一个UIBarButtonItem
UIBarButtonItem *barButton = [[UIBarButtonItem alloc] initWithTitle"Cancel" style:UIBarButtonItemStylePlain target:self actionselector(cancelButtonTapped];
[barButton setTintColor:[UIColor whiteColor]];
如果你使用的是 Apple
提供的 UIViewController
那么这段代码:
UIImagePickerController *controller = [[UIImagePickerController alloc] init];
[controller setDelegate:self];
[controller setSourceType:UIImagePickerControllerSourceTypePhotoLibrary | UIImagePickerControllerSourceTypeSavedPhotosAlbum];
[controller.navigationBar setTintColor:[UIColor redColor]];
关于ios在呈现事件套件时更改导航栏项目的颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25053852/
欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) | Powered by Discuz! X3.4 |