I was using CocoaPods to install SDWebImage and CountdownLabel, but those modules I installed could not be imported in the beginning of my Swift file.
The following are my codes:
import UIKit import CountdownLabel class.... { .. .. } It will prompt out an error, which says Cannot load underlying module for 'CountdownLabel ". Does anyone have any idea about this symptom?
- I have make sure that I opened the file with .xcworkspace
- pod install returns no error
Thank you in advance.