FBConnect facebook.stream.publish with NSDictionary problems

后端 未结 4 977
北恋
北恋 2021-02-10 16:51

I have this code that can\'t send a Facebook request until now.

NSDictionary *firstDict = [NSDictionary dictionaryWithObjectsAndKeys:
    @\"image\", @\"Type\",         


        
4条回答
  •  执念已碎
    2021-02-10 17:08

    dataUsingEncoding: is a NSString method, so presumably, some object is expecting an instance of NSString where you passed an array. I presume that FBRequest cannot deal with the array you included in the attachment dictionary.

提交回复
热议问题