Hi All -
I see in the ios6 2.1.3 release notes that the grouped table view default background should continue to work with ios6. However, for the following code, which was showing striped background for ios5, I see a white background and not the striped background
var tableview = Titanium.UI.createTableView({ style:Titanium.UI.iPhone.TableViewStyle.GROUPED, showVerticalScrollIndicator:false, rowBackgroundColor:'white', data:data });
I tried adding backgroundColor = transperant as suggested by some fellow programmers to others in forums but that didnt help either.
var tableview = Titanium.UI.createTableView({ style:Titanium.UI.iPhone.TableViewStyle.GROUPED, backgroundColor:'transparent', showVerticalScrollIndicator:false, rowBackgroundColor:'white', data:data });
I am using the latest Appcelerator SDK, here are the details.
Titanium Mobile SDK Version: 2.1.3 Mobile SDK Modules API Version:2 Mobile SDK Timestamp: 10/02/12 16:16 Mobile SDK Build Number: 15997d0
xcode - 4.5.1 with ios 6
Can someone please tell me what am I missing ?
1 Answer
Supposedly TI-11286 has been fixed. I'd try the example code in the ticket, and add more of your code until you figure out the problem.
Your Answer
Think you can help? Login to answer this question!