zoukankan      html  css  js  c++  java
  • 【代码笔记】iOS-自定义开关

    一,效果图。

    二,工程图。

    三,代码。

    RootViewController.h

    复制代码
    #import <UIKit/UIKit.h>
    #import "ToggleView.h"
    
    @interface RootViewController : UIViewController
    <ToggleViewDelegate>
    
    @property(nonatomic, strong)ToggleView *toggleViewWithLabel;
    @property(nonatomic, strong)ToggleView *toggleViewWithoutLabel;
    @property(nonatomic, strong)ToggleView *toggleViewBaseChange;
    @property(nonatomic, strong)ToggleView *toggleViewButtonChange;
    
    @end
    复制代码

     

    RootViewController.m

    复制代码
    #import "RootViewController.h"
    
    @interface RootViewController ()
    
    @end
    
    @implementation RootViewController
    
    @synthesize toggleViewWithLabel;
    @synthesize toggleViewWithoutLabel;
    @synthesize toggleViewBaseChange;
    @synthesize toggleViewButtonChange;
    
    
    - (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
    {
        self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
        if (self) {
            // Custom initialization
        }
        return self;
    }
    
    - (void)viewDidLoad
    {
        [super viewDidLoad];
        // Do any additional setup after loading the view.
        
        
        //可以通过换图片,而为成自己需要的按钮。
        
         [[self navigationController] setNavigationBarHidden:YES animated:YES];
        
        toggleViewWithLabel = [[ToggleView alloc]initWithFrame:CGRectMake(0, 50, 320, 75) toggleViewType:ToggleViewTypeWithLabel toggleBaseType:ToggleBaseTypeDefault toggleButtonType:ToggleButtonTypeDefault];
        toggleViewWithLabel.toggleDelegate = self;
        
        toggleViewWithoutLabel = [[ToggleView alloc]initWithFrame:CGRectMake(0, 150, 320, 75) toggleViewType:ToggleViewTypeNoLabel toggleBaseType:ToggleBaseTypeDefault toggleButtonType:ToggleButtonTypeDefault];
        toggleViewWithoutLabel.toggleDelegate = self;
        
        toggleViewBaseChange = [[ToggleView alloc]initWithFrame:CGRectMake(0, 250, 320, 75) toggleViewType:ToggleViewTypeNoLabel toggleBaseType:ToggleBaseTypeChangeImage toggleButtonType:ToggleButtonTypeDefault];
        toggleViewBaseChange.toggleDelegate = self;
        
        toggleViewButtonChange = [[ToggleView alloc]initWithFrame:CGRectMake(0, 350, 320, 75) toggleViewType:ToggleViewTypeNoLabel toggleBaseType:ToggleBaseTypeDefault toggleButtonType:ToggleButtonTypeChangeImage];
        toggleViewButtonChange.toggleDelegate = self;
        
        [self.view addSubview:toggleViewWithLabel];
        [self.view addSubview:toggleViewWithoutLabel];
        [self.view addSubview:toggleViewBaseChange];
        [self.view addSubview:toggleViewButtonChange];
        
        /*label*/
        UILabel *label1 = [[UILabel alloc]initWithFrame:CGRectMake(60, 40, 200, 15)];
        UILabel *label2 = [[UILabel alloc]initWithFrame:CGRectMake(60, 140, 200, 15)];
        UILabel *label3 = [[UILabel alloc]initWithFrame:CGRectMake(60, 240, 200, 15)];
        UILabel *label4 = [[UILabel alloc]initWithFrame:CGRectMake(60, 340, 200, 15)];
        label1.text = @"Toggle with label.";
        label2.text = @"Toggle without label.";
        label3.text = @"Toggle base image change.";
        label4.text = @"Toggle button image change.";
        label1.backgroundColor = [UIColor clearColor];
        label2.backgroundColor = [UIColor clearColor];
        label3.backgroundColor = [UIColor clearColor];
        label4.backgroundColor = [UIColor clearColor];
        label1.font = [UIFont boldSystemFontOfSize:14];
        label2.font = [UIFont boldSystemFontOfSize:14];
        label3.font = [UIFont boldSystemFontOfSize:14];
        label4.font = [UIFont boldSystemFontOfSize:14];
        label1.alpha = 0.7f;
        label2.alpha = 0.7f;
        label3.alpha = 0.7f;
        label4.alpha = 0.7f;
        label1.textAlignment = 1;
        label2.textAlignment = 1;
        label3.textAlignment = 1;
        label4.textAlignment = 1;
        
        [self.view addSubview:label1];
        [self.view addSubview:label2];
        [self.view addSubview:label3];
        [self.view addSubview:label4];
        
        [toggleViewBaseChange setSelectedButton:ToggleButtonSelectedRight];
        [toggleViewButtonChange setSelectedButton:ToggleButtonSelectedRight];
        
    }
    
    #pragma -mark - ToggleViewDelegate
    
    - (void)selectLeftButton
    {
        NSLog(@"LeftButton Selected");
    }
    
    - (void)selectRightButton
    {
        NSLog(@"RightButton Selected");
    }
    
    - (void)didReceiveMemoryWarning
    {
        [super didReceiveMemoryWarning];
        // Dispose of any resources that can be recreated.
    }
    复制代码

     

  • 相关阅读:
    维护IBM DB2数据库所应了解的底子内情知识6
    维护IBM DB2数据库所应了解的根本知识2
    教你疾速掌握DB2数据库中的相关呼吁1
    疾速把握IBM DB2数据库的常用操纵指令2
    维护IBM DB2数据库所应看法的根底常识1
    维护IBM DB2数据库所应了解的根蒂基本常识9
    维护IBM DB2数据库所应懂得的根基常识7
    维护IBM DB2数据库所应了解的根柢常识11
    疾速把握IBM DB2数据库的常用操纵指令3
    维护IBM DB2数据库所应领会的基本常识8
  • 原文地址:https://www.cnblogs.com/yang-guang-girl/p/5782687.html
Copyright © 2011-2022 走看看