0

I recently upgraded my Xcode. I was able to transform all my code to Swift 3 but my CocoaPods was not. Is there an easy way to do this?

Tamás Sengel
  • 55,884
  • 29
  • 169
  • 223
IvOS
  • 323
  • 3
  • 13

1 Answers1

1

Look like the pod you are talking about has a Swift 3 version, so it should be no problem. Have you tried doing a pod repo update IQKeyboardManager and then pod install? Your Podfile.lock must have an older version locked that has no support for Swift 3. Looks like versions '4.0.6' and up have support for Swift 3

Federico Ojeda
  • 758
  • 7
  • 11
  • Thanks for this! Would you be able to give me a step by step of what I should do to update this? – IvOS Feb 13 '17 at 03:34