I have a custom UIView in xib and fill out a custom class inherits UIView

the FastThreeMenuView use swift langue
then I get instance with this sentence:
FastThreeMenuView *menuView = [[[NSBundle mainBundle] loadNibNamed:@"FastThreeMenu" owner:self options:nil] firstObject];
I check variable menuView the class type is UIView,but I use Objective-C to implement the custom UIView,I get the instance type is FastThreeMenuView, how to fix the Issue?
