UITableView Using Swift

前端 未结 10 1478
温柔的废话
温柔的废话 2020-12-08 07:27

My TapCell1.swift

This is Custom UITableViewCell View

import UIKit

class TapCell1: UITableViewCell
{
    @IBOutlet var         


        
10条回答
  •  星月不相逢
    2020-12-08 08:23

    Try this following code:

    var cell = tableView.dequeueReusableCell(withIdentifier: "CustomCellTableView") as? CustomCellTableView
    

提交回复
热议问题