• 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
Array Controller "Select Inserted Objects" just stopped working
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Array Controller "Select Inserted Objects" just stopped working


  • Subject: Array Controller "Select Inserted Objects" just stopped working
  • From: Jerry Krinock <email@hidden>
  • Date: Sat, 5 Dec 2009 22:43:01 -0800

I tested a new build of an app today and found that, all of a sudden, clicking the "+" button for a table view adds a new object but no longer selects it.  It's a conventional design with the "+" button targetting the -add: method of an array controller instantiated in the nib, and the table bound to the array controller.  I inspected the array controller's Attributes, but "Select Inserted Objects" definitely has a big fat checkmark in the box.

Our buddy 'PCWiz' reported the same issue -- "now I have another problem (once again, out of the blue)" -- a few months ago, but the thread got slapped because Snow Leopard was under NDA at the time:

http://lists.apple.com/archives/Cocoa-dev/2009/Aug/msg00962.html

Well, I had an NSArrayController subclass handy, so I tried overriding -selectsInsertedObjects to return YES but that did not help.  I fixed it with this kludge:

- (void)add:(id)sender {
    [super add:sender] ;
    // Does not work without delay.
    [self performSelector:@selector(selectLastObject)
               withObject:nil
               afterDelay:0.0] ;
}

- (void)selectLastObject {
    if ([self selectsInsertedObjects]) {
        NSArray* arrangedObjects = [self arrangedObjects] ;
        NSInteger nObjects = [arrangedObjects count] ;
        if (nObjects > 0) {
            [self setSelectionIndex:nObjects-1] ;
        }
    }
}

Has anyone else had trouble recently with NSArrayController's "Select Inserted Objects"?

Sincerely,

Jerry Krinock


_______________________________________________

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

  • Prev by Date: Re: Question about aliasing (analog clock hands)
  • Next by Date: Re: Best way to hook into the run loop?
  • Previous by thread: Re: passing nothing to method with CGPoint argument
  • Next by thread: [MEET] CocoaHeads-NYC this Thursday (*note location*)
  • Index(es):
    • Date
    • Thread