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

前端 未结 3 1684
你的背包
你的背包 2020-12-31 07:55

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 a

3条回答
  •  情话喂你
    2020-12-31 08:57

    I had the same problem (spent a few hours investigating whats going on). I messed up old FacebookSDK framework with the one I installed via cocoapods

    1. Check the following path ~/Documents/FacebookSDK to see if there are some outdated SDK
    2. Remove any import of Facebook SDK #import
    3. Install it via cocoapods
      pod 'FBSDKCoreKit' pod 'FBSDKLoginKit' pod 'FBSDKShareKit'
      or add the new framework manually.

提交回复
热议问题