文章列表
UIImage *image = [UIImage imageNamed:@"YourImage.png"];
UIImage *tempImage = nil;
CGSize targetSize = CGSizeMake(48,48); //你想要的图片尺寸
UIGraphicsBeginImageContext(targetSize);
CGRect thumbnailRect = CGRectMake(0, 0, 0, 0);
th ...