TapActionCell

open class TapActionCell : UITableViewCell

A UITableViewCell subclass with the title text center aligned.

Initializer

  • Overrides UITableViewCell‘s designated initializer.

    Declaration

    Swift

    public override init(style: UITableViewCell.CellStyle, reuseIdentifier: String?)

    Parameters

    style

    Unused. It always uses UITableViewCellStyle.default.

    reuseIdentifier

    A string used to identify the cell object if it is to be reused for drawing multiple rows of a table view.

    Return Value

    An initialized TapActionCell object.

  • Overrides the designated initializer that returns an object initialized from data in a given unarchiver.

    Declaration

    Swift

    public required init?(coder aDecoder: NSCoder)

    Parameters

    aDecoder

    An unarchiver object.

    Return Value

    self, initialized using the data in decoder.