很多时候我们都会用到下拉列表框,闲着没事自己实现了一个共享之。
代码如下:
//
// CLOCombobox.h
// CLOComboboxText
//
// Created by Cloay on 12-8-9.
// Copyright (c) 2012年 __MyCompanyName__. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface CLOCombobox : UIView<UITableViewDelegate, UITableViewDataSource>{
NSArray *array;
UITextField *textField;
UITableView *comboboxItems;
}
- (id)initWithFrame:(CGRect)frame withItems:(NSArray *)items withSuperView:(UIView *)view;
@end
实现如下:
//
// CLOCombobox.m
// CLOComboboxText
//
// Created by Cloay on 12-8-9.
// Copyright (c) 2012年 __MyCompanyName__. All rights reserved.
//
#import "CLOCombobox.h"
#define itemHeight 35
#define tableviewHeight 180
@implementation CLOCombobox
- (id)initWithFrame:(CGRect)frame
{
self = [super initWithFrame:frame];
if (self) {