I have an application in which i want to get images from instagram or cameraroll and then use that images. How to pick images from instagram?
You can access instagram images in your iOS app only by using instagramAPI.
If you are not familiar with Social media integration in iOS, please be aware that any social media integration in iOS requires the respective API .
You should start with their docs instagramAPI .The way to access is also described here.
you can check this easy framework https://github.com/Busta117/SBInstagram
you can change when the user tap over the image and get your UIimage to use it where do you want.
Related
I have a Google Action that I can share the location with and ask for some information. In order to upload an image it has to link to a web app and then upload the image there. Then that image can be seen back in Google Assistant if I then open it up again, call up the Google Action and ask for it. Is there any way of upload an image in the Google Assistant to a database? (firebase)
Not directly, no. There is no API (yet) to get access to the camera on devices that have it. Your workaround is currently the most direct method we have.
I have tried all the way to make like instagram photo map in ios app. Please tell me if you have any link or code to help.
I have tried google map library and as well custom clubbing but unfortunately not got success.
I used Facebook sdk in the past, but the new version is making me crazy. I'm trying to create a UIActivity subclass that calls the official facebook share dialog. Since for someone having the "via iOS" instead of the app name in the post is a first world problem (just kidding), I can't use the iOS native integration with the SLComposeViewController.
In the documentation it seems that for post a picture using the share dialogs you need to use open graph actions, but is not totally clear to me if you can do inside your app, or you need to rely on external php application.
I've seen that there are some common actions that wouldn't require a declaration of a new one, but posting a photo or a movie it doesn't seems to be there.
I'd like to use something "native" as a share dialog instead of an FBSession if possible.
I am trying to build an iOS application that will display all of the iOS device's photos in a view. The user should then be able to click each photo to select (multiple selections allowed) then after selecting, upload the photos to a webserver.
Is it possible to access the photos that are controlled by the Photos application? Does anyone know of any efficient way to get access to the photos (third party framework) and/or a tutorial?
Thanks
Apple's developer site lists the Assets Library Framework as a way "to access the pictures and videos managed by the Photos application." The documentation there is fairly extensive, and looking around the dev site more should yield several tutorials and example apps.
AFAIK you can't grab all images from camera roll and use them in your app but you can have a UIImagePickerController that lets the user choose the image from their camera roll and a delegate is fired when they select one (or take a picture depending on how you set it up) then you can use that image in your app.
Is it possible to implement the iOS 5 > 'Photos' app cropping mechanism? This is exactly what I need for my app. I need to allow a user to pick an image and crop that photo using something like what the 'Photos' app provides. Is there a library for this? Can I hook directly to it from the SDK? What are my options here? I have looked through Google and Github with no luck.
The standard SDK provides a way to get a picture, let the user crop it, and import it into your App, See: http://developer.apple.com/library/IOS/#documentation/AudioVideo/Conceptual/CameraAndPhotoLib_TopicsForIOS/Articles/TakingPicturesAndMovies.html