gpt4 book ai didi

objective-c - 在重写的类方法中调用 super

转载 作者:搜寻专家 更新时间:2023-10-30 19:52:18 28 4
gpt4 key购买 nike

<分区>

我想通过这样的类别将新的自定义 UIButtonType 添加到 UIButton 类:

enum {
UIButtonTypeMatteWhiteBordered = 0x100
};

@interface UIButton (Custom)

+ (id)buttonWithType:(UIButtonType)buttonType;

@end

是否有可能以某种方式获得该覆盖方法的 super 实现?

+ (id)buttonWithType:(UIButtonType)buttonType {
return [super buttonWithType:buttonType];
}

上面的代码无效,因为 super 在此上下文中引用 UIControl

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