开发者

image not showing on the left of tableview in device

i have created a simple table view containg an image on the left side .it works fine in the simulator,but when connected 开发者_开发问答to a device,i m not getting the image on the left side of the tableview and also the splash screen.I ve even gave a clean built its working on the simulator but not on the device.

NSString *imgSource = [[NSBundle mainBundle] pathForResource:@"Sug" ofType:@"png"];
UIImage *img = [[UIImage alloc]initWithContentsOfFile:imgSource];
cell.imageView.image=img;
return cell;


Dont forget to add the image to your xcode project. And try this

cell.myImageView.image = [UIImage imageNamed:@"name of the image with type"];


I think you something missing to add image in your project resource folder. Please try this it may help you drag and drop your images in your resource folder of project. during this process don't forget to click on "Copy items into destination group's folder" and pressed add. Then cleaning all target try again on your device.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜