我正在尝试向我的 UIToolBar 添加一个自定义按钮(形状和颜色),但它的结果与应有的不同。
什么按钮看起来像:
酒吧里的样子:
这是我用来添加它的代码:
UIImage *backButtonImage = [UIImage imageNamed:@"back-button.png"];
UIBarButtonItem *backButton = [[UIBarButtonItem alloc] initWithImage:backButtonImage style:UIBarButtonItemStylePlain target:self action:@selector(backButtonTapped)];
[toolBarItems addObject:backButton];
我在这里到底做错了什么?