Swift and AFNetworking integration [closed]

℡╲_俬逩灬. 提交于 2019-11-29 09:08:01

You have to add AFNetworking to your swift project

In Build Settings -> Defines Module set to Yes

In Build Settings -> Swift compiler -> Objective-C bridging file set the name of bridging file 'ProjectName-Bridging-Header.h' for example

In ProjectName-Bridging-Header.h write:

#import "AFNetworking.h"
mohacs

Any Objective-C framework (or C library) that’s accessible as a module can be imported directly into Swift. This includes all of the Objective-C system frameworks—such as Foundation, UIKit, and SpriteKit—as well as common C libraries supplied with the system. For example, to import Foundation, simply add this import statement to the top of the Swift file you’re working in:

you just need to import them into your project and create bridging header. you can find detailed explanation How to call Objective-C code from Swift

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!