IOS开发中自定义选择框的实现代码
来源:爱站网时间:2020-12-24编辑:网友分享
项目、语言或编码习惯的不同,不同的程序员使用不同的代码片段,因此需要定制代码片段,下面爱站技术频道小编给大家介绍IOS开发中自定义选择框的实现代码,希望对你有所帮助。
项目、语言或编码习惯的不同,不同的程序员使用不同的代码片段,因此需要定制代码片段,下面爱站技术频道小编给大家介绍IOS开发中自定义选择框的实现代码,希望对你有所帮助。
效果图:
工程图:
代码:
RootViewController.h
#import#import "CYCustomMultiSelectPickerView.h" @interface RootViewController : UIViewController { 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
以上就是爱站技术频道小编给大家介绍的IOS开发中自定义选择框的实现代码,相关的操作也给大家介绍了很多,希望能帮到大家。