标签:style blog http io ar color sp 文件 on
效果图:
工程图:
此代码要导入第三方库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]; }
标签:style blog http io ar color sp 文件 on
原文地址:http://www.cnblogs.com/yang-guang-girl/p/4128561.html