gpt4 book ai didi

objective-c - 无法识别的选择器 - [NSView borderRect]

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

我在获取 View 边框的 NSRect 时遇到问题。我不断收到无法识别的选择器错误。

这是代码:

NSGradient *BorderGradient = [[NSGradient alloc] initWithStartingColor:[NSColor blackColor] endingColor:[NSColor whiteColor]];
[BorderGradient drawInRect:[self.window.contentView borderRect] angle:-90];
// Unrecognized Selector error here

我正在尝试访问边框矩形以向边框添加颜色渐变。当我尝试单独访问 borderRect 时,代码也会崩溃,如下所示:

NSRect rect = [self.window.contentView borderRect];
NSLog(@"origin.x = %f", rect.origin.x);

如果尝试将drawInRect: 转换为CGRect。就像这样:

NSGradient *BorderGradient = [[NSGradient alloc] initWithStartingColor:[NSColor blackColor] endingColor:[NSColor whiteColor]];
[BorderGradient drawInRect:NSRectToCGRect([self.window.contentView borderRect]) angle:-90];
// Unrecognized Selector error here

任何帮助将不胜感激。

谢谢!

最佳答案

NSView 没有名为 -borderRect 的方法。这是您实现的自定义方法吗? NSBox 确实有一个 -borderRect 方法。您是否希望窗口的内容 View 成为 NSBox 的实例?你有没有检查过这确实是真的。

也许您真的想要 -frame-bounds

关于objective-c - 无法识别的选择器 - [NSView borderRect],我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14858426/

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