NSURL *url = [NSURL URLWithString:
pictureUrl];
UIImage *image = [UIImage imageWithData: [NSData dataWithContentsOfURL:url]];
NSLog(@"image width:%@",image.size.width);
我从此日志中得到空值?图像有效且显示正确?这是在表格单元格中
NSURL *url = [NSURL URLWithString:
pictureUrl];
UIImage *image = [UIImage imageWithData: [NSData dataWithContentsOfURL:url]];
NSLog(@"image width:%@",image.size.width);
我从此日志中得到空值?图像有效且显示正确?这是在表格单元格中