I've added the MBProgressHUD Cocoapod to my project. Here is my Podfile:
# Uncomment this line to define a global platform for your project
# platform :ios, '8.0'
source 'https://github.com/CocoaPods/Specs.git'
target 'RRiOSApp' do
pod 'MBProgressHUD', '~> 0.8'
end
target 'RRiOSAppTests' do
end
I now have my code open as an Xcode workspace instead of a project. I ran pod install
and get the proper console output:
Analyzing dependencies
Downloading dependencies
Installing MBProgressHUD (0.9)
Generating Pods project
Integrating client project
I can see that my MBProgressHUD.h file exists in my Pods target under Pods > MBProgressHUD > MBProgressHUD.h
The issue is that when I add #import MBProgressHUD.h
to a file, I get an error at that line reading "MBProgressHUD.h file not found".