Pod installation and deletion.
#1#.Pod Integration
initialize pod:
pod init
install pod:
pod install
update pod:
pod update
//------Podfile start-----------------------------------
platform :ios, '7.0'
# Uncomment this line if you're using Swift
# use_frameworks!
target 'Target_302' do
pod "Afnetworking"
end
//-----Podfile end-----------------------------------
#2#Pod Deletion
1.got project -> Configurations
set all to none
2.Delete the standalone files (Podfile Podfile.lock and your Pods directory)
Delete the generated xcworkspace
3.Open your xcodeproj file, delete the references to Pods.xcconfig and libPods.a (in the Frameworks group)
4.Under your Build Phases delete the Copy Pods Resources, Embed Pods Frameworks and Check Pods Manifest.lock phases.
that it