CocoaPods trunk is moving to be read-only. Read more on the blog, there are 10 months to go.

EBTTextFiledDropDown 1.0.1

EBTTextFiledDropDown 1.0.1

TestsTested
LangLanguage Obj-CObjective C
License MIT
ReleasedLast Release Feb 2017

Maintained by KBvsMJ--description=add cocoapods with EBTBarChartView.



  • By
  • KBvsMJ

TextField添加下拉选择菜单支持block回调

使用pod指令把类库集成到项目中:



    NSArray *result = @[@"option0",@"option1",@"option2",@"option3",@"option4",@"option5",@"option6"];
    
    [EBTTextFieldDropDownView showDrowpDownListInView:self.textField withOptionArray:result withCompleteHandler:^(NSInteger selectIndex,NSString *selectOption) {
        
        self.textField.text = nil;
        self.textField.text = [NSString stringWithFormat:@"第%ld行,内容=%@",selectIndex,selectOption];
        NSLog(@"option=%@,index =%ld",selectOption,selectIndex);
        
    }];


效果演示图

Image