Jawbone/UPPlatform_iOS_SDK

Error getting user's friends

bryamrr opened this issue · 2 comments

Hi, I'm using UPPlatform iOS SDK with Swift and I having this runtime error when trying to get user's friends. Do you know what's happening?

image

The first line says [__NSCFDictionary stringForKey:]: unrecognized selector sent to instance 0x78643110

Can anybody help me with this, please.

stringForKey: is not a method on NSDictionary, thus you get the crash. You likely want to use objectForKey: instead.