TTASelectButton
文件大小: unknow
源码售价: 5 个金币 积分规则     积分充值
资源说明:A custom button with a popup text selector
TTASelectButton
===============

A custom button control with a popup text selector, it's intended use is for iPad applications that want to conserve on space.

**Example Usage**

```objective-c
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil {
    self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
    if (self) {
        _answers = [[NSArray alloc] initWithObjects: @"Battleship Grey", @"Really long color name here", @"Red", @"Orange", @"Yellow", @"Green", @"Blue", @"Indigo", @"Voilet", nil];
        _selectButton = [[TTASelectButton alloc] initWithFrame:CGRectMake(20.0f, 20.0f, 120.0f, 40.0f)];
        [_selectButton setPickerData:_answers];
        [self.view addSubview:_selectButton];
    }
    return self;
}
```

本源码包内暂不包含可直接显示的源代码文件,请下载源码包。