MonobjcMonobjc Documented Class Library
NSDictionary Constructor
NamespacesMonobjc.FoundationNSDictionaryNSDictionary()()()()
Members
IconMemberDescription
NSDictionary(NSString)

Initializes a newly allocated dictionary using the keys and values found in a file at a given path.

Original signature is '- (id)initWithContentsOfFile:(NSString *)path'

Available in Mac OS X v10.0 and later.


NSDictionary(NSURL)

Initializes a newly allocated dictionary using the keys and values found at a given URL.

Original signature is '- (id)initWithContentsOfURL:(NSURL *)aURL'

Available in Mac OS X v10.0 and later.


NSDictionary(NSDictionary)

Initializes a newly allocated dictionary by placing in it the keys and values contained in another given dictionary.

Original signature is '- (id)initWithDictionary:(NSDictionary *)otherDictionary'

Available in Mac OS X v10.0 and later.


NSDictionary(NSDictionary, Boolean)

Initializes a newly allocated dictionary using the objects contained in another given dictionary.

Original signature is '- (id)initWithDictionary:(NSDictionary *)otherDictionary copyItems:(BOOL)flag'

Available in Mac OS X v10.0 and later.


NSDictionary(NSArray, NSArray)

Initializes a newly allocated dictionary with entries constructed from the contents of the objects and keys arrays.

Original signature is '- (id)initWithObjects:(NSArray *)objects forKeys:(NSArray *)keys'

Available in Mac OS X v10.0 and later.


NSDictionary(IntPtr, IntPtr, NSUInteger)

Initializes a newly allocated dictionary with count entries.

Original signature is '- (id)initWithObjects:(id *)objects forKeys:(id *)keys count:(NSUInteger)count'

Available in Mac OS X v10.0 and later.


NSDictionary(NSCoder)

Returns an object initialized from data in a given unarchiver. (required)

Original signature is '- (id)initWithCoder:(NSCoder *)decoder'

Available in Mac OS X v10.0 and later.


NSDictionary()()()()
Initializes a new instance of the NSDictionary class.

NSDictionary(IntPtr)
Initializes a new instance of the NSDictionary class.

NSDictionary(String, Object, array<Object>[]()[][])
Initializes a new instance of the NSDictionary class.

Assembly: Monobjc.Foundation (Module: Monobjc.Foundation)