UIImageView *navBarImageView = [[UIImageView alloc] initWithImage:navBarImage];
[navBarImageView setFrame:CGRectMake(0, 0, 320, 44)];
self.navigationItem.titleView = navBarImageView;
[navBarImageView release];
我正在尝试将图像添加到我的导航栏,但是当我使用上面列出的代码时,它将图像放入导航栏中,但在图像的左侧和右侧留下了灰色间隙。该图像是在 320x44 下创建的,尽管我正在设置框架,但我不确定它为什么要调整它的大小。