[AC-1226] iOS8: TableView: Separator Insets values are not respected on the side of the title/data if the listview row contains a title/data
| GitHub Issue | n/a |
|---|---|
| Type | Bug |
| Priority | n/a |
| Status | Resolved |
| Resolution | Duplicate |
| Resolution Date | 2014-10-07T14:32:22.000+0000 |
| Affected Version/s | n/a |
| Fix Version/s | n/a |
| Components | Titanium SDK & CLI |
| Labels | n/a |
| Reporter | Ivan Skugor |
| Assignee | Steven Scott |
| Created | 2014-10-07T10:08:50.000+0000 |
| Updated | 2016-03-08T07:37:36.000+0000 |
Description
Separator Insets values are not respected in iOS 8.
To see that, run this code:
Ti.UI.backgroundColor = 'white';
var win = Ti.UI.createWindow();
var tableData = [ {title: 'Apples'}, {title: 'Bananas'}, {title: 'Carrots'}, {title: 'Potatoes'} ];
var table = Ti.UI.createTableView({
separatorInsets:{left:0,right:0},
data: tableData
});
win.add(table);
win.open();
You should see that separator has offset on left side.
Fix for tableView was included in the PR for TIMOB-17676
OK, great, thank you.