-1
/*enter code here */    UIImage *image = [UIImage imageNamed: @"top-bar.png"];
UIImageView *imageview = [[UIImageView alloc] initWithImage: image];

// set the text view to the image view
self.navigationItem.titleView = imageview;

このコードをカスタム ナビゲーション バーに使用していますが、画像が切り取られています。画像の幅はデバイスの幅と同じですが。

任意のアイデア、これを解決する方法。

ここに画像の説明を入力

4

1 に答える 1

0

titleView プロパティは、完全なナビゲーション バーではなく、ナビゲーションのタイトル領域のみをカバーします。

于 2013-02-27T14:35:23.533 に答える