首页 > 代码库 > 下拉选项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