我已經(jīng)實(shí)現(xiàn)了把一個(gè)UIView直接生成圖片。UIGraphicsBeginImageContext(myView.bounds.size);[myView.layer renderInContext:UIGraphicsGetCurrentContext()];
UIImage *viewImage = UIGraphicsGetImageFromCurrentImageContext();UIGraphicsEndImageContext();
我需要截取這個(gè)UIView的一部分,比如中間100個(gè)像素,怎么實(shí)現(xiàn)呢?
繁華開滿天機(jī)
2023-04-14 18:14:11