我有一个库项目和一个主项目,我想将主项目中的图像传递给我的库项目,所以我可以实现这一点。
问问题
38 次
1 回答
0
将图像添加到库项目。
在代码中使用图像时,而不是使用
UIImage *image = [UIImage imageNamed:@"img.png"];
使用如下:
NSBundle *bundle = nil;
bundle = [NSBundle bundleWithIdentifier:@"com.test.libary"]; //library project's identifier
UIImage *image = [UIImage imageWithContentsOfFile: [bundle pathForResource:@"img" ofType:@"png"]];
于 2012-06-22T06:44:55.520 回答