我遇到了 NSComboBox 组件的一个奇怪问题。它的“selectIndexAtPath”行为根据数据源而变化:
- “固定”列表会导致正确选择该项目,但是当我通过单击右侧的箭头按钮打开列表时,它会一直被选中;
- 使用数据源会导致正确选择该项目,但是当我通过单击右侧的箭头按钮打开列表时,该项目仍被选中 1/10 秒,但随后被取消选择。
一些代码来说明:
@interface AppDelegate()
@property (weak) IBOutlet NSComboBox *combobox;
@property (strong, nonatomic) NSArray *temp;
@end
@implementation AppDelegate
- (void)applicationDidFinishLaunching:(NSNotification *)aNotification
{
self.temp = @[@"Item", @"Item2", @"Item3", @"Item4", @"Item5"];
/* THIS DOES WORK */
self.combobox.usesDataSource = NO;
[self.combobox addItemsWithObjectValues:self.temp];
/* HOWEVER, THIS DOES NOT WORK */
self.combobox.usesDataSource = YES;
self.combobox.dataSource = self;
[self.combobox selectItemAtIndex:2];
}
#pragma mark - NSComboBoxDataSource methods
- (NSInteger)numberOfItemsInComboBox:(NSComboBox *)aComboBox
{
return self.temp.count;
}
- (id)comboBox:(NSComboBox *)aComboBox objectValueForItemAtIndex:(NSInteger)index
{
return self.temp[index];
}
有谁知道这是什么原因造成的?现在尝试了几天...谢谢!