afnetworking - Can't see my AFHTTPRequestOperationManager class after RestKit installation -
i created new xcode project , added libraries project using cocoa pods. in pod file mentioned following libraries.
platform:ios, '7.0' pod 'restkit', '~> 0.22' <-- 1 should contains afnetworking pod 'sskeychain', '~> 1.2' during programming stuff realised xcode can't find afhttprequestoperationmanager , i'm wondering why, because other afnetworking class works fine example afhttprequestoperation or afjsonrequestoperation. there should add pod file? tried add standalone afnetworking library adding pod file following line:
pod "afnetworking", "~> 2.0" then error:
[!] unable satisfy following requirements: -
afnetworking (~> 1.3.0)requiredrestkit/network (0.22.0)-afnetworking (~> 2.0)requiredpodfile
it seems during installing new version of restkit contain afnetworking afhttprequestoperationmanager class omitted.
please me fixing issue.
restkit not yet working afnetworking 2.*, add older afnetworking pod file:
pod "afnetworking", "~> 1.3.0"
Comments
Post a Comment