I've encounter the similar issue in Xcode 12.2 and simulator iOS 14.x
[Renderer] IconRenderer: Left horizontal padding (18.000000) plus right horizontal padding (18.000000) is larger than the image width (34.000000). Image will now use the center column of pixels to stretch.
It seems to happen independently of setting region/zooming/adding annotations
Post
Replies
Boosts
Views
Activity
Did you find solution for UISearchBar cancel button not to dimiss entire viewController having navigationItem.searchController assigned?
if viewController.navigationItem.searchController != nil {
DispatchQueue.main.asyncAfter(deadline: .now() + 0.1) {
viewController.navigationItem.searchController = nil
}
Really I need to add 0.1 delay to make it work? Isn't it a little stupid hacky soluton.