On/Off button

Introduced properties

init new: UISwitch

ios :: UISwitch :: new

fun on: Bool

ios :: UISwitch :: on

Wraps: UISwitch.on
fun set_on_animated(on: Bool, animated: Bool)

ios :: UISwitch :: set_on_animated

Wraps: [self setOn:(BOOL)on animated:(BOOL)animated]

Redefined properties

redef type SELF: UISwitch

ios $ UISwitch :: 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 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 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: UISwitch

ios :: UISwitch :: new

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 on: Bool

ios :: UISwitch :: on

Wraps: UISwitch.on
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 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 set_on_animated(on: Bool, animated: Bool)

ios :: UISwitch :: set_on_animated

Wraps: [self setOn:(BOOL)on animated:(BOOL)animated]
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::UISwitch UISwitch ios::UIView UIView ios::UISwitch->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 $ UISwitch
# On/Off button
extern class UISwitch in "ObjC" `{ UISwitch * `}
	super UIView

	new in "ObjC" `{ return [[UISwitch alloc] init]; `}

	# Wraps: `UISwitch.onTintColor`
#	fun on_tint_color: UIColor in "ObjC" `{
#		return [self onTintColor];
#	`}

	# Wraps: `UISwitch.tintColor`
#	fun tint_color: UIColor in "ObjC" `{
#		return [self tintColor];
#	`}

	# Wraps: `UISwitch.thumbTintColor`
#	fun thumb_tint_color: UIColor in "ObjC" `{
#		return [self thumbTintColor];
#	`}

	# Wraps: `UISwitch.onImage`
#	fun on_image: UIImage in "ObjC" `{
#		return [self onImage];
#	`}

	# Wraps: `UISwitch.offImage`
#	fun off_image: UIImage in "ObjC" `{
#		return [self offImage];
#	`}

	# Wraps: `UISwitch.on`
	fun on: Bool in "ObjC" `{
		return self.on;
	`}

	# Wraps: `[self setOn:(BOOL)on animated:(BOOL)animated]`
	fun set_on_animated(on: Bool, animated: Bool) in "ObjC" `{
		[self setOn: on animated: animated];
	`}
end
lib/ios/ui/uikit.nit:648,1--688,3

ios :: ui $ UISwitch
redef class UISwitch
	# Register callbacks on this switch to be relayed to `sender`
	private fun set_callback(sender: View)
	import View.on_ios_event in "ObjC" `{

		NitCallbackReference *ncr = [[NitCallbackReference alloc] init];
		ncr.nit_view = sender;

		// Pin the objects in both Objective-C and Nit GC
		View_incr_ref(sender);
		ncr = (__bridge NitCallbackReference*)CFBridgingRetain(ncr);

		[self addTarget:ncr action:@selector(nitOnEvent:)
			forControlEvents:UIControlEventValueChanged];
	`}
end
lib/ios/ui/ui.nit:344,1--359,3