سؤال

I'm trying to call an ibaction method when an NSButton is clicked down, but I can't figure out how to get do to that instead of having it called when clicked up.

هل كانت مفيدة؟

المحلول

[yourButton sendActionOn:NSLeftMouseDownMask];

نصائح أخرى

[btn setAction:@selector(Method:)];

[btn setTarget:objectThatRespondsToMethod];
مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى StackOverflow
scroll top