将标签文本与图像组合

时间:2012-05-26 06:10:52

标签: iphone ios5

我有一张带有标签的图片,但是当我将照片保存到相册时,标签当然没有出现。我怎么做,我搜索了很多,没有任何作用。

1 个答案:

答案 0 :(得分:5)

我在其他问题上做了一些研究,为你找到答案(click here for the best and most detailed answer),但对你的简短回答是:

如果您将标签和图片合并到一个UIView对象中(我们称之为myView),您可以执行以下操作:类似这样的内容:

UIGraphicsBeginImageContext(myView.bounds.size);
[myView.layer renderInContext:UIGraphicsGetCurrentContext()];
UIImage *viewImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();

viewImage UIImage对象将保存到相册中。