ios :: UIStackView
ios :: UIStackView :: add_arranged_subview
Wraps:[self addArrangedSubview:(UIView)view]
			ios :: UIStackView :: alignment=
Wraps:UIStackView.alignment =
			ios :: UIStackView :: baseline_relative_arrangement
Wraps:UIStackView.baselineRelativeArrangement
			ios :: UIStackView :: baseline_relative_arrangement=
Wraps:UIStackView.baselineRelativeArrangement
			ios :: UIStackView :: defaultinit
ios :: UIStackView :: distribution
Wraps:UIStackView.distribution
			ios :: UIStackView :: distribution=
Wraps:UIStackView.distribution =
			ios :: UIStackView :: insert_arranged_subview_at_index
Wraps:[self insertArrangedSubview:(UIView)view atIndex:(NSUInteger)stackIndex]
			ios :: UIStackView :: layout_margins_relative_arrangement
Wraps:UIStackView.layoutMarginsRelativeArrangement
			ios :: UIStackView :: layout_margins_relative_arrangement=
Wraps:UIStackView.layoutMarginsRelativeArrangement
			ios :: UIStackView :: new
ios :: UIStackView :: remove_arranged_subview
Wraps:[self removeArrangedSubview:(UIView)view]
			ios $ UIStackView :: SELF
Type of this instance, automatically specialized in every classios :: UIStackView :: add_arranged_subview
Wraps:[self addArrangedSubview:(UIView)view]
			core :: Pointer :: address_is_null
Is the address behind this Object at NULL?ios :: UIStackView :: alignment=
Wraps:UIStackView.alignment =
			ios :: UIView :: background_color=
Wraps:UIView.backgroundColor =
			ios :: UIStackView :: baseline_relative_arrangement
Wraps:UIStackView.baselineRelativeArrangement
			ios :: UIStackView :: baseline_relative_arrangement=
Wraps:UIStackView.baselineRelativeArrangement
			core :: Object :: class_factory
Implementation used byget_class to create the specific class.
			ios :: UIStackView :: defaultinit
cocoa :: NSObject :: defaultinit
ios :: UIView :: defaultinit
core :: Pointer :: defaultinit
core :: Object :: defaultinit
ios :: UIStackView :: distribution
Wraps:UIStackView.distribution
			ios :: UIStackView :: distribution=
Wraps:UIStackView.distribution =
			ios :: UIStackView :: insert_arranged_subview_at_index
Wraps:[self insertArrangedSubview:(UIView)view atIndex:(NSUInteger)stackIndex]
			core :: Object :: is_same_instance
Return true ifself and other are the same instance (i.e. same identity).
			core :: Object :: is_same_serialized
Isself the same as other in a serialization context?
			core :: Object :: is_same_type
Return true ifself and other have the same dynamic type.
			ios :: UIStackView :: layout_margins_relative_arrangement
Wraps:UIStackView.layoutMarginsRelativeArrangement
			ios :: UIStackView :: layout_margins_relative_arrangement=
Wraps:UIStackView.layoutMarginsRelativeArrangement
			ios :: UIStackView :: new
core :: Object :: output_class_name
Display class name on stdout (debug only).ios :: UIStackView :: remove_arranged_subview
Wraps:[self removeArrangedSubview:(UIView)view]
			ios :: UIView :: set_bounds
Wraps:UIView.bounds =
			ios :: UIView :: translates_autoresizing_mask_into_constraits=
Wraps:UIView.translatesAutoresizingMaskIntoConstraints =
			ios :: UIView :: user_interaction_enabled=
Wraps:UIView.userInteractionEnabled =
			
# Lays out a collection of views in either a column or a row
extern class UIStackView in "ObjC" `{ UIStackView * `}
	super UIView
	new in "ObjC" `{
		return [[UIStackView alloc] init];
	`}
	# Wraps: `[self addArrangedSubview:(UIView)view]`
	fun add_arranged_subview(view: UIView) in "ObjC" `{
		[self addArrangedSubview: view];
	`}
	# Wraps: `[self removeArrangedSubview:(UIView)view]`
	fun remove_arranged_subview(view: UIView) in "ObjC" `{
		[self removeArrangedSubview: view];
	`}
	# Wraps: `[self insertArrangedSubview:(UIView)view atIndex:(NSUInteger)stackIndex]`
	fun insert_arranged_subview_at_index(view: UIView, stack_index: Int) in "ObjC" `{
		[self insertArrangedSubview: view atIndex: stack_index];
	`}
	# Wraps: `[self initWithArrangedSubviews:(NSArray)views]`
	#new init_with_arranged_subviews(views: NSArray) in "ObjC" `{
	#	return [[UIStackView alloc] initWithArrangedSubviews: views];
	#`}
	# Wraps: `UIStackView.arrangedSubviews`
	#fun arranged_subviews: NSArray in "ObjC" `{
	#	return [self arrangedSubviews];
	#`}
	# Wraps: `UIStackView.axis`
	fun axis: UILayoutConstraintAxis in "ObjC" `{ return [self axis]; `}
	# Wraps: `UIStackView.axis =`
	fun axis=(value: UILayoutConstraintAxis) in "ObjC" `{ self.axis = value; `}
	# Wraps: `UIStackView.distribution`
	fun distribution: UIStackViewDistribution in "ObjC" `{ return [self distribution]; `}
	# Wraps: `UIStackView.distribution =`
	fun distribution=(value: UIStackViewDistribution) in "ObjC" `{ self.distribution = value; `}
	# Wraps: `UIStackView.alignment`
	fun alignment: UIStackViewAlignment in "ObjC" `{ return [self alignment]; `}
	# Wraps: `UIStackView.alignment =`
	fun alignment=(value: UIStackViewAlignment) in "ObjC" `{ self.alignment = value; `}
	# Wraps: `UIStackView.spacing`
	fun spacing: Float in "ObjC" `{ return [self spacing]; `}
	# Wraps: `UIStackView.spacing =`
	fun spacing=(value: Float) in "ObjC" `{ self.spacing = value; `}
	# Wraps: `UIStackView.baselineRelativeArrangement`
	fun baseline_relative_arrangement: Bool in "ObjC" `{
		return self.baselineRelativeArrangement;
	`}
	# Wraps: `UIStackView.baselineRelativeArrangement`
	fun baseline_relative_arrangement=(value: Bool) in "ObjC" `{
		self.baselineRelativeArrangement = value;
	`}
	# Wraps: `UIStackView.layoutMarginsRelativeArrangement`
	fun layout_margins_relative_arrangement: Bool in "ObjC" `{
		return self.layoutMarginsRelativeArrangement;
	`}
	# Wraps: `UIStackView.layoutMarginsRelativeArrangement`
	fun layout_margins_relative_arrangement=(value: Bool) in "ObjC" `{
		self.layoutMarginsRelativeArrangement = value;
	`}
end
					lib/ios/ui/uikit.nit:478,1--554,3