Можете ли вы помочь мне понять и исправить ошибку ниже. Я не понимаю, как CustomCellView
является подклассом UItableViewCell
. Код компилируется, но предупреждение все еще там:
Incompatible pointer type initializing 'CustomCellView *' with an expression of type `UItableViewCell`
Я получил 2-ю строку ниже, выделенную цветом:
static NSString *CellIdentifier = @"CustomCell";
CustomCellView *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];