Read-only text view

Introduced properties

fun adjusts_font_size_to_fit_width: Bool

ios :: UILabel :: adjusts_font_size_to_fit_width

Wraps: UILabel.adjustsFontSizeToFitWidth
fun highlighted_text_color: UIColor

ios :: UILabel :: highlighted_text_color

Wraps: UILabel.highlightedTextColor
fun minimum_scale_factor: Float

ios :: UILabel :: minimum_scale_factor

Wraps: UILabel.minimumScaleFactor
init new: UILabel

ios :: UILabel :: new

fun number_of_lines: Int

ios :: UILabel :: number_of_lines

Wraps: UILabel.numberOfLines
fun preferred_max_layout_width: Float

ios :: UILabel :: preferred_max_layout_width

Wraps: UILabel.preferredMaxLayoutWidth
fun shadow_color: UIColor

ios :: UILabel :: shadow_color

Wraps: UILabel.shadowColor
fun text: NSString

ios :: UILabel :: text

Wraps: UILabel.text
fun text=(text: NSString)

ios :: UILabel :: text=

Wraps: UILabel.text
fun text_color: UIColor

ios :: UILabel :: text_color

Wraps: UILabel.textColor
fun text_color=(color: UIColor)

ios :: UILabel :: text_color=

Wraps: UILabel.textColor

Redefined properties

redef type SELF: UILabel

ios $ UILabel :: 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 adjusts_font_size_to_fit_width: Bool

ios :: UILabel :: adjusts_font_size_to_fit_width

Wraps: UILabel.adjustsFontSizeToFitWidth
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.
fun highlighted_text_color: UIColor

ios :: UILabel :: highlighted_text_color

Wraps: UILabel.highlightedTextColor
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.
fun minimum_scale_factor: Float

ios :: UILabel :: minimum_scale_factor

Wraps: UILabel.minimumScaleFactor
init new: UIView

ios :: UIView :: new

init new: UILabel

ios :: UILabel :: new

init nul: Pointer

core :: Pointer :: nul

C NULL pointer
fun number_of_lines: Int

ios :: UILabel :: number_of_lines

Wraps: UILabel.numberOfLines
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 preferred_max_layout_width: Float

ios :: UILabel :: preferred_max_layout_width

Wraps: UILabel.preferredMaxLayoutWidth
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 shadow_color: UIColor

ios :: UILabel :: shadow_color

Wraps: UILabel.shadowColor
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.
fun text: NSString

ios :: UILabel :: text

Wraps: UILabel.text
fun text=(text: NSString)

ios :: UILabel :: text=

Wraps: UILabel.text
fun text_color: UIColor

ios :: UILabel :: text_color

Wraps: UILabel.textColor
fun text_color=(color: UIColor)

ios :: UILabel :: text_color=

Wraps: UILabel.textColor
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::UILabel UILabel ios::UIView UIView ios::UILabel->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 $ UILabel
# Read-only text view
extern class UILabel in "ObjC" `{ UILabel * `}
	super UIView

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

	# Wraps: `UILabel.text`
	fun text: NSString in "ObjC" `{
		return [self text];
	`}

	# Wraps: `UILabel.text`
	fun text=(text: NSString) in "ObjC" `{
		self.text = text;
	`}

	# Wraps: `UILabel.font`
	#fun font: UIFont in "ObjC" `{
	#	return [self font];
	#`}

	# Wraps: `UILabel.textColor`
	fun text_color: UIColor in "ObjC" `{
		return [self textColor];
	`}

	# Wraps: `UILabel.textColor`
	fun text_color=(color: UIColor) in "ObjC" `{
		self.textColor = color;
	`}

	# Wraps: `UILabel.shadowColor`
	fun shadow_color: UIColor in "ObjC" `{
		return [self shadowColor];
	`}

	# Wraps: `UILabel.shadowOffset`
	#fun shadow_offset: CGSize in "ObjC" `{
	#	return [self shadowOffset];
	#`}

	# Wraps: `UILabel.textAlignment`
	#fun text_alignment: NSTextAlignment in "ObjC" `{
	#	return [self textAlignment];
	#`}

	# Wraps: `UILabel.lineBreakMode`
	#fun line_break_mode: NSLineBreakMode in "ObjC" `{
	#	return [self lineBreakMode];
	#`}

	# Wraps: `UILabel.attributedText`
	#fun attributed_text: NSAttributedString in "ObjC" `{
	#	return [self attributedText];
	#`}

	# Wraps: `UILabel.highlightedTextColor`
	fun highlighted_text_color: UIColor in "ObjC" `{
		return [self highlightedTextColor];
	`}

	# Wraps: `UILabel.highlighted`
	#fun highlighted: Bool in "ObjC" `{
	#	return [self highlighted];
	#`}

	# Wraps: `UILabel.userInteractionEnabled`
	#fun user_interaction_enabled: Bool in "ObjC" `{
	#	return [self userInteractionEnabled];
	#`}

	# Wraps: `UILabel.enabled`
	#fun enabled: Bool in "ObjC" `{
	#	return [self enabled];
	#`}

	# Wraps: `UILabel.numberOfLines`
	fun number_of_lines: Int in "ObjC" `{
		return [self numberOfLines];
	`}

	# Wraps: `UILabel.adjustsFontSizeToFitWidth`
	fun adjusts_font_size_to_fit_width: Bool in "ObjC" `{
		return [self adjustsFontSizeToFitWidth];
	`}

	# Wraps: `UILabel.adjustsLetterSpacingToFitWidth`
	# Depricated
	#fun adjusts_letter_spacing_to_fit_width: Bool in "ObjC" `{
	#	return [self adjustsLetterSpacingToFitWidth];
	#`}

	# Wraps: `UILabel.minimumFontSize`
	# Depricated
	#fun minimum_font_size: Float in "ObjC" `{
	#	return [self minimumFontSize];
	#`}

	# Wraps: `UILabel.baselineAdjustment`
	#fun baseline_adjustment: UIBaselineAdjustment in "ObjC" `{
	#	return [self baselineAdjustment];
	#`}

	# Wraps: `UILabel.minimumScaleFactor`
	fun minimum_scale_factor: Float in "ObjC" `{
		return [self minimumScaleFactor];
	`}

	# Wraps: `UILabel.preferredMaxLayoutWidth`
	fun preferred_max_layout_width: Float in "ObjC" `{
		return [self preferredMaxLayoutWidth];
	`}

	# Wraps: `[self textRectForBounds:(CGRect)bounds limitedToNumberOfLines:(NSInteger)numberOfLines]`
	#fun text_rect_for_bounds_limited_to_number_of_lines(bounds: CGRect, number_of_lines: Int): CGRect in "ObjC" `{
	#	return [self textRectForBounds: bounds limitedToNumberOfLines: number_of_lines];
	#`}

	# Wraps: `[self drawTextInRect:(CGRect)rect]`
	#fun draw_text_in_rect(rect: CGRect) in "ObjC" `{
	#	[self drawTextInRect: rect];
	#`}
end
lib/ios/ui/uikit.nit:166,1--288,3

ios :: ui $ UILabel
redef class UILabel

	private fun size=(points: Float)
	in "ObjC" `{
		self.font = [UIFont systemFontOfSize: points];
	`}

	private fun align=(align: Float)
	in "ObjC" `{
		if (align == 0.5)
			self.textAlignment = NSTextAlignmentCenter;
		else if (align < 0.5)
			self.textAlignment = NSTextAlignmentLeft;
		else//if (align > 0.5)
			self.textAlignment = NSTextAlignmentRight;
	`}
end
lib/ios/ui/ui.nit:288,1--304,3