How can I bind this using MonoTouch??
#if __IPHONE_OS_VERSION_MAX_ALLOWED < 60000
@interface NSObject (SubscriptingSupport)
- (id)objectAtIndexedSubscript:(NSUInteger)idx;
- (void)setObject:(id)obj atIndexedSubscript:(NSUInteger)idx;
- (void)setObject:(id)obj forKeyedSubscript:(id <NSCopying>)key;
- (id)objectForKeyedSubscript:(id)key;
@end
#endif
Tried this following Documentation but had no luck
[BaseType (typeof (NSObject)), Bind ("NSObject")]
public interface NSObject2
{
[Bind("objectAtIndexedSubscript:")]
NSObject ObjectAtIndexedSubscript (uint idx);
[Bind("setObject:atIndexedSubscript:")]
void SetObjectAtIndexedSubscript (NSObject obj, uint idx);
[Bind("setObject:forKeyedSubscript:")]
void SetObjectForKeyedSubscript (NSObject obj, NSObject key);
[Bind("objectForKeyedSubscript:")]
NSObject ObjectForKeyedSubscript (NSObject key);
}
it gives tons of errors like
Error CS0115: `DocParser.Dispose(bool)' is marked as an override but no suitable method found to override (CS0115)
Thanks in advance
Alex.