ASCellNode
구현 방법 3가지
Subclassing
ASDKViewController 를 사용한 Initializing
func pagerNode(_ pagerNode: ASPagerNode, nodeAt index: Int) -> ASCellNode {
let animals = allAnimals[index]
let node = ASCellNode(viewControllerBlock: { () -> UIViewController in
return AnimalTableNodeController(animals: animals)
}, didLoad: nil)
node.style.preferredSize = pagerNode.bounds.size
return node
}UIView 혹은 CALayer 를 사용한 initializing
Placeholder 보여주지 않기
UITableViewCell 의 특정 프로퍼티
Last updated
Was this helpful?