在尝试修复一些突出的 macOS 10.13 错误时,我遇到了现有应用程序的问题。我有一个小的 NSCollectionView,它看起来类似于日历应用程序中的小月历。它显示天数并在点击时垂直滚动。但是,在 macOS 10.13 上,集合视图仅显示几行并且不滚动。我已经验证数据源被正确调用并且它确实尝试加载其他项目 - 但不会滚动到它们。
我创建了一个小型示例应用程序,它也演示了该问题。这是一个基本的 macOS 应用程序,它通过主故事板添加 NSCollectionView,并具有从 nib 加载的通用 NSCollectionViewItem 类。主视图控制器中的全部代码是:
- (void)viewDidLoad {
[super viewDidLoad];
NSNib *nib = [[NSNib alloc] initWithNibNamed:@"FooCollectionViewItem" bundle:nil];
[self.collectionView registerNib:nib forItemWithIdentifier:@"foo"];
}
- (void)viewDidAppear {
[super viewDidAppear];
[self.collectionView reloadData];
}
- (void)setRepresentedObject:(id)representedObject {
[super setRepresentedObject:representedObject];
}
- (NSInteger)numberOfSectionsInCollectionView:(NSCollectionView *)collectionView {
return 1;
}
- (NSInteger)collectionView:(NSCollectionView *)collectionView numberOfItemsInSection:(NSInteger)section {
return 2000;
}
- (NSCollectionViewItem *)collectionView:(NSCollectionView *)collectionView itemForRepresentedObjectAtIndexPath:(NSIndexPath *)indexPath {
FooCollectionViewItem *item = [collectionView makeItemWithIdentifier:@"foo" forIndexPath:indexPath];
item.fooField.stringValue = [NSString stringWithFormat:@"%ld", indexPath.item];
return item;
}
生成的应用程序如下所示:
不幸的是,这就是集合视图的全部内容。滚动不会滚动任何其他项目。我已将示例应用程序上传到https://www.dropbox.com/sh/wp2y7g0suemzcs1/AABVKfTZq54J7riy6BR7Mhxha?dl=0以防万一。任何想法为什么这对我来说是 10.13?