Questions tagged [photolibrary]

176 questions
0
votes
1 answer

Access all photos of device in my iOS App

I want to take all photos and videos from device Photos app and show it in my app. First of all is Apple allowing for the same or not? If yes how i can i do that, is Photoframework useful for that?
RBN
  • 482
  • 4
  • 13
0
votes
1 answer

How can i save Images in PhotoAlbem if not available from my Native application?

My Application is like WALLPAPER PREVIEW.i am using images from default photo library so how can i store images in Photo library from my native application.
Ankit Vyas
  • 7,507
  • 13
  • 56
  • 89
0
votes
0 answers

How to check Image is exist on Photo library if exist show it if not download in objective c

I am new in iOS and I am facing problem regarding to check image exist on photo library or not. My code is like this. Saving image to photo library: NSString *strImgURLAsString = @"Imagename.png"; [strImgURLAsString…
Muju
  • 884
  • 20
  • 54
0
votes
0 answers

app crashes after accessing photo library

This is what i aded in the info plist Key : Privacy - Camera Usage Description Value : deportes wants to access your photos Key : Privacy - Photo Library Usage Description Value : deportes wants to access your photos This the…
0
votes
2 answers

why collection view in empty when I fetch photos from gallery in swift 3?

I am Using swift 3 and want to see photo library IMAGES in the collection view But these codes doesn't work for me before seeing my codes Attention to this : **I will not receive any errors or crash I just can't see any of my image library in the…
Saeed Rahmatolahi
  • 1,317
  • 2
  • 27
  • 60
0
votes
1 answer

how can I see images with NohanaImagePicker pod file?

I am using swift 3 and use NohanaImagePickerpod file to select multiple images and its working well the problem is that I want to see selected Images in collection view and i will receive fatal Error in this line cell.imageforCV.image = …
Saeed Rahmatolahi
  • 1,317
  • 2
  • 27
  • 60
0
votes
0 answers

I used Privacy Description in my app to use photo library But The app shows error

I know If you want to use camera or photo library in the app you have to add privacy description in the info part and I added that and write a text in that But The app shows Error and tell me you have to add Privacy Description here is my code…
Saeed Rahmatolahi
  • 1,317
  • 2
  • 27
  • 60
0
votes
1 answer

Display Photo Library Horizontally

Hey all, I am developing a game in which I need to display all the view horizontally. Now the problem is when I open the photot library It gets diplayed in vertical view. So I want it also to be displayed horizontally. Any help will be really…
Suresh Varma
  • 9,750
  • 1
  • 60
  • 91
0
votes
1 answer

Is it possible to search for objects in Photos?

do you know if it's possible to use the Photos Framework to search for specific photo categories (auto-generated by Apple's ML) in iOS 10? For example, I'd like to get all the photos with a car in them.
cocoapriest
  • 1,869
  • 3
  • 22
  • 36
0
votes
4 answers

Access to Camera and PhotoLibrary

In my iOS app I have an ImageView and two Buttons for opening the camera and the photolibrary. When I click on one of the buttons the app closes. (I'm running the app on my device, not the simulator) What do I have to change in my code? class…
spokmock
  • 1
  • 1
0
votes
1 answer

Save an image from photo library to Main Bundle in app Xcode

is it possible to save a image I have picked form the photos library to the Main Bundle of my app? I thought I read somewhere that you can't write to the main bundle of an app in Xcode. If this is not true and it is possible how would I go about…
user1114881
  • 731
  • 1
  • 12
  • 25
0
votes
1 answer

No visible @interface for 'CameraTakePictureOverlay' for UIImagePickerControllerSourceTypePhotoLibrary

Having trouble using accessing the UIImagePickerControllerSourceTypePhotoLibrary button overlay here is what I got, the problem is in the selector (takeLib:). using property for the imagePicker @property (weak, nonatomic) UIImagePickerController…
0
votes
2 answers

How to use PhotoLibrary without jailbreak

This is nice thing you have done. Could you please explain: How to use PhotoLibrary's CameraController without jailbreak. Actually I 've downloaded class-dump and tried dumping PhotoLibrary but did not work out well. It is giving: /* * …
sagar
0
votes
1 answer

Adding video to custom Photos collection returning error

I'm using the following code to export a video to a custom Photos collection: PHPhotoLibrary *photoLibrary = [PHPhotoLibrary sharedPhotoLibrary]; __block PHAssetCollection *album; PHFetchResult *fetchResult = [PHAssetCollection…
PineApps
  • 43
  • 7
0
votes
0 answers

Adding a description to UIImage in Swift when saved

I am working on an application that saves user's created images to the photo library. I need to attach a user name to each saved image so that I can recall these later. As far as I understand (please correct me if I am wrong), if I am saving to the…
abovezero
  • 63
  • 2
  • 11