xib にナビゲーション バーとナビゲーション アイテムを追加しました。ナビゲーション バーの左側に画像を追加する必要がありますが、追加されません。これは私が取り組んでいるコードです:
- (void)viewDidLoad
{
UIImage *image = [UIImage imageNamed: @"i_launcher.png"];
UIImageView *imageView = [[UIImageView alloc] initWithImage: image];
self.navigationItem.titleView = imageView;
[imageView release];
}
画像が追加されない理由がわかりません。どうすれば追加できますか?