I got a problem when I\'m using AFNetworking. I wrote this in my code:
AFHTTPRequestOperationManager *manager = [AFHTTPRequestOperationManager manager];
<
Please check the profile - AFNetworking version
Change to
pod 'AFNetworking', '~> 2.5.4'
and use
import "AFHTTPRequestOperationManager.h"
In Your View controller .h file add
#import <AFNetworking/AFHTTPRequestOperationManager.h>
And then check it
In fact, it's because after AFNetworking 3.x, there is no AFHTTPRequestOperationManager any more. You should use AFHTTPSessionManager instead.