开发者

Action is called twice (mouse up/down) when Target is clicked in Cocoa/objective-c

开发者 https://www.devze.com 2023-02-17 06:05 出处:网络
I have a NSDatePicker (target), and datePickerAction (action) - (IBAction)datePickerAction:(id)sender {

I have a NSDatePicker (target), and datePickerAction (action)

- (IBAction)datePickerAction:(id)sender
{

    if( [[[NSApplication sharedApplication] currentEvent] modifierFlags] & 
       NSShi开发者_如何学GoftKeyMask )
        NSLog(@"shift pressed %@", [datePicker dateValue]);

    else
        NSLog(@"hello %@", [datePicker dateValue]);

}

It works well as when I click a date in NSDatePicker object, the method(action) is called, the problem is that the method is called twice - mouse down/up.

Can I make the method called only once (up or down)?

EDIT

I only have the method to be selected.

Action is called twice (mouse up/down) when Target is clicked in Cocoa/objective-c

And this is connection inspector.

Action is called twice (mouse up/down) when Target is clicked in Cocoa/objective-c


Unfortunately, I think you cannot set NSDatePicker (or NSDatePickerCell, to be specific) up this way in Interface Builder, but instead have to do it programmatically.

Here's a workaround that performs fine for me:

- (void)awakeFromNib
{
    // Assuming @property (assign) IBOutlet NSDatePickerCell *pickerCell;
    [self.pickerCell sendActionOn:NSLeftMouseDown]; // or NSLeftMouseUp or what have you...
}

Note that you cannot use NSLeftMouseDownMask here! (Well, of cause you can...but it won't help.)


You typically want to add a target and action for a particular event. When you are making a connection using IB, look at the Connections Inspector. There is a list of control events to which you can set a target-action pair. Choose an event and drag to an action method.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号