with from custom ios uiview nib

ios - from - Crear un UIView desde NIB



load xib swift 4 (1)

Algo como esto:

UIView *info = [[[NSBundle mainBundle] loadNibNamed:@"InfoWeather" owner:self options:nil] objectAtIndex:0];

He creado una clase personalizada que subclases UIView. Quiero hacer mi diseño en IB, así que he establecido salidas. El problema es ¿cómo inicio mi vista para obtenerla del NIB? Cualquier ayuda sería muy apreciada.