No Such Module 'Parse'

后端 未结 7 1558
暖寄归人
暖寄归人 2020-12-05 11:27

I am copying the parse frameworks to my Xcode project and checking the checkbox that says Copy files if needed.

Projects runs without a problem. But wh

7条回答
  •  遥遥无期
    2020-12-05 11:53

    The issue for me was related to removing the comments in the podfile necessary for Swift to work. Check it out here.

    "Replace the two commented lines with the following:

    platform :ios, "8.0"

    use_frameworks!

    This tells CocoaPods that your project is targeting iOS 8.0 and will be using frameworks instead of static libraries."

    http://www.raywenderlich.com/97014/use-cocoapods-with-swift

提交回复
热议问题