Closed zackshapiro closed 6 years ago
I found a bug that I'm kind of stumped by. Wondering if anyone else experienced this.
I include MBProgressHUD in my ViewController.h. Presumably I'll use it in ViewController.m somewhere.
I also want to include ViewController.h in my bridging header so that I can write a Swift extension.
However, when I build and run, I get an error:
'MBProgressHUD.h' file not found
I've recreated the error in this project: https://github.com/zackshapiro/PodTest
Any help would be appreciated. Thanks!
Figured it out. You have to do #import <MBProgressHud/MBProgressHud.h> to avoid the error
#import <MBProgressHud/MBProgressHud.h>
It is not working, now. Anybody has the same bug as me? Help!!!
I found a bug that I'm kind of stumped by. Wondering if anyone else experienced this.
I include MBProgressHUD in my ViewController.h. Presumably I'll use it in ViewController.m somewhere.
I also want to include ViewController.h in my bridging header so that I can write a Swift extension.
However, when I build and run, I get an error:
'MBProgressHUD.h' file not found
I've recreated the error in this project: https://github.com/zackshapiro/PodTest
Any help would be appreciated. Thanks!