我预先填充UITableViewCell
了哪个单元格有标签和UITextField
. 假设我有一个带有标签“地图”的单元格,我想在该单元格上添加按钮,我该怎么做?
我试过了,但这不起作用。
这是代码:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"rateSheetCell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil)
{
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
}
if (indexPath.row == 0)
{
((UILabel*)[cell viewWithTag:100]).text = @"Title";
((UITextField*)[cell viewWithTag:101]).placeholder = @"Title";
((UITextField*)[cell viewWithTag:101]).text = arrayResourceColumns[indexPath.section][indexPath.row][@"resource_title"];
((UITextField*)[cell viewWithTag:101]).keyboardType = UIKeyboardTypeDefault;
}
else
{
if([arrayResourceColumns[indexPath.section][indexPath.row][@"label"] isEqualToString:@"OT ($)"]){
NSInteger desiredLabel = (NSInteger)(arrayResourceColumns[indexPath.section][indexPath.row][@"label"]);
//NSString *desiredLabel = arrayResourceColumns[indexPath.section][indexPath.row][@"label"];
NSLog(@"Label is>>>>--------%ld", (long)desiredLabel);
if (indexPath.row == desiredLabel ) {
UIButton *b = [UIButton buttonWithType:UIButtonTypeCustom];
[b setFrame:CGRectMake(0, 0, 50, 50)];
}
}
((UILabel*)[cell viewWithTag:100]).text = arrayResourceColumns[indexPath.section][indexPath.row][@"label"];
((UITextField*)[cell viewWithTag:101]).placeholder = ((UILabel*)[cell viewWithTag:100]).text;
((UITextField*)[cell viewWithTag:101]).text = arrayResourceColumns[indexPath.section][indexPath.row][@"attribute_value"];
if (indexPath.row == [arrayResourceColumns[indexPath.section] count] - 1)
{
((UITextField*)[cell viewWithTag:101]).enabled = NO;
}
}
}