Skip to main content
Filter by
Sorted by
Tagged with
1 vote
1 answer
143 views

An app that is capable of running on iPad can be usually run on Mac if properly designed and that's great. Recently I've tried to launch one of my old apps on macOS 26 in "Designed for iPad" ...
laconicman's user avatar
-1 votes
1 answer
843 views

I want to have a sheet that displays a photo picker when the sheet is presented. After selecting a photo, the photo picker should disappear, but the sheet itself should remain open and display the ...
Mastelotto's user avatar
0 votes
0 answers
59 views

In my SwiftUI application user should is allowed select only one photo from photo gallery. When first time application is installed and it asks for App would like to access your photo libary pop up ...
iosdev1111's user avatar
  • 1,112
0 votes
1 answer
464 views

I'm using the image_picker package to select photo in my Flutter iOS app. It worked correctly, but it looks like the Screenshot. It can't be selected nor dismissed. This is my code: final ...
Liangwei Chen's user avatar
-2 votes
1 answer
36 views

When I get some images of Photos in iPhone device using NSItemProvider by PHPickerViewController, I want to know how to check same file(image) with picked photos. Because I use NSItemProvider, the ...
strawnut's user avatar
  • 405
2 votes
1 answer
279 views

I'm using PHPickerViewController to allow a user to import photos into my app. Unfortunately, it seems to default to including location information (see screenshot below, all the way at the bottom). I'...
Bill's user avatar
  • 46k
0 votes
0 answers
532 views

I am fetching an image from the photo library and fetch the GPS Location data, but it's not working. This needs to work on iOS 17 as well, so I used PHPicker. kCGImagePropertyGPSDictionary is always ...
Ramprasath Selvam's user avatar
2 votes
1 answer
316 views

I'm working on a KMM application with a video picking feature. For the iOS implementation, I'm using a PHPickerViewController. The view controller is well presented but I don't know how to handle the ...
François Legrand's user avatar
0 votes
0 answers
132 views

I have a problem choosing multiple images from the photo gallery using PhotoUI. If I pick 6 photos in UICollectionView it's showing 5 photos. Logs: Filename: IMG_0001 File Address: <...
Shahriar Hossain's user avatar
1 vote
1 answer
293 views

I am having this weird and odd behaviour with the PHPickerViewController. I am using SwiftUI and I have implemented the PHPickerViewController as a UIViewControllerRepresentable and everything seems ...
BrettS's user avatar
  • 295
1 vote
0 answers
46 views

I'm using PHPickerViewController in my app and I want to keep it open even after the user selects an image. My flow is the following: after the user select the photo, another viewController is ...
MariaUngur's user avatar
0 votes
2 answers
343 views

I'm using PHPicker to handle multiple image selections. When a user initially selects, for example, 3 images from the photo library, they can re-open the photo library and deselect any of the selected ...
lex's user avatar
  • 193
0 votes
1 answer
594 views

I can't find much documented regarding the PHPickerViewControllerDelegate didFinishPicking function using async await and I'm not sure I understand how to use the NSItemProvider. Here is my delegate ...
David's user avatar
  • 295
3 votes
1 answer
485 views

I am currently using the PHPickerViewController from apple. Works great but whenever I switch to the album segment the cancel button changes colour to white, making it barely visible. When I switch ...
Mr_Bull3t's user avatar
  • 107
1 vote
0 answers
3k views

I want to select multiple images. Currently I was using UIImagePickerController. However, this does not allow multi-image selection as per this question. So I'm looking into implementing this using ...
Muhammed Mahmood's user avatar
1 vote
2 answers
2k views

I have some confusion about permission with using PHPickerViewController & UIImagePickerController. Do I have to request permission for using it ? (Currently, I open it without request permission ...
Nawin P.'s user avatar
  • 311
1 vote
1 answer
1k views

Trying to write a picker for the avatar in my app and when PHAuthorizationStatus is .limited and the user already selected some photos in LimitedLibraryPicker, I'm trying to open the picker in this ...
Liubomyr Havronskiy's user avatar
1 vote
0 answers
759 views

I'm facing issues on 16.0 using PHPickerViewController with PHPickerConfiguration config.selection = .people. The PHPicker screen shows an error "Unable to Load Photos". Xcode 14.0.1. ...
fabrizio sposetti's user avatar
0 votes
0 answers
221 views

I'm trying to get the video URL (video chosen from user camera roll) from PHPickerview result, however I'm receiving this error: It's saying that it can't load representation of type public.movie, ...
EAO123's user avatar
  • 67
1 vote
1 answer
1k views

I know that UIImagePickerController allows you to compress media content upon selection. However, I'm not sure how to do the same with PHPickerViewController. How can I compress a video after getting ...
EAO123's user avatar
  • 67
0 votes
1 answer
264 views

So I set up a PHPickerViewController, and it uploads the videos from the camera roll (slowly ugh, but it does it). Sometimes, the video uploads. Other times, I get this error (especially with longer ...
EAO123's user avatar
  • 67
1 vote
0 answers
452 views

SwiftUI novice here. My PHPickerViewController results show a weird behaviour. Whether I pick one image or several, often the result is empty for a single image or incomplete if multiple images are ...
Landogarner's user avatar
0 votes
1 answer
9k views

I want to select an image from photos using new PHPickerViewController and I want to open PHPickerViewController directly when my controller is load. Like this import UIKit class ViewController: ...
Chandan Chandan's user avatar
1 vote
1 answer
159 views

We use PHPickerViewController to allow the user to pick photos to import into our app. Recently a user said they do not see their Photo Stream in the picker. Is there a way to get the Photo Stream ...
Nic Hubbard's user avatar
  • 42.3k
0 votes
0 answers
2k views

I have an App which needs to Access Photos and Videos from the iPhone Photos App. in iOS 14+ Apple has Introduced new API PHPicker but that still lacks lot of common feature like Cropping image, ...
Jatin Garg's user avatar