I could make the sample project work without specifying [self window] as first responder. What I did was:
in (void)changeTextFont:(id)sender, I replaced the statement:
[[self window] makeFirstResponder:[self window]];
with lines:
[[NSFontManager sharedFontManager] setAction:@selector(changeMyFont:)];
[[NSFontManager sharedFontManager] setTarget:self]; //-- this seems to be not mandatory, but I mention it because your case could be different
I renamed changeFont: to changeMyFont::
- (void)changeMyFont:(id)sender
{
With these changes, the font is correctly updated in the example content view.
I don't know if it will work for you, because in the end you are trying to use this code in a different context, but I hope that it will. I would suggest you to first try and modify the sample project so that you can get confident with my solution and then move it to your project to check whether it also works there.