左右滑动选择文本数据
CGFloat offset = 49.f; HorizontalPickerView *horizontalPickerView = [[HorizontalPickerView alloc] initWithFrame:CGRectMake(offset, offset, CGRectGetWidth(self.view.frame)-2*offset, offset) minimumLineSpacing:8]; [horizontalPickerView setBackgroundColor:[UIColor grayColor]]; [horizontalPickerView setResource:array]; horizontalPickerView.horizontalPickerViewSelect = ^(NSString *object) { NSLog(@"object = %@", object); }; [self.view addSubview:horizontalPickerView];