使用对象容器中的令牌填充 NSTokenField

发布于 2024-07-19 21:25:10 字数 376 浏览 9 评论 0原文

我在窗口中有一个 NSTableView 和一个 NSTokenField 。 我已经实现了以下委托方法:

tokenField:completionsForSubstring:indexOfToken:indexOfSelectedItem:
tokenField:representedObjectForEditingString:
tokenField:displayStringForRepresentedObject:

我想这样做,以便当在其中选择一行时, NSTokenField 会填充包含在行对象的 NSMutableSet 中的标签。 如果我有一个包含它们所代表的对象的容器(因此需要将其制成令牌),如何用令牌填充 NSTokenField ?

I have an NSTableView and an NSTokenField in a window. I have implemented the following delegate methods:

tokenField:completionsForSubstring:indexOfToken:indexOfSelectedItem:
tokenField:representedObjectForEditingString:
tokenField:displayStringForRepresentedObject:

I want to make it so that when a row is selected in it, the NSTokenField gets populated with the tags that are contained in an NSMutableSet of the row object. How do I populate an NSTokenField with tokens if I have a container of the objects that they represent (and therefore the strings that need to be made into tokens)?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

二货你真萌 2024-07-26 21:25:10

我想到了。 在下面的代码中,ms 是一个包含我的对象的 NSMutableSet。

        //set the token field
        NSMutableArray *ma = [[NSMutableArray alloc] init];
        for (MyClass *anObject in ms){
            [ma addObject:anObject];
        }

        //sort the array
        NSSortDescriptor *sorter = [[NSSortDescriptor alloc] initWithKey: @"title" ascending: YES];
        NSArray *sortDescriptorArray = [[NSArray alloc] initWithObjects:sorter, nil];

        [ma sortUsingDescriptors:sortDescriptorArray];
        [tokenField setObjectValue:ma];

关键是最后一行:[tokenField setObjectValue:ma];

I figured it out. In the code below ms is an NSMutableSet that contains my objects.

        //set the token field
        NSMutableArray *ma = [[NSMutableArray alloc] init];
        for (MyClass *anObject in ms){
            [ma addObject:anObject];
        }

        //sort the array
        NSSortDescriptor *sorter = [[NSSortDescriptor alloc] initWithKey: @"title" ascending: YES];
        NSArray *sortDescriptorArray = [[NSArray alloc] initWithObjects:sorter, nil];

        [ma sortUsingDescriptors:sortDescriptorArray];
        [tokenField setObjectValue:ma];

The key is the last line: [tokenField setObjectValue:ma];

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文