Hi Emiliano,
All you need to do is set the cell's detailViewModalPresentationStyle property in the SCTableViewModelDelegate method called tableViewModel:willConfigureCell:forRowAtIndexPath:
- (void)tableViewModel:(SCTableViewModel *)tableViewModel
willConfigureCell:(SCTableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath
{
cell.detailViewModalPresentationStyle = UIModalPresentationCurrentContext;
}
The above will set the property of all your model cells, so no need to set this again elsewhere. Please tell me if this works well for you.