Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Adding a UIPickerView to a UITableView cell

I am trying to add a pickerView to a row in my table view, but after doing this, all I see is a black rectangle inside the cell.

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {

static NSString *MyIdentifier = @"MyIdentifier";

UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:MyIdentifier];
if(cell == nil) {       
    cell = [[[UITableViewCell alloc] initWithFrame:CGRectZero reuseIdentifier:MyIdentifier] autorelease];
    pickerView = [[[UIPickerView alloc] initWithFrame:CGRectMake(0.0, 0.0, 200, 300)] autorelease];         
    [cell.contentView addSubview:pickerView];
    }
}

I really don't have a clue how to solve this. Can anyone help me, please?

like image 989
steve Avatar asked Jan 20 '23 05:01

steve


1 Answers

May be this can help: DateCell with TableViewController

like image 141
Cannon Avatar answered Jan 30 '23 19:01

Cannon