Parse API 1.6.4 - cannot build project

后端 未结 11 2515
太阳男子
太阳男子 2020-12-14 08:36

I downloaded the new iOS Parse API (1.6.4) and tried to build my project. When I do, I get this error:

Undefined sym         


        
11条回答
  •  情深已故
    2020-12-14 09:32

    Temporary workaround for Parse 1.6.4 and Facebook SDK 3.23:

    Add to your AppDelegate.m or another class following constant after imports and before implementation section:

    NSString *const BFTaskMultipleExceptionsException = @"BFMultipleExceptionsException";
    
    @interface IPAppDelegate ()
    @end
    
    @implementation IPAppDelegate
    

    It should solve the problem until it'll be solved on Parse/Facebook side.

    -- Update: This solution is only for Facebook and Parse SDK versions that listed above and these versions right now are outdated.

    New Parse SDK 1.7.4 works correct with new Facebook SDK 4.0 and there shouldn't be such a problem.

提交回复
热议问题