imagePickerController から画像を選択し、80X80 にサイズ変更してテーブルに表示しています。
以下は cellForRowAtIndexPath のコードです
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil)
{
cell = [[UITableViewCell alloc]
initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
cell.selectionStyle = UITableViewCellSelectionStyleNone;
}
photobj= [appD.array1 objectAtIndex:indexPath.row];
NSLog(@"photoobj=%@",photobj);
cell.imageView.frame=CGRectMake(0, 0, 80,80);
cell.imageView.tag=2000+indexPath.row;
UIImage *img1=[[[UIImage alloc]initWithData:photobj.imgdata]autorelease];
NSLog(@"frame=%f",img1.size.width);
// img1=[UIImage imageWithData:photobj.imgdata];
cell.imageView.image=img1;
NSLog(@"frame=%@",cell.imageView.image);
return cell;//after this , crash
}
セルを返した後、以下の画像サイズ変更メソッドを呼び出すとクラッシュします
- (UIImage *)resizeImageToSize:(CGSize)targetSize withImage:(UIImage *)img
{
UIImage *sourceImage = img;
UIImage *newImage = [[UIImage alloc]init];
CGSize imageSize = sourceImage.size;
CGFloat width = imageSize.width;
CGFloat height = imageSize.height;
CGFloat targetWidth = targetSize.width;
CGFloat targetHeight = targetSize.height;
CGFloat scaleFactor = 0.0;
CGFloat scaledWidth = targetWidth;
CGFloat scaledHeight = targetHeight;
CGPoint thumbnailPoint = CGPointMake(0.0,0.0);
if (CGSizeEqualToSize(imageSize, targetSize) == NO) {
CGFloat widthFactor = targetWidth / width;
CGFloat heightFactor = targetHeight / height;
if (widthFactor < heightFactor)
scaleFactor = widthFactor;
else
scaleFactor = heightFactor;
scaledWidth = width * scaleFactor;
scaledHeight = height * scaleFactor;
// make image center aligned
if (widthFactor < heightFactor)
{
thumbnailPoint.y = (targetHeight - scaledHeight) * 0.5;
}
else if (widthFactor > heightFactor)
{
thumbnailPoint.x = (targetWidth - scaledWidth) * 0.5;
}
}
UIGraphicsBeginImageContext(targetSize);
CGRect thumbnailRect = CGRectZero;
thumbnailRect.origin = thumbnailPoint;
thumbnailRect.size.width = scaledWidth;
thumbnailRect.size.height = scaledHeight;
[sourceImage drawInRect:thumbnailRect];
newImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
if(newImage == nil)
NSLog(@"could not scale image");
return newImage ;
}
以下は、上記のメソッド UIImage *imageEdited = [info objectForKey:UIImagePickerControllerOriginalImage]; を呼び出しているコードです。
self.img_imageView2.image=[self resizeImageToSize:CGSizeMake(80, 80) withImage:imageEdited ];
photobj=[[PhotoObject alloc]init];
photobj.imgdata=UIImageJPEGRepresentation(self.img_imageView2.image, 0.9);
[appD.array1 addObject:photobj];
この画像サイズ変更方法をバイパスすると、問題なく動作しますが、何が問題なのか正確にはわかりませんか?