标签不显示在 UITableView 的子视图中

Label not display in subview of UITableView

我正在用 swift3table 视图设计一个 iOS 汉堡包菜单

我想在菜单选项卡中显示通知数量。

 let pieNotifi = UIImageView(frame: CGRectMake(cell.contentView.frame.size.width-40, cell.contentView.frame.size.height/2-7, 30, 20))
            let pieLabNotifi = UILabel(frame: CGRectMake(cell.contentView.frame.size.width-40, cell.contentView.frame.size.height/2-7, 30, 20))

            let subviews = self.view.viewWithTag(100001)
            if myGlobal.unreaddot != 0 {     //just a count for notifcaiton
                if subviews == nil {

                    pieNotifi.tag = 100001;
                    cell.addSubview(pieNotifi)
                    let pieShape = pieNotifi.layer;
                    pieShape.backgroundColor = UIColor.red.cgColor
                    pieShape.cornerRadius = pieShape.bounds.width / 4

                    pieLabNotifi.textColor = UIColor.white
                    pieLabNotifi.adjustsFontSizeToFitWidth = true;
                    pieLabNotifi.minimumScaleFactor = 0.5
                    pieLabNotifi.textAlignment = NSTextAlignment.center
                    pieNotifi.addSubview(pieLabNotifi)
                    pieLabNotifi.text = String(myGlobal.unreaddot)

                }
                else{
                    pieLabNotifi.text = String(myGlobal.unreaddot)
                }

            }else{
                let subviews = cell.viewWithTag(100001)
                subviews?.removeFromSuperview()
                print("remove red dot")
            }

但是,它只显示红色层,没有标签。参考下图 enter image description here

我曾尝试设置

 .sendSubview(to back:)
 .bringSubview(toFront: )
 .layer.zPosition = 1

所有这些关键字都不适合我。

谁能建议我解决这个问题?

您没有向 UITableView 添加子视图。根据您的代码,您将向 UITableView 的单元格添加一个子视图。 尝试将子视图添加到单元格的内容视图,如:

    cell.contentView.addSubView(pieNotifi)

我认为问题出在标签的位置上。您将标签 x 坐标设为 cell.contentView.frame.size.width-40,但您想将其添加到红色图像视图中。将标签的 x 位置和 y 位置更改为 0(或您需要的任何值)将解决您的问题。我相应地修改了您的代码:

let pieNotifi = UIImageView(frame: CGRectMake(cell.contentView.frame.size.width-40, cell.contentView.frame.size.height/2-7, 30, 20)) 让 pieLabNotifi = UILabel(frame: CGRectMake(0,0, 30, 20))

        let subviews = self.view.viewWithTag(100001)
        if myGlobal.unreaddot != 0 {     //just a count for notifcaiton
            if subviews == nil {

                pieNotifi.tag = 100001;
                cell.addSubview(pieNotifi)
                let pieShape = pieNotifi.layer;
                pieShape.backgroundColor = UIColor.red.cgColor
                pieShape.cornerRadius = pieShape.bounds.width / 4

                pieLabNotifi.textColor = UIColor.white
                pieLabNotifi.adjustsFontSizeToFitWidth = true;
                pieLabNotifi.minimumScaleFactor = 0.5
                pieLabNotifi.textAlignment = NSTextAlignment.center
                pieNotifi.addSubview(pieLabNotifi)
                pieLabNotifi.text = String(myGlobal.unreaddot)

            }
            else{
                pieLabNotifi.text = String(myGlobal.unreaddot)
            }

        }else{
            let subviews = cell.viewWithTag(100001)
            subviews?.removeFromSuperview()
            print("remove red dot")
        }

也试着在 UiDebugger 中查看你的标签位置,你可能会发现标签添加在错误的位置。