我在导航栏的 BackBarButtonItem 中添加图像,图像进入按钮,但图像不是按比例填充的问题。
这是我正在使用的代码,它以下列方式显示。
UIImage *backImage = [UIImage imageNamed:@"back.png"];
UIBarButtonItem *newBackButton = [[UIBarButtonItem alloc] initWithImage:backImage style:UIBarButtonItemStylePlain target:self action:@selector(backAction)];
[self.navigationItem setBackBarButtonItem: newBackButton];
[newBackButton release];
[backImage release];
实际上它应该如下图所示。
谢谢!