1

I tried simply adding

pod 'IQKeyboardManager'

...to my Podfile. Then I

#import 'IQKeyboardManager.h'

But the .h file was not found. So I dropped in the the 'IQKeyboardManager' directory to my Resources Files but the header is still not found. Any suggestions?

Tamás Sengel
  • 55,884
  • 29
  • 169
  • 223
Michael Castro
  • 314
  • 4
  • 14
  • Did you ever found a solution to your problem? – Matt Sep 13 '17 at 01:44
  • i had added some code to disable arm64 code in podfile for simulator builds- caused this problem - but haven't found proper solution to other problem. – johndpope Aug 02 '22 at 03:10

1 Answers1

0

You shouldn't be using single-quotes in your Xcode project.

You should use double-quotes: #import "IQKeyboardManager.h"

nodebase
  • 2,510
  • 6
  • 31
  • 46