UINavigationBar にカスタム イメージを配置したいのですが、
この2つのコードスニペットを試したところ、
[self.navigationItem setTitleView:[[UIImageView alloc] initWithImage:[UIImage imageNamed:@"logo.png"]]];
と
UIButton *logoView = [[UIButton alloc] initWithFrame:CGRectMake(0,0,70,30)];
[logoView setBackgroundImage:[UIImage imageNamed:@"logo.png"] forState:UIControlStateNormal];
[logoView setUserInteractionEnabled:NO];
self.navigationItem.titleView = logoView;
デバイスで見ることができる画像がぼやけているか、伸びています。
180*40
(幅*高さ)の解像度で画像を作成しました
画像の正確なサイズを知りたいです。何だろう?
前もって感謝します。