0

单击按钮后我需要开始NSTextFieldCell编辑(如果用户双击单元格,则行为相同)

我找到了一个performClick模拟用户通过光标单击的功能。我的想法是调用双击的模拟。此功能是否存在?或者您可以提出其他解决方案?

谢谢

4

1 回答 1

0
- (IBAction)editclicked:(id)sender{
    NSInteger col = [dreamTable columnWithIdentifier:@"data"];
    NSInteger row = [dreamTable selectedRow];
    [dreamTable editColumn:col row:row withEvent:NULL select:YES];
}

这是一个解决方案

于 2012-02-03T12:21:35.710 回答