0
NSURL *url = [NSURL URLWithString: 
              pictureUrl];
UIImage *image = [UIImage imageWithData: [NSData dataWithContentsOfURL:url]];  
NSLog(@"image width:%@",image.size.width);

我从此日志中得到空值?图像有效且显示正确?这是在表格单元格中

4

1 回答 1

1

试试这个:

NSLog(@"image width:%f",image.size.width);

除此之外,我希望你在后台线程上调用它(而不是在 cellForRow 中),否则加载你的单元格会很慢并且搞砸用户交互。

于 2012-07-21T07:36:45.917 回答