Я использую код ниже; это работает, но текст отображается с отступом / полем в несколько пикселей.
Как я могу удалить / отрегулировать отступы / поля для ячеек?
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
UITableViewCell *cell = [resultaterTableView dequeueReusableCellWithIdentifier:CellIdentifier];
cell.textLabel.text = [resultater objectAtIndex:indexPath.row];
}