bftask

Parse login hang since Facebook 4.0.x with [PFFacebookUtils initializeFacebookWithApplicationLaunchOptions:launchOptions] (semaphore_wait_slow trap)

|▌冷眼眸甩不掉的悲伤 提交于 2019-12-10 13:05:08
问题 Since updating Facebook to v4.0.x and the latest Parse libraries, my app is hanging, seemingly when trying to log in the user. My stack trace looks like this: I had a very similar problem previously, answered here: Parse crash when calling [PFFacebookUtils initializeFacebook] - semaphore_wait_trap However that solution no longer works, since it seems [PFUser currentUser] has been replaced with [PFUser(Private) _getCurrentUserWithOptions:] and [BFTask(Private) waitForResult

[BFTask isFaulted]: unrecognized selector sent to instance error

风格不统一 提交于 2019-12-08 08:51:11
问题 Updated to Parse SDK 1.7.1 with Bolts 1.1.4 and using the new and latest Facebook SDK. Every time I login the user I get the following error: [BFTask isFaulted]: unrecognized selector sent to instance error. I'm able to login the user, the user's info is store in parse, but not sure how to resolve this exception. Anyone else having this problem? 回答1: Had this problem also. I copied the Parse Bolts framework to the project directory. Referencing didn't do it. Same for Parse FacebookutilsV4.

Type arguments cannot be applied to non-parameterized class BFTask in PFAnalytics and PFObject

▼魔方 西西 提交于 2019-11-30 08:38:49
I've updated my project to iOS 9, my podfile, and all necessary files, but it will not build. The source of my grief is in the following error message: Type arguments cannot be applied to non-parameterized class 'BFTask' This is the only error that shows, but it shows up multiple times in both PFAnalytics.h and probably more importantly PFObject.h . Could someone tell me what this means and please suggest a solution? I hope I have provided enough information, but if not, let me know! The code samples are as follows: In PFObject.h and PFAnalytics.h , everywhere there is the following: (BFTask

Type arguments cannot be applied to non-parameterized class BFTask in PFAnalytics and PFObject

大城市里の小女人 提交于 2019-11-29 12:14:52
问题 I've updated my project to iOS 9, my podfile, and all necessary files, but it will not build. The source of my grief is in the following error message: Type arguments cannot be applied to non-parameterized class 'BFTask' This is the only error that shows, but it shows up multiple times in both PFAnalytics.h and probably more importantly PFObject.h . Could someone tell me what this means and please suggest a solution? I hope I have provided enough information, but if not, let me know! The code