zoukankan      html  css  js  c++  java
  • 【代码笔记】iOS-自定义选择框

    一,效果图。

    二,工程图。

    三,代码。

    RootViewController.h

    复制代码
    #import <UIKit/UIKit.h>
    #import "CYCustomMultiSelectPickerView.h"
    
    @interface RootViewController : UIViewController
    <CYCustomMultiSelectPickerViewDelegate>
    {
        CYCustomMultiSelectPickerView *multiPickerView;
        UILabel *pickLabel;
    }
    
    @end
    复制代码

    RootViewController.m

    复制代码
    #import "RootViewController.h"
    
    @interface RootViewController ()
    
    @end
    
    @implementation RootViewController
    
    - (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.title=@"ALPickerView";
        
        pickLabel=[[UILabel alloc]initWithFrame:CGRectMake(10, 100, 100, 50)];
        pickLabel.backgroundColor=[UIColor orangeColor];
        pickLabel.textAlignment=NSTextAlignmentCenter;
        [self.view addSubview:pickLabel];
    }
    //随意点击任意处,弹出选择框
    -(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
    {
        [self initPickerView];
    }
    -(void)initPickerView
    {
        for (UIView *view in self.view.subviews) {
            if ([view isKindOfClass:[CYCustomMultiSelectPickerView class]]) {
                [view removeFromSuperview];
            }
        }
        
        multiPickerView = [[CYCustomMultiSelectPickerView alloc] initWithFrame:CGRectMake(0,[UIScreen mainScreen].bounds.size.height - 260-20, 320, 260+44)];
        multiPickerView.backgroundColor = [UIColor clearColor];
        multiPickerView.entriesArray = [NSMutableArray arrayWithObjects:@"one",@"two",@"three",@"four",@"five",@"six",@"seven", nil];
        multiPickerView.entriesSelectedArray = [NSMutableArray arrayWithObject:@"one"];
        multiPickerView.multiPickerDelegate = self;
        
        [self.view addSubview:multiPickerView];
        [multiPickerView pickerShow];
    
    }
    #pragma -mark  -picker delegate
    //点击确定要执行的操作
    -(void)returnChoosedPickerString:(NSMutableArray *)selectedEntriesArr
    {
        NSLog(@"returnChoosedPickerString");
        
        NSMutableArray* newArray = [NSMutableArray array];
        
        for (NSString* str in selectedEntriesArr) {
            
            [newArray addObject:str];
        }
        NSString *endStr = [newArray componentsJoinedByString:@","];
     
        pickLabel.text=endStr;
       
    }
    
    - (void)didReceiveMemoryWarning
    {
        [super didReceiveMemoryWarning];
        // Dispose of any resources that can be recreated.
    }
    
    
    @end
    复制代码
  • 相关阅读:
    git 配置免密上传,配置ssh key
    spring @value 为什么没有获取到值
    idea 下maven 导入本地jar,以及导入之后 java不能引用问题
    在git远程仓创建项目之后,提交本地项目的使用方法
    mysql 查询数据库参数命令
    spring Existing transaction found for transaction marked with propagation 'never' 解决
    nginx for ubuntu
    spring中for循环中事务
    面向接口编程详解(一)——思想基础
    实战MEF(5):导出元数据
  • 原文地址:https://www.cnblogs.com/yang-guang-girl/p/6558208.html
Copyright © 2011-2022 走看看