UITableViewをStoryboardで作成する方法は結構ありますが、プログラムだけで作成するサンプルが少なかったので共有します。 UITableViewCellのクラス階層 NSObject ↑ UIResponder ↑ UIView ↑ UITableViewCell 参考:UIKit Framework Reference UITableViewCell Class Reference 参考:custom UITableCellView programmatically using swift 参考:Creating a UITableViewCell programmatically in Swift やってみた init処理を二つ(overrideとrequired)追加する必要があるのでハマりました。 まずUITableViewCellの独自クラスを作成します。 imp