I want to get rid of the separate of ASTableNode just like UITableView 's UITableViewCellSeparatorStyleNone,How to do
@GreatLiyi - does myTableNode.tableView.separatorStyle = UITableViewCellSeparatorStyleNone not work?
Make sure to set this in didLoad (on the main thread), rather than in init: (background thread). For more on subclassing nodes, see http://asyncdisplaykit.org/docs/subclassing.html
Looks like this issue was resolved, if not, let me know.
Thancks! It works.@hannahmbanana
Most helpful comment
@GreatLiyi - does
myTableNode.tableView.separatorStyle = UITableViewCellSeparatorStyleNonenot work?Make sure to set this in
didLoad(on the main thread), rather than ininit:(background thread). For more on subclassing nodes, see http://asyncdisplaykit.org/docs/subclassing.html