私は以下のコードを使用しています。それは機能しますが、テキストは数ピクセル左のパディング/マージンで表示されます。
セルのパディング/マージンを削除/調整するにはどうすればよいですか?
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
UITableViewCell *cell = [resultaterTableView dequeueReusableCellWithIdentifier:CellIdentifier];
cell.textLabel.text = [resultater objectAtIndex:indexPath.row];
}