Jawbone / UPPlatform_iOS_SDK

An Objective-C library for communicating with the UP Platform on iOS.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Error getting user's friends

bryamrr opened this issue · 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.