Re: [partially solved]: com.webobjects.foundation.NSMutableArray.addObject("anString");
Re: [partially solved]: com.webobjects.foundation.NSMutableArray.addObject("anString");
- Subject: Re: [partially solved]: com.webobjects.foundation.NSMutableArray.addObject("anString");
- From: Art Isbell <email@hidden>
- Date: Wed, 3 Sep 2003 12:20:05 -1000
On Tuesday, September 2, 2003, at 11:14 PM, Strausz Riccardo wrote:
problem:
it seem that the probles is with the bridge; since I am calling the
keys.addObject("aKey"); from ObjC (with [keys addObject:@"aKey"];), the
bridge is serching for a method with signature
com.webobjects.foundation.NSMutableArray.addObject(String aString);
which does not exists.
I am trying to cast my strings to id (Object) to fool the bridge, but
have not yes a clean solution...
id != Object and id != NSObject. Have you tried this (just a guess)?
[keys addObject:(NSObject)@"aKey"];
Aloha,
Art
_______________________________________________
webobjects-dev mailing list | email@hidden
Help/Unsubscribe/Archives: http://www.lists.apple.com/mailman/listinfo/webobjects-dev
Do not post admin requests to the list. They will be ignored.