ios :: UIWindow :: defaultinit
core :: Pointer :: address_is_null
Is the address behind this Object at NULL?ios :: UIView :: background_color=
Wraps:UIView.backgroundColor =
			core :: Object :: class_factory
Implementation used byget_class to create the specific class.
			core :: Pointer :: defaultinit
ios :: UIWindow :: defaultinit
core :: Object :: defaultinit
ios :: UIView :: defaultinit
cocoa :: NSObject :: defaultinit
core :: Object :: is_same_instance
Return true ifself and other are the same instance (i.e. same identity).
			core :: Object :: is_same_serialized
Isself the same as other in a serialization context?
			core :: Object :: is_same_type
Return true ifself and other have the same dynamic type.
			core :: Object :: output_class_name
Display class name on stdout (debug only).ios :: UIView :: set_bounds
Wraps:UIView.bounds =
			ios :: UIView :: translates_autoresizing_mask_into_constraits=
Wraps:UIView.translatesAutoresizingMaskIntoConstraints =
			ios :: UIView :: user_interaction_enabled=
Wraps:UIView.userInteractionEnabled =
			
# Coordinates an app displays on a device screen
extern class UIWindow in "ObjC" `{ UIWindow * `}
	super UIView
	new in "ObjC" `{ return [[UIWindow alloc] init]; `}
	# Wraps: `[self makeKeyAndVisible]`
	fun make_key_and_visible in "ObjC" `{
		[self makeKeyAndVisible];
	`}
end
					lib/ios/ui/uikit.nit:85,1--95,3