ios how to add pictures to photolibrary [closed] - iphone

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
i wrote ipad programs in mac using ios, and user imagepickercontroller access photolibrary,but it is empty, so i want to add some photos into it, please tell me, thx

open any photos in safari in iphone simulator (by draging or by searching on google photos).
click and hold mouse left button (if its with buttons).
you will get the option to save the pic.
press the save button if you want to save that image and then open the photo library to see if the photo is added to photo library.
if you dont follow this then let me know.

Related

How to set iPhone lock screen background programmatically? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
I am interested to develope an app which will show quotes on the lock screen of my iPhone. I want app like following image.
I am trying to do it but not getting any idea.
Please help me so I can start working on it.
This is not possible, the SDK does not let you do this.
As #Toam pointed out, the SDK does not allow you to set the lock screen background. However, you can kinda-sorta get around this. If you're willing to play a little music, you can set your own images/text to the lock screen in playback mode. Details can be found here: https://stackoverflow.com/a/8387406/716216

Set Home Screen Image Programmatically in iOS Device [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I am developing an application which allow user to take photo and can set the photo as home screen image?
In case if the device is Jail breaked any solutions?
thanks in advance
You cannot set the background image pragmatically and there are no APIs to do this. Your only option is to save an image to the users' Photos and then tell them that they can set it from there.

Combobox Image for the iPhone [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I'm trying to create simple combo box for my app. I've read the following question: Add UIPickerView & a Button in Action sheet - How?
Do you have links for a nice image that I can put on the button that acts like a combobox? I searched the web with no luck, so whoever uses my app doesn't know that this button is actually a combobox.
Thanks.
Here's link to some nice iphone kit images:
iOS 5 GUI PSD (iPhone 4S)
If you can't find it there, do what we all do, either design the images yourself or hire a designer :)

FB intergration with xcode HACK change screen (remove) [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I implimented the FB post to my app so the users can post there high scores on fb to share with there friends,
but since this i now have 2 flick screen that come up with what liike like a blue book and says hack in them ( i know this is harmless but to the users they may not see it this way) how can i remove this.
i have uploaded a 8 second vid showing this.
VID SHOWING HACK
It appears that somewhere along the way, you set your Default.png. Try deleting that file, and it should go away.

iPhone:How to get all information while to capture photo in iPhone? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
Is there any Image API to provide all information to user while he capture a photo in iPhone? and also I want to develop this functionality in iPhone so please tell me any link or any idea you have.
You can use UIImagePickerController to provide user with the camera to take the photo. You can get the help from here:
https://stackoverflow.com/questions/1282830/uiimagepickercontroller-uiimage-memory-and-more-closed
and here:
How to take picture from Camera & saved in Photo Gallery by programmatically?
When the user chooses to 'Use' the photo and you get the callback to your delegate method imagePickerController:didFinishPickingMediaWithInfo: you can get the info about that photo in the info dictionary using the key UIImagePickerControllerMediaMetadata like this:
[info objectForKey:UIImagePickerControllerMediaMetadata];
You can use NSLog() to see what values it returns and then get them accordingly and display them as you like.