0
我有一個viewA包含一個GLKView和子視圖作爲UIImageView。如何將viewA保存到圖像?我使用這個代碼,工作良好的任何形式的看法,但GLKView如何快照視圖包含GLKView
- (UIImage *) takeSnapshot
{
UIGraphicsBeginImageContextWithOptions(self.bounds.size, NO, [[UIScreen mainScreen] scale]);
[self.layer renderInContext:UIGraphicsGetCurrentContext()];
UIImage * img = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
return img;
}