iOS/Swift 오류 찾아 삼만시간

[Swift] TableViewCell을 SwipeTableViewCell로 cast할 수 없을 때

Chafle 2022. 10. 21. 17:37
반응형

Could not cast value of type 'UITableViewCell' (0x11e2d8e70) to 'SwipeCellKit.SwipeTableViewCell' (0x10536c138).

2022-10-21 16:01:54.179690+0900 Todoey[84823:1886981] Could not cast value of type 'UITableViewCell' (0x11e2d8e70) to 'SwipeCellKit.SwipeTableViewCell' (0x10536c138).

Could not cast value of type 'UITableViewCell' (0x11e2d8e70) to 'SwipeCellKit.SwipeTableViewCell' (0x10536c138).

 

 

identity inspector에 상속을 받아야하는 클래스를 지정할 수 있다.

 

해당 TableViewCelld에 가서 

 

 

 

설정해주면 된다.

 

 

 

이렇게 하면 해당 ViewController는 더이상 UITableViewController를 상속받지 않게 된다.

반응형