iOS中的UIPickerView内的UITableView

我很困惑,我需要实现一个多类型选择选择器,所以为此我正在这样做:

caratFromPicker = [[UIPickerView alloc] init];
    caratTable = [[UITableView alloc]initWithFrame:caratFromPicker.frame style:UITableViewStylePlain];
    caratTable.delegate = self;
    caratTable.dataSource = self;
    caratTable.bounces = YES;

    UIBarButtonItem *doneButton = [[UIBarButtonItem alloc] initWithTitle:@"Done" style:UIBarButtonItemStyleDone target:self action:@selector(done)];
    UIToolbar *toolBar = [[UIToolbar alloc]initWithFrame:CGRectMake(0,self.view.frame.size.height-caratFromPicker.frame.size.height-50,self.view.frame.size.width,50)];
    [toolBar setBarStyle:UIBarStyleBlackOpaque];
    NSArray *toolbaritems = [NSArray arrayWithObjects:doneButton,nil];
    [toolBar setItems:toolbaritems];
    price1.inputView = caratFromPicker;
    price1.inputAccessoryView = toolBar;
    [caratFromPicker setDataSource: self];
    [caratFromPicker setDelegate: self];
    caratFromPicker.showsSelectionIndicator = YES;//loadFromPicker
    [caratFromPicker addSubview:caratTable];

并将UITableView委托实现为:

-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView{
    return 1;
}

-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
     return [caratFromArray count];
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static Nsstring *CellIdentifier = @"Cell";
    //UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];

    if (cell == nil) {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
    }

    tableView.separatorStyle = UITableViewCellSeparatorStyleNone;

    cell.textLabel.text = [caratFromArray objectAtIndex:indexPath.row];

    return cell;
}

这是相同的截图:

enter image description here

但我的问题是我无法滚动tableview来查看下一个值.

解决方法

您可以尝试使用UIPicker委托方法

- (UIView *)pickerView:(UIPickerView *)pickerView viewForRow:(NSInteger)row forComponent:(NSInteger)component reusingView:(UIView *)theView{
    return YourTableView;
}

将tableView设置为行的视图.

相关文章

在有效期内的苹果开发者账号(类型为个人或者公司账号)。还...
Appuploader官网--IOS ipa上传发布工具,证书制作工具跨平台...
苹果在9月13号凌晨(北京时间)发布 iOS 16,该系统的设备可...
计算机图形学--OpenGL递归实现光线追踪
Xcode 14打出来的包在低版本系统运行时会崩溃,报错信息是Li...