我已经在可可应用程序中设置了一个NSCollectionView
。我已经对集合视图进行了子类化,以便在它选择/取消选择其中一个视图时NSCollectionViewItem
向我发送自定义。NSNotification
发布此通知时,我注册以在我的控制器对象中接收通知。在这个方法中,我告诉刚刚被选中的视图它被选中并告诉它重绘,这使得它自己着色为灰色。
子类NSCollectionViewItem
:
-(void)setSelected:(BOOL)flag {
[super setSelected:flag];
[[NSNotificationCenter defaultCenter] postNotificationName:@"ASCollectionViewItemSetSelected"
object:nil
userInfo:[NSDictionary dictionaryWithObjectsAndKeys:(ASListView *)self.view, @"view",
[NSNumber numberWithBool:flag], @"flag", nil]];}
控制器类(在-(void)awakeFromNib
方法中):
//Register for selection changed notification
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(selectionChanged:)
name:@"ASCollectionViewItemSetSelected"
object:nil];
和-(void)selectionChanged:(NSNotification *)notification
方法:
- (void)selectionChanged:(NSNotification *)notification {
// * * Must get the selected item and set its properties accordingly
//Get the flag
NSNumber *flagNumber = [notification.userInfo objectForKey:@"flag"];
BOOL flag = flagNumber.boolValue;
//Get the view
ASListView *listView = [notification.userInfo objectForKey:@"view"];
//Set the view's selected property
[listView setIsSelected:flag];
[listView setNeedsDisplay:YES];
//Log for testing
NSLog(@"SelectionChanged to: %d on view: %@", flag, listView);}
包含此代码的应用程序要求在任何时候集合视图中都没有空选择。这就是我遇到问题的地方。我尝试检查视图的选择何时更改,如果没有选择则重新选择它,并使用NSCollectionView
's手动选择视图
-(void)setSelectionIndexes:(NSIndexSet *)indexes
但是总有一种情况会导致集合视图中出现空选择。
所以我想知道是否有一种更简单的方法可以防止出现空选择NSCollectionView
?我在界面生成器中看不到复选框。
提前致谢!
本
更新
我最终只是继承了我的NSCollectionView
,并覆盖了该- (void)mouseDown:(NSEvent *)theEvent
方法。[super mouseDown:theEvent];
如果单击位于其中一个子视图中,我才发送该方法。代码:
- (void)mouseDown:(NSEvent *)theEvent {
NSPoint clickPoint = [self convertPoint:theEvent.locationInWindow fromView:nil];
int i = 0;
for (NSView *view in self.subviews) {
if (NSPointInRect(clickPoint, view.frame)) {
//Click is in rect
i = 1;
}
}
//The click wasnt in any of the rects
if (i != 0) {
[super mouseDown:theEvent];
}}