You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A template layout cell is created by -dequeueReusableCellWithIdentifier: method, it means that you MUST have registered this cell reuse identifier by one of:
A prototype cell of UITableView in storyboard.
Use -registerNib:forCellReuseIdentifier:
Use -registerClass:forCellReuseIdentifier:
Usually it is also possible to call dequeueReusableCellWithIdentifier and create a cell in the same place if necessary but you forbid that
The text was updated successfully, but these errors were encountered:
From your readme:
Usually it is also possible to call
dequeueReusableCellWithIdentifier
and create a cell in the same place if necessary but you forbid thatThe text was updated successfully, but these errors were encountered: