gpt4 book ai didi

ios - 定制元素

转载 作者:行者123 更新时间:2023-11-29 03:42:08 27 4
gpt4 key购买 nike

我正在尝试学习创建自定义元素。我从导航栏开始,只是尝试为红色导航栏创建一个类。

我创建了一个扩展 UINavigationBar 的类,并在其中包含以下代码:

- (id)initWithFrame:(CGRect)frame
{
self = [super initWithFrame:frame];
if (self) {
self.barStyle = UIBarStyleBlackTranslucent;
self.tintColor = [UIColor redColor];
}
return self;
}

所以让我们看看我的场景中有一个 View 。我添加了一个带有界面生成器的导航栏,并将其类设置为使用上面的新类。但是颜色没有改变。我做错了什么?

最佳答案

必须在drawRect函数中进行修改。例如,我最终做的是:

- (void)drawRect:(CGRect)rect
{
UIColor *color = [UIColor redColor];
CGContextRef context = UIGraphicsGetCurrentContext();
CGContextSetFillColor(context, CGColorGetComponents( [color CGColor]));
CGContextFillRect(context, rect);
self.tintColor = color;
}

关于ios - 定制元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18266677/

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