Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7566827
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T14:30:41+00:00 2026-05-30T14:30:41+00:00

I have modal window. In its controller I do this: [[NSFontManager sharedFontManager] orderFrontFontPanel:self]; and

  • 0

I have modal window. In its controller I do this:

[[NSFontManager sharedFontManager] orderFrontFontPanel:self];

and it works fine. Font manager calls changeFont: method in my controller.

But if I write this code instead:

[[NSFontManager sharedFontManager] setTarget:self];
[[NSFontManager sharedFontManager] setAction:@selector(qwe:)];
[[NSFontManager sharedFontManager] orderFrontFontPanel:self];

it doesn’t work. When I select font in font panel it does not invoked qwe: method.

The reason is that window is modal (when I show the window without modal session all works fine). The question is why target-action variant does not work for modal window?

Thanks for help.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-30T14:30:42+00:00Added an answer on May 30, 2026 at 2:30 pm

    I see this, too. Setting the target and the action does not result in the action method being called.

    What did work is this: (1) set the delegate, not the target, (2) name the method changeFont, and (3) do not set the action:

    @property (retain) NSFont *font;
    
    ...
    
    - (void)changeFont:(id)sender
    {
        self.font = [sender convertFont:self.font];
    }
    
    - (IBAction)actionSetFont:(id)sender
    {
        NSFontManager *fontManager = [NSFontManager sharedFontManager];
        [fontManager setDelegate:self];
        NSFontPanel *fp = [NSFontPanel sharedFontPanel];
        [fontManager setSelectedFont:self.font isMultiple:NO];
        [fp makeKeyAndOrderFront:self];
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I launch a modal view controller and in its init I have the following
I have a page where I open a modal window. It is really just
on my web site I want to have login/registration form in modal window done
I have 4 buttons on a page. Each button opens a modal window and
We have implemented a popup window as a modal dialog using the IE method:
I have a JInternalFrame window that needs to popup a modal dialog box when
Modern browsers have multi-tab interface, but JavaScript function window.showModalDialog() creates a modal dialog that
I have a model window that contains expander control. This expander control when expanded
I have a jQModal window on my site that has its content populated by
I have a tab bar application and when I display a modal view controller,

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.