我正在尝试制作一个音频播放器,底部有一个工具栏。我以编程方式添加一个带有UIImageView
的barbutton项目作为customView
属性,但是当图像显示时,它几乎不在屏幕上:
图像为Pause@2x.png
,像素为40x40
,这就是我添加按钮的方式
UIBarButtonItem *flex1, *flex2;
UIImageView *iv = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"Pause@2x.png"]];
self.play = [[UIBarButtonItem alloc] initWithCustomView:iv];
[self.play setAction:@selector(pauseButtonClicked:)];
flex1 = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemFlexibleSpace target:nil action:nil];
flex2 = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemFlexibleSpace target:nil action:nil];
[self.bar setItems:@[flex1, _play, flex2]];
Pause.png
Pause@2x.png
答案 0 :(得分:0)
我试图稍后在代码中更改工具栏的高度,删除该行修复它。