gpt4 book ai didi

iphone - 我可以在 iPhone 应用程序中为 UIToolBar 提供自定义背景吗?

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

是否可以为 UIToolBar 提供图像的自定义背景,而不是通常的蓝色/黑色淡出?

我尝试为 View 提供背景并设置 UIToolBar 的不透明度,但这也会影响其上任何 UIBarButtons 的不透明度。

最佳答案

在这里回答我自己的问题!重写drawRect函数并创建UIToolbar的实现就可以解决这个问题:)

    @implementation UIToolbar (CustomImage)
- (void)drawRect:(CGRect)rect {
UIImage *image = [UIImage imageNamed: @"nm010400.png"];
[image drawInRect:CGRectMake(0, 0, self.frame.size.width, self.frame.size.height)];
}
@end

关于iphone - 我可以在 iPhone 应用程序中为 UIToolBar 提供自定义背景吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1941103/

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