UITableView Using Swift

前端 未结 10 1479
温柔的废话
温柔的废话 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:19

    Try this following code

    var cell:CustomTableViewCell = tableView.dequeueReusableCellWithIdentifier("CustomTableViewCell") as CustomTableViewCell

    https://github.com/iappvk/TableView-Swift

提交回复
热议问题