Hello,
You don't happen to have the TextField in a matrix of cells do you? I
ran into a problem with the Cell.Value getter method in Cell.cs - it
is defined incorrectly in my current version of cocoa-sharp (0.9.4).
It should be:
get {
return
Object.FromIntPtr((IntPtr)ObjCMessaging.objc_msgSend(NativeObject,
"stringValue", typeof(System.IntPtr))).ToString();
}
Note: the changes are 1) no colon after stringValue and change void to
IntPtr in the typeOf.
PS the Value getter in Control.cs which TextField inherits from is
correct -- but maybe worth a check in your copy of the source.
Richard