Reputation: 1963
I am using a library called MZFormSheetController, and I put it in to my program using cocoapods ,when the app runs ,it tell me there's error in the library.
I seems it cannot recognize the UIViewController? what's going on?
Upvotes: 0
Views: 70
Reputation: 5099
You are missing UIKit framework import. You have to @import UIKit;
Upvotes: 1