Tableview style - remove iOS6 default striped background

You must Login before you can answer or comment on any questions.

Since iOS6, I have never had a issue with the table view striped background displaying as I have always used backgroundColor : 'transparent',.

Here is my tableview with the grouped style. How can I remove the striped background so it is transparent?

var aboutView = Titanium.UI.createTableView({
    data : connectdata1,
    style : Titanium.UI.iPhone.TableViewStyle.GROUPED,
    backgroundColor : 'transparent',
    separatorColor : '#cccccc',
    top : 585,
    zIndex: 9,
});
viewMain.add(aboutView);

— asked 8 months ago by Dave E
1 Comment
  • Hi Dave, is your problem solved with the latest 2.1.3.GA release or still facing any issue. I hope with new update to 2.1.3.GA this issue is resolved.

    — commented 8 months ago by Ashish Nigam

4 Answers

Is there a way to use the striped background still? Or is there no way to add it if we want it. I cannot find it anywhere in the documentation on how to get it back.

Your Answer

Think you can help? Login to answer this question!