Swift and AFNetworking integration [closed]

2019-01-26 03:42发布

Now as swift is the new language to develop iOS apps.

How can we integrate with the AFNetworking or using NSURLSession will be a better option ???

Please help me out..

2条回答
霸刀☆藐视天下
2楼-- · 2019-01-26 04:08

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

查看更多
冷血范
3楼-- · 2019-01-26 04:18

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"
查看更多
登录 后发表回答