Reputation: 31
I think you may know what I error I am talking about as it has been discussed in previous stack forms. I have read all of these and tried everything but this still isn't working for me.
No such module Parse using Swift in Xcode 7.1
https://stackoverflow.com/questions/33621187/no-such-module-parse-xcode-7-1-ios-9-1
I have followed tutorials on Cocoa Pods and I even tried using older version of parse dependencies
http://www.webdevils.com/parse-swift-with-cocoapods/
https://www.veasoftware.com/tutorials/2015/10/12/how-to-use-the-parse-sdk-with-xcode-7-and-ios-9
I have spent way too long trying to figure this out. Is it even my fault or is it Parse's fault. Their newest SDK was released 12/12 which is very recent so it is tough to believe it wouldn't work.
# platform :ios, '8.0'
# Uncomment this line if you're using Swift
use_frameworks!
target 'What\'s Up' do
pod 'Parse'
pod 'ParseUI'
end
target 'What\'s UpTests' do
pod 'Parse'
pod 'ParseUI'
end
target 'What\'s UpUITests' do
pod 'Parse'
pod 'ParseUI'
end
Upvotes: 0
Views: 634
Reputation: 19994
This has worked for me in the past:
Upvotes: 4