gpt4 book ai didi

iphone - 我应该如何在导航栏上绘制自定义按钮

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

我想在导航栏上绘制自定义按钮。

谁能帮我。

最佳答案

简单

[[UIBarButtonItem alloc] initWithCustomView: customButton];

可以工作

所以类似的事情:

UIButton *button = [UIButton buttonWithType: UIButtonTypeCustom];
[button setImage:[UIImage imageNamed:@"animage.png"]];
[button addTarget:self action:@selector(onClick:) forControlEvents: UIControlEventTouchUpInside];
UIBarButtonItem *customItem = [[UIBarButtonItem alloc] initWithCustomView: button];
[self.navigationItem setLeftBarButtonItem:customItem];

干杯,克日什托夫·扎布沃茨基

关于iphone - 我应该如何在导航栏上绘制自定义按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3871844/

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