You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I bumped into this too. CLImageEditor is not setting the navigation bar color. In the _CLImageEditorViewController.m file, there is a method named -(void)initNavigationBar. Find the line that reads _navigationBar = navigationBar; Immediately after that, I used the following code to set the nav bar color using the toolbarColor from the theme. Not perfect, but it worked.
Changing CLImageEditorTheme properties don't affect style
[CLImageEditorTheme theme].backgroundColor = [UIColor blackColor];
[CLImageEditorTheme theme].toolbarColor = [UIColor blackColor];
[CLImageEditorTheme theme].toolbarTextColor = [UIColor blackColor];
CLImageEditor *editor = [[CLImageEditor alloc] initWithImage:image];
editor.theme.backgroundColor = [UIColor blackColor];
editor.theme.toolbarColor = [UIColor blackColor];
editor.theme.toolbarTextColor = [UIColor blackColor];
editor.delegate = self;
[picker presentViewController:editor animated:YES completion:nil];
No success, still showing white Top Bar with 'Back' and 'OK' on any filter press.
The text was updated successfully, but these errors were encountered: