Hello,
I have the following issue in CarPlay starting iOS 13.4 beta. The app that I’m working on it’s a navigation app with support for CarPlay.
When I have a new maneuver, I create an object called CPManeuver. I set the maneuver instruction text, turn image and in some cases junction image. All works great in iOS 13.3.1 with Xcode 11.3.1.
But in iOS 13.4 beta 5 with Xcode 11.4.beta 3, junction image does not appear in navigation panel. I try with different image sizes but no success.
I try to set junctionImage on second maneuver. Same issue. Image is not presented in navigation panel.
This is the API that I'm using:
junctionImage is a @c UIImage used to display a junction for the maneuver.
@note The maximum image size is 140 points by 100 points. If necessary, images will be scaled down to fit while maintaining the aspect ratio.
*/
@property (nullable, nonatomic, strong) UIImage *junctionImage;