gpt4 book ai didi

c# - cocoa 的属性网格

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

我在Cocoa中没有找到任何类似于.NET PropertyGrid类的东西,所以我开始编写自己的版本。我使用运行时的信息来获取对象的属性:

Class reflectedClass = [reflectedObject class];
uint propertyCount = 0U;
objc_property_t *properties = class_copyPropertyList(reflectedClass,
&propertyCount);

这用于在 NSTableView 中获取/设置值:

- (NSString *)propertyNameAtIndex:(int)index
{
return (NSString *)[cachedPropertyNames objectAtIndex:index];
}

- (id)propertyValueAtIndex:(int)index
{
return [reflectedObject valueForKey:[self propertyNameAtIndex:index]];
}

- (void)setPropertyValue:(id)value atIndex:(int)index
{
[reflectedObject setValue:value forKey:[self propertyNameAtIndex:index]];
}

使用基本 KVO 与 reflectedObject 同步更新:

[reflectedObject addObserver:self
forKeyPath:propertyName
options:NSKeyValueObservingOptionOld |
NSKeyValueObservingOptionNew
context:NULL];

此解决方案有效,但我有两个问题需要解决:

  1. 我需要以某种方式模拟 .NET 属性,以便我可以为属性选择正确的编辑器。文本框并不适合所有情况。
  2. 每行都有不同的单元格编辑器,例如 bool 值复选框、字符串文本框等。

我还是 Cocoa 的初学者,如果我要求一些非常基本的东西,我很抱歉。

更新:我需要这样的东西(图片来自 Xcode->获取信息->构建):

PropertyGridCocoa http://www.adorior.cz/Images/PropertyGridCocoa.png

最佳答案

Cocoa 的框架中没有内置这样的 View 。如果没有其他人创建一个并将其作为开源发布,您将需要从头开始创建一个。

手工制作与底层模型相匹配的 UI 可能更容易。

关于c# - cocoa 的属性网格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2079044/

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