• 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
Re: Check if a Nib is alredy loaded
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Check if a Nib is alredy loaded


  • Subject: Re: Check if a Nib is alredy loaded
  • From: Gueorgui Tcherednitchenko <email@hidden>
  • Date: Wed, 31 Aug 2005 10:22:24 +0200

Have an object connected to an IBOutlet in your controller. Then you can do something like:

- (void) showPreferences
{
    if (!IBEmailTextField_)
    {
        if (![NSBundle loadNibNamed:@"Preferences" owner:self])
        {
            NSLog(@"Failed to load NIB file");
            return;
        }
    }
    [[IBEmailTextField_ window] makeKeyAndOrderFront:self];
}

IBEmailTextField_ being my IBOutlet here.


On 31 août 05, at 10:06, email@hidden wrote:

How can I check if a Nib loaded with "loadNibNamed:" is alredy loaded?

-- Gueorgui _______________________________________________ Do not post admin requests to the list. They will be ignored. Cocoa-dev mailing list (email@hidden) Help/Unsubscribe/Update your Subscription: This email sent to email@hidden
References: 
 >Check if a Nib is alredy loaded (From: email@hidden)

  • Prev by Date: Re: Check if a Nib is alredy loaded
  • Next by Date: Problem with launching other application
  • Previous by thread: Re: Check if a Nib is alredy loaded
  • Next by thread: CoreData: To Many Relationships, what type?
  • Index(es):
    • Date
    • Thread