Я могу использовать следующий код для создания изображения из UIView.
Однако тот же код не будет захватывать текст UILabel. (Хотя он сохраняет цвет фона метки) Как я могу создать изображение UILabel с текстом?
CGSize size = view.bounds.size;
CGContextRef context = CreateARGBBitmapContext(size);
CGContextTranslateCTM(context, 0, size.height);
CGContextScaleCTM(context, 1.0, -1.0);
[view.layer renderInContext: context];
CGImageRef imageRef = CGBitmapContextCreateImage(context);
UIImage* img = [UIImage imageWithCGImage: imageRef];
CGImageRelease(imageRef);
CGContextRelease(context);