Number of entries in section

By default, we assume that all items are in a single section, so no matter the section, this returns items.length.

iOS callback: numberOfRowsInSection

Property definitions

ios $ TableView :: number_of_rows_in_section
	# Number of entries in `section`
	#
	# By default, we assume that all `items` are in a single section,
	# so no matter the section, this returns `items.length`.
	#
	# iOS callback: `numberOfRowsInSection`
	protected fun number_of_rows_in_section(view: UITableView, section: Int): Int
	do return items.length
lib/ios/ui/ui.nit:554,2--561,23