I did some research on other questions to come up with an answer for you ( click here to get the best and most detailed answer ), but a short answer for you would be:
If you combine your label and image into a single UIView object (call it myView ), you can do something like this: something like this:
UIGraphicsBeginImageContext(myView.bounds.size); [myView.layer renderInContext:UIGraphicsGetCurrentContext()]; UIImage *viewImage = UIGraphicsGetImageFromCurrentImageContext(); UIGraphicsEndImageContext();
And the viewImage UIImage will be what you save in the album.
source share