Re: objc_msgSend_ptr

2008-09-26 Thread Tilo Villwock
That did the trick, thanks a lot. Seems like I need to review a few concepts here. -Ursprüngliche Nachricht- Von: chaitanya pandit [mailto:[EMAIL PROTECTED] Gesendet: Freitag, 26. September 2008 12:25 An: Tilo Villwock Cc: cocoa-dev@lists.apple.com Betreff: Re: objc_msgSend_ptr if your

Re: objc_msgSend_ptr

2008-09-26 Thread chaitanya pandit
if your sizeOfFile: method is returning an integer, then you should convert it to NSNumber like: object = [NSNumber numberWithInt:[[files objectAtIndex:rowIndex] sizeOfFile]]; hth, Chaitanya On 25-Sep-08, at 5:22 PM, Tilo Villwock wrote: i have the following piece of code in my controlle