Asyncdisplaykit: [ASTableNode] separator style

Created on 10 Sep 2016  路  3Comments  路  Source: facebookarchive/AsyncDisplayKit

I want to get rid of the separate of ASTableNode just like UITableView 's UITableViewCellSeparatorStyleNone,How to do

Community Debugging

Most helpful comment

@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

All 3 comments

@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

Was this page helpful?
0 / 5 - 0 ratings