ios - Xcode: AWS SDK which I added with CocoaPods doesn't work? -


i trying start work aws sdk on ios. did said here aws sdk github cocoapod. pod file looks this:

source 'https://github.com/cocoapods/specs.git' platform :ios, "8.0" use_frameworks!  pod 'awscore', '~> 2.2' pod 'awssns', '~> 2.2'  end 

but try import aws:

#import <awsiossdkv2/awscore.h>  

i have error in xcode: 'awsiossdkv2/awscore.h' file not found did wrong?

in experience, should import headers based on pod name, this:

#import <awscore/awscore.h> 

Comments

Popular posts from this blog

android - questions about switching from C2DM to GCM -

c++ - Qt setGeometry: Unable to set geometry -

batch file - How to extract all multi-volume RAR archives from subfolders of a folder? -