Alfred Løvgren
Alfred Løvgren

Reputation: 21

Uninstall AFNetworking from Xcode Workspace

Can somebody help me uninstall/remove AFNetworking from my xcode project? I have tried deleting the files, but then I recieve an error message.

Upvotes: 2

Views: 470

Answers (2)

Meet
Meet

Reputation: 4934

If you're using Cocoapods,
1. Remove the line

pod 'AFNetworking'
from Podfile.

2. Open terminal, go to project directory, & do
 pod install

That should work.

And, If you're not using Cocoapods, just remove the AFNetworking framework from XcodeProject file.

Upvotes: 1

Guillermo Blanco
Guillermo Blanco

Reputation: 11

I've tried to delete all thing on Podfile archive and then install the pod again with the command "pod install" on the worksapce path.

It worked to me.

Upvotes: 1

Related Questions