Property definitions

ios $ UIViewController :: defaultinit
# 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