UIImageView *any = [[UIImageView alloc] initWithFrame:CGRectMake(a,b,70,60)];
any.image = [UIImage imageNamed:selectedThumbPath];
any.tag = 0;
[self.view addSubview:any];
在上面的例子中:
a = 165
b = 150
selectedThumbPath = the full path to a thumbnail ie. /users/Cleverbum/library etc
我把头发拉出来,没有错误信息,也没有任何关于为什么它没有画任何东西的线索。更糟糕的是,这是我没有改变的代码的唯一部分之一!
答案 0 :(得分:1)
我曾经遇到类似这样的问题。如果我记得,imageNamed:似乎只对我项目中的图像起作用。尝试查看imageWithContentsOfFile:并从该路径传递NSFile。