Property definitions

ios $ UITableView :: defaultinit
# View to display and edit hierarchical lists of information
extern class UITableView in "ObjC" `{ UITableView * `}
	super UIView

	# Wraps: `[self initWithFrame:(CGRect)frame style:(UITableViewStyle)style]`
	new (style: UITableViewStyle) in "ObjC" `{
		return [[UITableView alloc] initWithFrame: [[UIScreen mainScreen] bounds] style:style];
	`}

	# Wraps: `[self reloadData]`
	fun reload_data in "ObjC" `{ [self reloadData]; `}

	# Wraps: `self.autoresizingMask =`
	fun autoresizing_mask in "ObjC" `{
		self.autoresizingMask = UIViewAutoresizingFlexibleHeight|UIViewAutoresizingFlexibleWidth;
	`}

	# Wraps: `self.delegate =`
	fun delegate=(delegate: UITableViewDelegate) in "ObjC" `{ self.delegate = delegate; `}

	# Wraps: `self.dataSource =`
	fun data_source=(source: UITableViewDataSource) in "ObjC" `{ self.dataSource = source; `}

	# Wraps: `[self dequeueReusableCellWithIdentifier]`
	fun dequeue_reusable_cell_with_identifier(identifier: NSString): UITableViewCell in "ObjC" `{
		return [self dequeueReusableCellWithIdentifier:identifier];
	`}
end
lib/ios/ui/uikit.nit:584,1--611,3