【发布时间】:2011-04-02 19:06:01
【问题描述】:
我为NSTextField 实现了以下委托方法以添加自动完成支持:
- (NSArray *)control:(NSControl *)control
textView:(NSTextView *)textView
completions:(NSArray *)words
forPartialWordRange:(NSRange)charRange
indexOfSelectedItem:(NSInteger *)index
问题是这个方法永远不会被调用。我可以验证NSTextField 的delegate 设置是否正确,因为其他委托方法可以正常运行。
【问题讨论】:
标签: objective-c cocoa nstextfield nstextview nscontrol