17
วิธีจับภาพ UIView สู่ UII โดยไม่สูญเสียคุณภาพบนจอแสดงผลเรตินา
รหัสของฉันทำงานได้ดีสำหรับอุปกรณ์ปกติ แต่สร้างภาพที่พร่ามัวบนอุปกรณ์เรติน่า ใครรู้วิธีแก้ปัญหาของฉันหรือไม่ + (UIImage *) imageWithView:(UIView *)view { UIGraphicsBeginImageContext(view.bounds.size); [view.layer renderInContext:UIGraphicsGetCurrentContext()]; UIImage * img = UIGraphicsGetImageFromCurrentImageContext(); UIGraphicsEndImageContext(); return img; }