Enumerating array which contains a dictionary produces unexpected output - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T20:59:00Z http://stackoverflow.com/feeds/question/1071914 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1071914/enumerating-array-which-contains-a-dictionary-produces-unexpected-output 1 Enumerating array which contains a dictionary produces unexpected output Richard 2009-07-02T00:04:47Z 2009-07-02T04:37:28Z <p>My question is why does it output the last 4 lines in the log(see below)...those objects are part of the dictionary printed earlier in the log &amp; should not be located at the end of the array? I am missing something fundamental here... thx</p> <pre><code>NSDictionary *dictionary = [NSDictionary dictionaryWithObjectsAndKeys: [NSURL URLWithString: @"www.stanford.edu"], @"Stanford University", [NSURL URLWithString: @"www.apple.com"], @"Apple shop", [NSURL URLWithString: @"cs193p.stanford.edu"], @"CS193P course", [NSURL URLWithString: @"itunes.stanford.edu"], @"Stanford on iTunes U", [NSURL URLWithString: @"stanfordshop.com"], @"Stanford Mall", nil]; NSMutableArray *myArray = [NSMutableArray arrayWithObjects: [NSString init], [NSURL URLWithString: @"www.stanford.edu"], [NSProcessInfo processInfo], dictionary, [@"Mutable string example" mutableCopy], [@"another mutable string" mutableCopy]]; NSEnumerator *enumerator = [myArray objectEnumerator]; id object; while ((object = [enumerator nextObject])) { NSLog([object description]); } </code></pre> <p>2009-07-02 09:35:12.756 WhatATool[6407:10b] NSString<br /> 2009-07-02 09:35:12.756 WhatATool[6407:10b] www.stanford.edu<br /> 2009-07-02 09:35:12.757 WhatATool[6407:10b] <code>&lt;NSProcessInfo: 0x107e20</code>><br /> 2009-07-02 09:35:12.758 WhatATool[6407:10b] {<br /> "Apple shop" = www.apple.com;<br /> "CS193P course" = cs193p.stanford.edu;<br /> "Stanford Mall" = stanfordshop.com;<br /> "Stanford University" = www.stanford.edu;<br /> "Stanford on iTunes U" = itunes.stanford.edu;<br /> }<br /> 2009-07-02 09:35:12.758 WhatATool[6407:10b] Mutable string example<br /> 2009-07-02 09:35:12.759 WhatATool[6407:10b] another mutable string<br /> 2009-07-02 09:35:12.760 WhatATool[6407:10b] itunes.stanford.edu<br /> 2009-07-02 09:35:12.760 WhatATool[6407:10b] Stanford on iTunes U<br /> 2009-07-02 09:35:12.761 WhatATool[6407:10b] stanfordshop.com<br /> 2009-07-02 09:35:12.762 WhatATool[6407:10b] Stanford Mall </p> http://stackoverflow.com/questions/1071914/enumerating-array-which-contains-a-dictionary-produces-unexpected-output/1071986#1071986 6 Answer by Jeff Hellman for Enumerating array which contains a dictionary produces unexpected output Jeff Hellman 2009-07-02T00:35:02Z 2009-07-02T00:35:02Z <p>I think you're missing the nil necessary as the last argument when you create your NSMutableArray using the convenience method. Does</p> <pre><code>NSMutableArray *myArray = [NSMutableArray arrayWithObjects: [NSString init], [NSURL URLWithString: @"www.stanford.edu"], [NSProcessInfo processInfo], dictionary, [@"Mutable string example" mutableCopy], [@"another mutable string" mutableCopy], nil]; </code></pre> <p>work?</p> http://stackoverflow.com/questions/1071914/enumerating-array-which-contains-a-dictionary-produces-unexpected-output/1072197#1072197 2 Answer by Peter N Lewis for Enumerating array which contains a dictionary produces unexpected output Peter N Lewis 2009-07-02T02:47:06Z 2009-07-02T02:47:06Z <p>Turn on warnings (other warning flags "-Wall") and you'll get:</p> <p>warning: missing sentinel in function call</p> <p>on the end of your NSMutableArray arrayWithObjects method to tell you about the missing nil.</p>