删除TableViewCell上的左缩进

时间:2018-07-31 12:07:15

标签: uitableview indentation

这正是我的问题: Removing undesired left indent on UITableViewCell 答案是: “您是否尝试过使用带有标签的自定义单元格,并且该单元格离左边缘有要求的距离?” 不幸的是,我不知道该怎么做。 这是我的代码的一部分:

data "aws_iam_role" "ecs_task_execution_role" {
  name = "ecsTaskExecutionRole"
}

resource "aws_ecs_task_definition" "github-backup" {
  family                   = "${var.task_name}"
  requires_compatibilities = ["FARGATE"]
  network_mode             = "awsvpc"
  cpu                      = "${var.fargate_cpu}"
  memory                   = "${var.fargate_memory}"
  task_role_arn            = "${aws_iam_role.github-role.arn}"
  execution_role_arn       = "${data.aws_iam_role.ecs_task_execution_role.arn}"

  container_definitions = <<DEFINITION
  [
    {
      "cpu": ${var.fargate_cpu},
      "image": "${var.image}",
      "memory": ${var.fargate_memory},
      "name": "github-backup",
      "networkMode": "awsvpc"
    }
  ]
  DEFINITION
}

如何执行“带有标签的自定义单元格”?这是什么意思? 非常感谢你!

0 个答案:

没有答案