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) required restkit/network (0.22.0)- afnetworking (~> 2.0) required podfile

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

Popular posts from this blog

javascript - jquery or ashx not working -

opencv - DataType<cv::detail::deriv_type>::depth what is it used for -

python 3.x - Mapping specific letters onto a list of words -