Please do not post the same thing multiple times. The board software automatically flags certain posts as needing moderator attention. This happens the most often for new users. I'm pretty sure this is made clear at the time you attempt to post. Posting the same thing over and over again just makes that many more posts the moderators have to weed through later. This makes us sad. Don't make us sad. If your post/thread doesn't appear, just wait a while. Don't post it again. If it hasn't shown up by the next day, then you can try again. I normally go through posts in the mornings, and try to check a few times throughout the day, but I'm not here 24/7. There will typically be a significant delay before posts are approved. Just be patient.
I am brand new to this coding thing. Forty-Five years old and trying to learn.
I'm trying to build a scrolling photo album app. This part I have pretty much conquered. I'm able to get the app on my phone and scroll though the images with no warnings.
The next thing I want to add is the ability for the user to save an image for use as their Wallpaper or to email the image.
Again, very new to this so please if you can help, be as detailed as possible.
Thanks! While I'm sure that will work, I have no idea as to how to implement. Could you help with a code sample and where it should be placed? Again, still trying to learn the basics. Just got Xcode 3 days ago.
There's sample code in the documentation that will show you how to use MFMailComposeViewController.
A quick search on the forum will give you samples for UIImageWriteToSavedPhotosAlbum too. In simplest terms you can just pass it a UIImage object UIImageWriteToSavedPhotosAlbum(myImage, nil, nil, nil); As for where to call it, I can't say, depends on your app, but you call it at the point where you want to save the image.
Replies
- Spam
- Abuse
- Troll
0 · Off Topic Insightful Disagree Dislike Like AwesomeThanks again!
- Spam
- Abuse
- Troll
0 · Off Topic Insightful Disagree Dislike Like AwesomeA quick search on the forum will give you samples for UIImageWriteToSavedPhotosAlbum too. In simplest terms you can just pass it a UIImage object UIImageWriteToSavedPhotosAlbum(myImage, nil, nil, nil);
As for where to call it, I can't say, depends on your app, but you call it at the point where you want to save the image.
- Spam
- Abuse
- Troll
0 · Off Topic Insightful Disagree Dislike Like Awesome