View to display and edit hierarchical lists of information

Introduced properties

fun autoresizing_mask

ios :: UITableView :: autoresizing_mask

Wraps: self.autoresizingMask =
fun data_source=(source: UITableViewDataSource)

ios :: UITableView :: data_source=

Wraps: self.dataSource =
fun delegate=(delegate: UITableViewDelegate)

ios :: UITableView :: delegate=

Wraps: self.delegate =
fun dequeue_reusable_cell_with_identifier(identifier: NSString): UITableViewCell

ios :: UITableView :: dequeue_reusable_cell_with_identifier

Wraps: [self dequeueReusableCellWithIdentifier]
init new(style: UITableViewStyle): UITableView

ios :: UITableView :: new

Wraps: [self initWithFrame:(CGRect)frame style:(UITableViewStyle)style]
fun reload_data

ios :: UITableView :: reload_data

Wraps: [self reloadData]

Redefined properties

redef type SELF: UITableView

ios $ UITableView :: SELF

Type of this instance, automatically specialized in every class

All properties

fun !=(other: nullable Object): Bool

core :: Object :: !=

Have self and other different values?
fun ==(other: nullable Object): Bool

core :: Object :: ==

Have self and other the same value?
type CLASS: Class[SELF]

core :: Object :: CLASS

The type of the class of self.
type SELF: Object

core :: Object :: SELF

Type of this instance, automatically specialized in every class
fun add_subview(view: UIView)

ios :: UIView :: add_subview

Wraps: UIView.addSubview
fun address_is_null: Bool

core :: Pointer :: address_is_null

Is the address behind this Object at NULL?
fun autoresizing_mask

ios :: UITableView :: autoresizing_mask

Wraps: self.autoresizingMask =
fun background_color=(color: UIColor)

ios :: UIView :: background_color=

Wraps: UIView.backgroundColor =
protected fun class_factory(name: String): CLASS

core :: Object :: class_factory

Implementation used by get_class to create the specific class.
fun class_name: String

core :: Object :: class_name

The class name of the object.
fun data_source=(source: UITableViewDataSource)

ios :: UITableView :: data_source=

Wraps: self.dataSource =
fun delegate=(delegate: UITableViewDelegate)

ios :: UITableView :: delegate=

Wraps: self.delegate =
fun dequeue_reusable_cell_with_identifier(identifier: NSString): UITableViewCell

ios :: UITableView :: dequeue_reusable_cell_with_identifier

Wraps: [self dequeueReusableCellWithIdentifier]
fun free

core :: Pointer :: free

Free the memory pointed by this pointer
fun get_class: CLASS

core :: Object :: get_class

The meta-object representing the dynamic type of self.
fun hash: Int

core :: Object :: hash

The hash code of the object.
init init

core :: Object :: init

fun inspect: String

core :: Object :: inspect

Developer readable representation of self.
protected fun inspect_head: String

core :: Object :: inspect_head

Return "CLASSNAME:#OBJECTID".
intern fun is_same_instance(other: nullable Object): Bool

core :: Object :: is_same_instance

Return true if self and other are the same instance (i.e. same identity).
fun is_same_serialized(other: nullable Object): Bool

core :: Object :: is_same_serialized

Is self the same as other in a serialization context?
intern fun is_same_type(other: Object): Bool

core :: Object :: is_same_type

Return true if self and other have the same dynamic type.
init new: UIView

ios :: UIView :: new

init new(style: UITableViewStyle): UITableView

ios :: UITableView :: new

Wraps: [self initWithFrame:(CGRect)frame style:(UITableViewStyle)style]
init nul: Pointer

core :: Pointer :: nul

C NULL pointer
intern fun object_id: Int

core :: Object :: object_id

An internal hash code for the object based on its identity.
fun output

core :: Object :: output

Display self on stdout (debug only).
intern fun output_class_name

core :: Object :: output_class_name

Display class name on stdout (debug only).
fun reload_data

ios :: UITableView :: reload_data

Wraps: [self reloadData]
fun remove_from_superview

ios :: UIView :: remove_from_superview

Wraps: UIView.removeFromSuperview
fun serialization_hash: Int

core :: Object :: serialization_hash

Hash value use for serialization
fun set_bounds(x: Float, y: Float, w: Float, h: Float)

ios :: UIView :: set_bounds

Wraps: UIView.bounds =
fun set_center(x: Float, y: Float)

ios :: UIView :: set_center

Wraps: UIView.center =
fun set_frame(x: Float, y: Float, w: Float, h: Float)

ios :: UIView :: set_frame

Wraps: UIView.frame =
fun size_to_fit

ios :: UIView :: size_to_fit

Wraps: UIView.sizeToFit
intern fun sys: Sys

core :: Object :: sys

Return the global sys object, the only instance of the Sys class.
abstract fun to_jvalue(env: JniEnv): JValue

core :: Object :: to_jvalue

fun to_s: String

core :: Object :: to_s

User readable representation of self.
fun translates_autoresizing_mask_into_constraits=(value: Bool)

ios :: UIView :: translates_autoresizing_mask_into_constraits=

Wraps: UIView.translatesAutoresizingMaskIntoConstraints =
fun user_interaction_enabled=(value: Bool)

ios :: UIView :: user_interaction_enabled=

Wraps: UIView.userInteractionEnabled =
package_diagram ios::UITableView UITableView ios::UIView UIView ios::UITableView->ios::UIView cocoa::NSObject NSObject ios::UIView->cocoa::NSObject ...cocoa::NSObject ... ...cocoa::NSObject->cocoa::NSObject

Ancestors

extern class NSObject

cocoa :: NSObject

Base of the Foundation framework class hierarchy
interface Object

core :: Object

The root of the class hierarchy.
extern class Pointer

core :: Pointer

Pointer classes are used to manipulate extern C structures.

Parents

extern class UIView

ios :: UIView

Rectangular area on the screen

Class definitions

ios $ UITableView
# 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

ios :: ui $ UITableView
redef class UITableView

	# Assign `list_view` as `delegate` and `dataSource`, and pin all references in both GCs
	private fun assign_delegate_and_data_source(list_view: TableView)
	import TableView.number_of_sections_in_table_view,
	       TableView.number_of_rows_in_section,
	       TableView.title_for_header_in_section,
	       TableView.cell_for_row_at_index_path in "ObjC" `{

		UITableViewAndDataSource *objc_delegate = [[UITableViewAndDataSource alloc] init];
		objc_delegate = (__bridge UITableViewAndDataSource*)CFBridgingRetain(objc_delegate);

		objc_delegate.nit_list_layout = list_view;
		TableView_incr_ref(list_view);

		// Set our
		self.delegate = objc_delegate;
		self.dataSource = objc_delegate;
	`}
end
lib/ios/ui/ui.nit:598,1--617,3