//Bundle Identifier can be find at Target -> Your Framework -> Bundle Identifier //NSBundle *bundle = [NSBundle bundleWithIdentifier:@"com.yume190.CustomViewObjc"];
UINib *nib = [UINib nibWithNibName:nibName bundle:[NSBundle mainBundle]]; [nib instantiateWithOwner:self options:nil]; //Add the view loaded from the nib into self. [self addSubview:self.view]; }