MUNibView
open class MUNibView : UIView
An object that manages the content for a rectangular area on the screen from a xib file.
-
Return the nib name file to be used. Override it if you use a xib different that the class name.
Declaration
Swift
open var nibName: String? { get }
-
Return the bundle that contains the associated xib. Override it if you use a xib different that the class name.
Declaration
Swift
open var bundle: Bundle? { get }
-
Initializes and returns a newly allocated view object with the specified frame rectangle.
Declaration
Swift
override public init(frame: CGRect)
-
Returns an object initialized from data in a given unarchiver.
Declaration
Swift
required public init?(coder aDecoder: NSCoder)
-
Initializes and returns a newly allocated view object with a zero frame rectangle.
Declaration
Swift
public convenience init()
-
Default setup to load the view from a xib file.
Declaration
Swift
open func xibSetup()