码迷,mamicode.com
首页 > 其他好文 > 详细

下拉选项cell

时间:2014-11-28 16:06:13      阅读:144      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   io   ar   color   sp   文件   on   

效果图:

bubuko.com,布布扣

工程图:

bubuko.com,布布扣

此代码要导入第三方库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

标签:style   blog   http   io   ar   color   sp   文件   on   

原文地址:http://www.cnblogs.com/yang-guang-girl/p/4128561.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!