Posts

Showing posts with the label uiimagepickercontroller

Pick Video And Pics from photo gallary please

Image
Clash Royale CLAN TAG #URR8PPP Pick Video And Pics from photo gallary please I'm desperately trying to add video picking option to my app. The app can take a picture and select pictures but it cannot select video file. I want the users to be able to select video from the photo library just as easily as they can select a photo. But most people I have asked seem to think it is not possible. But of course, it is not. I have used many app with this feature. Or this is not something I can do with Xcode? } let actionsheet = UIAlertController(title: nil, message: nil, preferredStyle: .alert) actionsheet.addAction(UIAlertAction(title: "Gallery", style: .default, handler: { (alert: UIAlertAction) in if UIImagePickerController.isSourceTypeAvailable(.photoLibrary){ let mypickerController = UIImagePickerController() mypickerController.delegate = self mypickerController.sourceType = .photoLibrary self.present(mypickerCo...

URGENT: Pick Video And Pics from photo gallary please

Image
Clash Royale CLAN TAG #URR8PPP URGENT: Pick Video And Pics from photo gallary please I'm desperately trying to add video picking option to my app. The app can take a picture and select pictures but it cannot select video file. I want the users to be able to select video from the photo library just as easily as they can select a photo. But most people I have asked seem to think it is not possible. But of course, it is not. I have used many app with this feature. Or this is not something I can do with Xcode? } let actionsheet = UIAlertController(title: nil, message: nil, preferredStyle: .alert) actionsheet.addAction(UIAlertAction(title: "Gallery", style: .default, handler: { (alert: UIAlertAction) in if UIImagePickerController.isSourceTypeAvailable(.photoLibrary){ let mypickerController = UIImagePickerController() mypickerController.delegate = self mypickerController.sourceType = .photoLibrary self.present(my...