ios :: UIViewController :: defaultinit
ios :: UIViewController :: new
ios $ UIViewController :: SELF
Type of this instance, automatically specialized in every classcore :: Pointer :: address_is_null
Is the address behind this Object at NULL?core :: Object :: class_factory
Implementation used byget_class to create the specific class.
			cocoa :: NSObject :: defaultinit
core :: Object :: defaultinit
core :: Pointer :: defaultinit
ios :: UIViewController :: 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.
			ios :: UIViewController :: new
core :: Object :: output_class_name
Display class name on stdout (debug only).Window
			
# Manages a set of views
extern class UIViewController in "ObjC" `{ UIViewController * `}
	super NSObject
	new in "ObjC" `{
		return [[UIViewController alloc]initWithNibName:nil bundle:nil];
	`}
	# Wraps: `self.view`
	fun view: UIView in "ObjC" `{ return self.view; `}
	# Wraps: `self.view`
	fun view=(view: UIView) in "ObjC" `{ self.view = view; `}
	# Wraps: `self.title`
	fun title: NSString in "ObjC" `{ return self.title; `}
	# Wraps: `self.title`
	fun title=(title: NSString) in "ObjC" `{ self.title = title; `}
end
					lib/ios/ui/uikit.nit:97,1--116,3