Search code examples
objective-ccocoapodsxmppframeworkkissxml

Module 'KissXML' not found


I read this and I try to solve it and didn't solved: Module 'KissXML' not found Error in IOS

I setup my podfile like this:

platform :ios, '9.0'

target 'iPhoneXMPP' do
  pod 'XMPPFramework', '~> 3.7.0'
end 

Then in terminal I run:

pod install

It XMPPFramework will install "KissXML". When I try to import it in my project it give me this error:

Module 'KissXML' not found

pod file and error shown in this pic


Solution

  • try to input

    import "KissXML.h" insted of @import KissXML