• Open Menu Close Menu
  • Apple
  • Shopping Bag
  • Apple
  • Mac
  • iPad
  • iPhone
  • Watch
  • TV
  • Music
  • Support
  • Search apple.com
  • Shopping Bag

Lists

Open Menu Close Menu
  • Terms and Conditions
  • Lists hosted on this site
  • Email the Postmaster
  • Tips for posting to public mailing lists
Changing FirstResponder with Inputmethod
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Changing FirstResponder with Inputmethod


  • Subject: Changing FirstResponder with Inputmethod
  • From: imai asato <email@hidden>
  • Date: Wed, 13 Jan 2010 10:39:04 +0900

Hello,

I have NSTextField and some views(NSTableView etc).
I want interrupt keydown event when NSTextField is not first responder to input the key to NSTextField.
I wrote keyDown: method of my NSWindowController class like below.

- (void)keyDown:(NSEvent *)event
{
	// IBOutlet NSTextField*  myInput;

	if ([[self window] firstResponder] != myInput) {
		[[self window] makeFirstResponder:myInput];	// to change keyView
		[[self window] sendEvent:event];				// to process keydown event
	}
}

This works well when keyboard layout is US.
But when Japanese inputmethod is on, EXC_BAD_ACCESS on CopyRgn of GetPortVisionRegion of CTextensionDisplay::Focus… is occur.

Does anyone have any idea?


--
imai asato




_______________________________________________

Cocoa-dev mailing list (email@hidden)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:

This email sent to email@hidden

  • Follow-Ups:
    • Re: Changing FirstResponder with Inputmethod
      • From: imai asato <email@hidden>
  • Prev by Date: Re: iCal-style NSTextFields
  • Next by Date: Trying to create an alias file by using the new NSURL methods available with Mac OS X 10.6 !
  • Previous by thread: Cocoaheads Lake Forest (92630) meeting TODAY Wed 1/13/2010 at 7 pm on topics including Core Animation
  • Next by thread: Re: Changing FirstResponder with Inputmethod
  • Index(es):
    • Date
    • Thread