When I use PHPickerViewController, I found that the button text color of the navigationbar is very close to the background color, Is there any way to customize the color?
2. When I use the official demo, I selected a gif from the album, but it show the type is jpg, so, how can I get the real gif from UIImage ?
Code Block if itemProvider.canLoadObject(ofClass: UIImage.self) { itemProvider.loadObject(ofClass: UIImage.self) { [weak self] image, error in DispatchQueue.main.async { guard let self = self, self.currentItemProvider == itemProvider else { return } if let image = image as? UIImage { /**the gif can't play, and show the image type is jpg */ self.display(image: image) } else { self.display(image: UIImage(systemName: "exclamationmark.circle")) } } } }