【代碼筆記】自訂開關,筆記自訂開關

來源:互聯網
上載者:User

【代碼筆記】自訂開關,筆記自訂開關

一,。

二,工程圖。

三,代碼。

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.}

 

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.