gpt4 book ai didi

ios - UIButton 的 IB_DESIGNABLE 无法呈现实例

转载 作者:行者123 更新时间:2023-11-28 19:43:46 25 4
gpt4 key购买 nike

我创建了一个类UIButton类,使用IB_DESIGNABLE。但是我得到了一个奇怪的错误 Failed to render instance of RoundedCornerButton: Rendering the view take longer than 200 ms.您的绘图代码可能会遇到性能下降的问题。 我尝试了该网站上的许多建议,但仍然无法修复。请帮我找到根本原因。请查看图片了解更多详细信息(RoundedCornerButton:是 UIButton 类的类别)

enter image description here

更新:RoundedCornerButton类的代码:

.h文件

  #import <UIKit/UIKit.h>
IB_DESIGNABLE
@interface RoundedCornerButton : UIButton
@property (nonatomic) IBInspectable int cornerRadius;
@property (nonatomic) IBInspectable int borderWidth;
@property (nonatomic) IBInspectable UIColor* borderColor;
@end

.m 文件:

  #import "RoundedCornerButton.h"

@implementation RoundedCornerButton

-(void)drawRect:(CGRect)rect{
self.layer.borderWidth = self.borderWidth;
self.layer.borderColor = self.borderColor.CGColor;
[self.layer setCornerRadius:self.cornerRadius];
self.clipsToBounds = YES;

}
@end

我可以在设备上成功运行我的项目,但是我得到了上面的红色警告。(很奇怪,我使用的是Xcode 7.0)

最佳答案

你不能像那样在 drawRect 中玩你的 layer。那不是画画!绘图是关于内容的。

将该代码移到其他地方,例如 awakeFromNibprepareForInterfaceBuilder(两者),一切都会好起来的。

示例代码:

@implementation RoundedCornerButton

-(void) config {
self.layer.borderWidth = self.borderWidth;
self.layer.borderColor = self.borderColor.CGColor;
[self.layer setCornerRadius:self.cornerRadius];
self.clipsToBounds = YES;
}

-(void)prepareForInterfaceBuilder {
[self config];
}

-(void)awakeFromNib {
[super awakeFromNib];
[self config];
}

@end

你可以看到它在 Xcode 7 的 IB 中运行良好:

enter image description here

关于ios - UIButton 的 IB_DESIGNABLE 无法呈现实例,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33294044/

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