gpt4 book ai didi

iphone - 将图像添加到iPhone中工具栏的栏按钮项

转载 作者:行者123 更新时间:2023-12-03 20:22:23 26 4
gpt4 key购买 nike

我想将图像添加到工具栏的栏按钮项我尝试使用 xib 并编码两者但图像显示为白色补丁有人能建议我做错了什么吗或者我应该采取哪种方式进行

最佳答案

将按钮类型设置为自定义。

尝试这样

UIButton *button =  [UIButton buttonWithType:UIButtonTypeCustom];
[button setImage:[UIImage imageNamed:@"myImage.png"] forState:UIControlStateNormal];
[button addTarget:self action:@selector(blah) forControlEvents:UIControlEventTouchUpInside];
[button setFrame:CGRectMake(0, 0, 32, 32)];
self.navigationItem.rightBarButtonItem = [[UIBarButtonItem alloc] initWithCustomView:button];

祝一切顺利。

关于iphone - 将图像添加到iPhone中工具栏的栏按钮项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4506363/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com