I am using the below code; it works but the text appears with few pixels left padding/margin.
How can I remove/adjust the cell padding/margin?
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
UITableViewCell *cell = [resultaterTableView dequeueReusableCellWithIdentifier:CellIdentifier];
cell.textLabel.text = [resultater objectAtIndex:indexPath.row];
}