私は 1 つのライブラリ プロジェクトと 1 つのメイン プロジェクトを持っています。イメージをメイン プロジェクトからライブラリ プロジェクトに渡したいので、これを達成できます。
質問する
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 に答える