Hide Table View separator on titanium
Am developing one mobile application(android, iPhone) by using Titanium from the Titanium development kit am using a control TableView (Titanium.UI.createTableView),am adding TableViewRow on the Tableview controls. On the UI, the each row is coming with a sepa开发者_开发知识库rator (default) , but according to my requirement need to hide the separator. How is poosible ?
Thanks in advance
Create TableView with Ti.UI.iPhone.TableViewSeparatorStyle.NONE:
Ti.UI.createTableView({separatorStyle:Ti.UI.iPhone.TableViewSeparatorStyle.NONE});
精彩评论