I am having following code for getting image from the web:
NSURL *ImageURL = [NSURL URLWithString:@"http://url/image.jpg"];
NSData *data = [[NSData alloc] initWithContentsOfURL: ImageURL];
I am getting following exception:
*** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '*** -[__NSPlaceholderDictionary initWithCapacity:]: capacity (4294967295) is ridiculous'
If i remove the second line of nsdata then exception is not occurring .Please give me the solution.