Skip to content
This repository has been archived by the owner on Aug 25, 2023. It is now read-only.
imchristian_g edited this page Mar 20, 2018 · 1 revision

switch

Un MLSwitch es un widget que tiene dos estados, fill y clear.

Uso

Creación

Por XIB

para agregar un radio button a un xib, seguir los siguientes pasos:

  1. Agreagar una vista al xib
  2. Ponerle como custom class la clase MLSwitch

screen shot 2016-06-23 at 10 56 42 am

Por código usando Autolayout

Para crearlo usando Autolayouts, inicializar el botón con el siguiente método:

[[MLSwitch alloc]init];

y luego aplicarle los constraints

Jerarquía

mlswitchclassdiagram

Ejemplo de uso

  • Inicializando el switch
MLSwitch *mlSwitch = [[MLSwitch alloc]init];
  • Seteándole el estado luego de que fue creado
[mlSwitch off];
  • Verificando el estado
[mlSwitch isOff];
Clone this wiki locally