首页 > 代码库 > 下拉选项cell
下拉选项cell
效果图:
工程图:
此代码要导入第三方库comboBox.
代码:
RootViewController.h
#import <UIKit/UIKit.h>//加入头文件#import "ComboBoxView.h"@interface RootViewController : UIViewController{ ComboBoxView *_comboBox;}@end
RootViewController.m
- (void)viewDidLoad{ [super viewDidLoad]; // Do any additional setup after loading the view. self.navigationController.navigationBarHidden=YES; NSArray *comboBoxDatasource = [[NSArray alloc] initWithObjects:@"one", @"two", @"three", @"four", @"five", @"six", @"seven", @"eight", nil]; _comboBox = [[ComboBoxView alloc] initWithFrame:CGRectMake(20, 20, 280, 140)]; _comboBox.comboBoxDatasource = comboBoxDatasource; _comboBox.backgroundColor = [UIColor clearColor]; [_comboBox setContent:[comboBoxDatasource objectAtIndex:0]]; [self.view addSubview:_comboBox]; }
下拉选项cell
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。