This is an error from facebook because they cannot work with customized navigation bar. To fix this. You need to find where navigationbar is colored with image, for example:*** Assertion failure in -[UICGColor encodeWithCoder:], /BuildRoot/Library/Caches/com.apple.xbs/Sources/UIKit_Sim/UIKit-3512.60.7/UIColor.m:1457*** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Only RGBA or White color spaces are supported in this situation.'
[[UINavigationBar appearance] setBarTintColor:[UIColor colorWithPatternImage:[UIImage imageNamed:@"bg_top_pattern"]]];Change to:
[[UINavigationBar appearance] setBackgroundImage:[UIImage imageNamed:@"bg_top_pattern"] forBarMetrics:UIBarMetricsDefault];
The error is gone!
No comments:
Post a Comment