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
The assert in AbstractTableDataSource.swift line 182 is actually not that good. I just had a case when 1 screen is reusing generic uitableviewcell and this screen doesnt need any delegate. Atm app is crashes as this screen is not setting delegate. This should be optional IMHO.
The text was updated successfully, but these errors were encountered:
@talezion delegate should be optional - every delegate in iOS is optional :) If its mandatory, it should be part of the init method so we can avoid cases i had (in the description)
The assert in AbstractTableDataSource.swift line 182 is actually not that good. I just had a case when 1 screen is reusing generic uitableviewcell and this screen doesnt need any delegate. Atm app is crashes as this screen is not setting
delegate
. This should be optional IMHO.The text was updated successfully, but these errors were encountered: