Avatar
UITableViewCellを再利用するとき、styleがdefault以外の場合、皆さんどうしてますか? ① UITableViewCellのサブクラスをつくって、UITableViewにregisterする ② iOS6以前の方式で書く let cell = tableView.dequeueReusableCell(withIdentifier: "hogeCell", for: indexPath) ?? UITableViewCell(style: .subtitle, reuseIdentifier: "hogeCell") ③ その他 ただstyleが違うだけなのにイニシャライザだけ定義した、UITableViewCellのサブクラスつくるのが面倒なので良い方法があったりしないかな…と思った感じです。 (edited)