Re: Challenge Chapter 8: sorting with key-path

2008-07-23 Thread Alex Heinz
The only problem I can see is that you've spelled "[EMAIL PROTECTED]" incorrectly. Make sure it's spelled right and that should work. (Another) Alex On Jul 22, 2008, at 11:23 PM, Alexandre Badez wrote: Hy, I'm actually reading the "cocoa programming for Mac OS X (third edition)". In cha

Re: Challenge Chapter 8: sorting with key-path

2008-07-23 Thread Alexandre Badez
On Wed, Jul 23, 2008 at 09:19, Martijn <[EMAIL PROTECTED]> wrote: > My guess is you should try personName.length LOL :D Thanks ^^ I'm just a fool, that should learn English before coding... -- Alex ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.co

Re: Challenge Chapter 8: sorting with key-path

2008-07-23 Thread Martijn
My guess is you should try personName.leng*th* ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) 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/Up

Re: Challenge Chapter 8: sorting with key-path

2008-07-23 Thread Alexandre Badez
I understand how to call a method and I've make my app work as I wanted with method and code etc. The problem, is that the challenge's main objective is to do it only in interface builder, and this is where I'm stuck. I should retrieve the lenght of personName (witch is as you guess a NSString) an

Challenge Chapter 8: sorting with key-path

2008-07-22 Thread Alexandre Badez
Hy, I'm actually reading the "cocoa programming for Mac OS X (third edition)". In chapter 8 we build an application witch display an array of object with 2 properties (personName, expectedRaise). We add sorting to the NSTableView using key: personName and selector: "caseInsensitiveCompare:". Now