John
John

Reputation: 611

Three20 crash when using PhotoSource

In my app I send a request to get images from flickr. I have went through my app step-by-step with a breakpoint and found the app crashes at this line in TTURLRequest.m:

} else { 

    return [self.urlPath md5Hash]; 
  } 

I get this error in the debugger:

*** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[NSCFString md5Hash]: unrecognized selector sent to instance 0x74409e0'

Does anybody know what is causing this? Thanks

Upvotes: 0

Views: 323

Answers (1)

saurabh
saurabh

Reputation: 2459

check your "other linker flag" settings. This could happen if you have not set your "other linker flags" properly. It has to be -ObjC and -all_load. any mistake in uppercase or lowercase will also cause this problem

Upvotes: 1

Related Questions