I have a question regarding Swift.
I know when we create a designated initializer in Objective-C, sometimes we may need to do this(in order to load the corresponding .xib file):
if ((self = [super initWithNibName:@"PPFrameViewController" bundle:nil]))
{
}
What would be the equivalent in Swift. Just:
super.init(nibName: "PPFrameViewController", bundle: nil)
?
or something more?
Thanks in advance