gpt4 book ai didi

objective-c - 带绑定(bind)的嵌套 NSCollectionView

转载 作者:搜寻专家 更新时间:2023-10-30 20:25:50 25 4
gpt4 key购买 nike

我正在尝试将 NSCollection View 相互嵌套。我尝试使用 Apple Quick Start Guide 创建一个新项目作为基地。

我首先将一个 Collection View 插入我的 Nib ,然后将另一个 Collection View 拖到自动添加的 View 上。添加的子 Collection View 获得一些标签。这是我的 Nib 的图片:

completed nib

然后我回去构建我的模型:我的二级模型 .h 是

@interface BPG_PersonModel : NSObject

@property(retain, readwrite) NSString * name;
@property(retain, readwrite) NSString * occupation;

@end

我的一级模型 .h 是:

@interface BPG_MultiPersonModel : NSObject

@property(retain, readwrite) NSString * groupName;
@property(retain,readwrite) NSMutableArray *personModelArray;

-(NSMutableArray*)setupMultiPersonArray;

@end

然后我写出在第一级 Controller 中制作一些假人的实现(建立第二级模型):(编辑)删除 awakefromnibcode

/*- (void)awakeFromNib {

BPG_PersonModel * pm1 = [[BPG_PersonModel alloc] init];
pm1.name = @"John Appleseed";
pm1.occupation = @"Doctor";

//similar code here for pm2,pm3

NSMutableArray * tempArray = [NSMutableArray arrayWithObjects:pm1, pm2, pm3, nil];
[self setPersonModelArray:tempArray];

} */


-(NSMutableArray*)setupMultiPersonArray{
BPG_PersonModel * pm1 = [[BPG_PersonModel alloc] init];
pm1.name = @"John Appleseed";
pm1.occupation = @"Doctor";

//similar code here for pm2,pm3


NSMutableArray * tempArray = [NSMutableArray arrayWithObjects:pm1, pm2, pm3, nil];
return tempArray;
}

最后我在我的 appdelegate 中做了一个类似的实现来构建多人数组

- (void)awakeFromNib {

self.multiPersonArray = [[NSMutableArray alloc] initWithCapacity:1];

BPG_MultiPersonModel * mpm1 = [[BPG_MultiPersonModel alloc] init];
mpm1.groupName = @"1st list";
mpm1.personModelArray = [mpm1 setupMultiPersonArray];

(我没有在此处包含所有代码,请告诉我它是否有用。)

然后我按照快速入门指南的建议绑定(bind)所有内容。我添加了两个 nsarraycontrollers 并添加了属性以将每个级别的数组 Controller 绑定(bind)到 Controller 对象

然后我使用绑定(bind)到 arrangedobjects 的内容将 collectionview 绑定(bind)到数组 Controller

最后我绑定(bind) subview :

在我的模型中使用 grouptitle 标签表示 object.grouptitle 对象

然后将我的名字和职业标注到各自代表的对象上

我通过包含必要的访问器方法使所有对象都符合 kvo

然后我尝试运行这个应用程序,我得到的第一个错误是:NSCollectionView item prototype must not be nil.

(编辑)从第一级模型中删除 awakefromnib 后我得到了这个

enter image description here

有没有人成功嵌套 nscollection View ?我在这里做错了什么?这是压缩后供其他人测试的完整项目:

http://db.tt/WPMFuKsk

感谢帮助

编辑:

我终于联系了 Apple 技术支持,看他们是否可以帮助我。他们的回应是:

Cocoa bindings will only go so far, until you need some extra code to make it all work.

When using arrays within arrays to populate your collection view the bindings will not be transferred correctly to each replicated view without subclassing NSCollectionView and overriding newItemForRepresentedObject and instantiating the same xib yourself, instead of using the view replication implementation provided by NSCollectionView.

So in using the newItemForRepresentedObject approach, you need to factor our your NSCollectionViewItems into separate xibs so that you can pass down the subarray of people from the group collection view to your inner collection view.

So for your grouped collection view your override looks like this:

- (NSCollectionViewItem *)newItemForRepresentedObject:(id)object 
{
BPG_MultiPersonModel *model = object;
MyItemViewController *item = [[MyItemViewController alloc] initWithNibName:@"GroupPrototype" bundle:nil];
item.representedObject = object;
item.personModelArray = [[NSArrayController alloc] initWithContent:model.personModelArray];
return item;
}

And for your inner collection subclass your override looks like this:

- (NSCollectionViewItem *)newItemForRepresentedObject:(id)object 
{
PersonViewController *item = [[PersonViewController alloc] initWithNibName:@"PersonPrototype" bundle:nil];
item.representedObject = object;
return item;
}

这是他们发回给我的示例项目 -

http://db.tt/WPMFuKsk

我仍然无法将它用于我自己的项目。他们发回的项目能否进一步简化?

最佳答案

请仔细看看这个answer

简答:将每个 NSView 提取到它自己的 .xib 应该可以解决这个问题。

扩展:复制原型(prototype)时,未连接在 NSCollectionViewItem 子类中指定的 IBOutlet。那么我们如何将 NSCollectionViewItem 子类中指定的 IBOutlet 连接到 View 中的控件?

Interface Builder 将自定义 NSView 放在与 NSCollectionView 和 NSCollectionViewItem 相同的 nib 中。这是愚蠢的。解决方案是将 NSView 移动到它自己的 nib 并让 Controller 以编程方式加载 View :

  • 将 NSView 移到它自己的 nib 中(从而断开 NSCollectionViewItem 和 NSView 之间的连接)。
  • 在 I.B. 中,将文件所有者的类标识更改为 NSCollectionViewItem 子类。
  • 将控件连接到文件所有者 socket 。
  • 最后获取 NSCollectionViewItem 子类来加载 nib:

有用的链接:

  1. how to create nscollectionview programatically from scratch
  2. nscollectionview tips
  3. attempt to nest an nscollectionview fails
  4. nscollectionview redux

关于objective-c - 带绑定(bind)的嵌套 NSCollectionView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12755460/

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