码迷,mamicode.com
首页 > 其他好文 > 详细

【代码笔记】自定义开关

时间:2016-08-18 09:54:58      阅读:211      评论:0      收藏:0      [点我收藏+]

标签:

一,效果图。

技术分享

二,工程图。

技术分享

三,代码。

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.
}
技术分享

 

【代码笔记】自定义开关

标签:

原文地址:http://www.cnblogs.com/yang-guang-girl/p/5782687.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!