2

正しい呼び出しはどれですか? 両方の呼び出しが同じ結果になるようです。

UIImage *img = [UIImage imageWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"image" ofType:@"png"]];

また

UIImage *img = [[UIImage alloc] imageWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"image" ofType:@"png"]];
4

2 に答える 2

4

まず正しいのは、imageWithContentsOfFile がクラスの便利なメソッド (クラス メソッド) であるためです。

于 2012-05-09T07:55:34.170 に答える
-3

UIImage を初期化する最も簡単な方法は...

UIImage *img = [UIImage imageNamed: @"image.png"];
于 2012-05-09T07:53:13.977 に答える