0

I installed, IQKeyboardManager with pod. using this line:

pod 'IQKeyboardManager'

Then I wanted to import it in a view controller:
In view controller .m file (I tested both of import lines):

1. #import "IQKeyboardManager.h" ----> clang: error: linker command failed with exit code 1 (use -v to see invocation)

2. @import IQKeyboardManager; ----> Module 'IQKeyboardManager' not found
Fattaneh Talebi
  • 727
  • 1
  • 16
  • 42

2 Answers2

1

I think you need to import like this

#import <IQKeyboardManager/IQKeyboardManager.h>
komara
  • 334
  • 1
  • 7
0

IQKeyboardManager (Objective-C):- Just drag and drop IQKeyBoardManager directory from demo project to your project. That's it.

it does not require any additional setups in Objective c.

Just Drag and drop.

if you want call any method of IQKeyboardManager then direct call static methods.

[IQKeyboardManager methodName];

Sagar koyani
  • 403
  • 2
  • 12