func awakeAfter (using: NSCoder) -> Any?
class func initialize()
init?(coder: NSCoder)
Availability
Technologies
func awakeFromNib()
The nib-loading infrastructure sends an awake
message to each object recreated from a nib archive, but only after all the objects in the archive have been loaded and initialized. When an object receives an awake
message, it is guaranteed to have all its outlet and action connections already established.
You must call the super
implementation of awake
to give parent classes the opportunity to perform any additional initialization they require. Although the default implementation of this method does nothing, many UIKit classes provide non-empty implementations. You may call the super
implementation at any point during your own awake
method.
Note 注意
During Interface Builder’s test mode, this message is also sent to objects instantiated from loaded Interface Builder plug-ins. Because plug-ins link against the framework containing the object definition code, Interface Builder is able to call their awake
method when present. The same is not true for custom objects that you create for your Xcode projects. Interface Builder knows only about the defined outlets and actions of those objects; it does not have access to the actual code for them.
During the instantiation process, each object in the archive is unarchived and then initialized with the method befitting its type. Objects that conform to the NSCoding
protocol (including all subclasses of UIView
and UIView
) are initialized using their init
method. All objects that do not conform to the NSCoding
protocol are initialized using their init
method. After all objects have been instantiated and initialized, the nib-loading code reestablishes the outlet and action connections for all of those objects. It then calls the awake
method of the objects. For more detailed information about the steps followed during the nib-loading process, see Nib Files in Resource Programming Guide.
Important 重要
Because the order in which objects are instantiated from an archive is not guaranteed, your initialization methods should not send messages to other objects in the hierarchy. Messages to other objects can be sent safely from within an awake
method.
Typically, you implement awake
for objects that require additional set up that cannot be done at design time. For example, you might use this method to customize the default configuration of any controls to match user preferences or the values in other controls. You might also use it to restore individual controls to some previous state of your application.
func awakeAfter (using: NSCoder) -> Any?
class func initialize()
init?(coder: NSCoder)