我有一个字符串变量(imageStr),其中有我从sqlite
数据库中获取的图像的名称。如何将该字符串变量作为图像名称分配给 a imageview
?
代码:
UIImageView *imageHolder = [[UIImageView alloc] initWithFrame:CGRectMake(150, 11, 50, 25)];
UIImage *image = [UIImage imageNamed:imageStr];
imageHolder.image=image;
NSLog(@"image in mediView:%@",imageHolder.image);
在日志中我得到了NULL
价值。如果我只打印“ imageStr ”,那么它会给我字符串值。