Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Monotouch: convert an Object to NSObject

How is it possible to convert an Object instance to NSObject one?

I've created a NSDictionary from

NSDictionary.FromObjectAndKey();

This method wants an NSObject but I have custom object to pass in:

int key = 2341;
var val = new MyClass();
NSDictionary.FromObjectAndKey(val, key); // obviously it does not work!!

How to fix this? Thank you in advance.

like image 810
Lorenzo B Avatar asked Apr 14 '11 13:04

Lorenzo B


3 Answers

You can not convert an arbitrary object into an NSObject. The NSObject.FromObject will try to wrap common data types like numbers, strings, rectangles, points, transforms, and a handful of other .NET types into their equivalent NSObject types.

In your particular example, "MyClass" would have to derive from an NSObject before you could use it in the NSDictionary.

like image 67
miguel.de.icaza Avatar answered Nov 17 '22 01:11

miguel.de.icaza


The easiest solution I could find was to wrap the .Net object in an NSObject, then unwrap as needed.

public class NSObjectWrapper : NSObject
{
    public object Context;

    public NSObjectWrapper (object obj) : base()
    {
        this.Context = obj;
    }

    public static NSObjectWrapper Wrap(object obj)
    {
        return new NSObjectWrapper(obj);
    }
}

Example use:

// wrap
var myNSObj = NSObjectWrapper.Wrap(new MyClass());
// unwrap
var myObj = myNSObj.Context as MyClass;
like image 34
Former Gaucho Avatar answered Nov 17 '22 01:11

Former Gaucho


This is the way:

NSDictionary.FromObjectAndKey(NSObject.FromObject(val), NSObject.FromObject(key));
like image 21
Dimitris Tavlikos Avatar answered Nov 17 '22 00:11

Dimitris Tavlikos