简体   繁体   中英

Can't import AFNetworking from CocoaPods in swift project

In Podfile I

    pod 'AFNetworking', '~> 2.6.0'

pod update and I open project using xcworkspace.

And everything gone my way,but:

when i import AFNetworking ,Xcode prompt 'No such module AFNetworking'

I searched the solution for this question, and did like this: in 'Built setting ->User Header Search Paths ' add ${SRCROOT} and choose recursive.

But it didn't work . Xcode throw the same mesage : 'No such module AFNetworking'

Okay,I just did a mistake operation .

 platform :ios, '8.0'
 use_frameworks!

Two line above is necessary ! After I added them and run pod update , my project's Link Binary With Libraries add a row contain Pods_.framework .Then I import AFNetworking is OK.

check out there : No such module 'RestKit' with cocoapods and swift

Go to

Project > General > Linked Frameworks and Libraries

When press " Plus " and add your framework from list.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM