• 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: Disabling items in NSTabView
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Disabling items in NSTabView


  • Subject: Re: Disabling items in NSTabView
  • From: Erik Buck <email@hidden>
  • Date: Tue, 29 May 2007 13:51:38 -0700 (PDT)

Offthe top of my head written in Mail:

  @interface NSView (MYDisablingProtocol)

  - (void)recursivelyDisableSubviews;

  @end

  @implementation NSView (MYDisablingProtocol)

  - (void)recursivelyDisableSubviews
  {
     if([self respondesToSelector(@selector(setEnabled:)])
     {
        [self setEnabled:NO];
     }
     else
     {
        [[self subviews] makeObjectsPerformSelector:@selector(recursivelyDisableSubviews)];
     }
  }

  @end


  To use:

  [myNSTabViewItem recursivelyDisableSubviews];
_______________________________________________

Cocoa-dev mailing list (email@hidden)

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: Disabling items in NSTabView
      • From: "Daniel T. Staal" <email@hidden>
  • Prev by Date: [ANN] Remote Activity job monitoring app now open source
  • Next by Date: Re: Weird problem involving memory management and global variable
  • Previous by thread: Re: Disabling items in NSTabView
  • Next by thread: Re: Disabling items in NSTabView
  • Index(es):
    • Date
    • Thread