YNExpandableCell icon indicating copy to clipboard operation
YNExpandableCell copied to clipboard

expandCellWithHeightAt method not calling

Open sagargondaliya opened this issue 7 years ago • 0 comments

While I am setting YNTableViewDelegate then tableview datasource are not getting called and tableview will blank. If I remove your delegate then tableview datasource working.

`@IBOutlet weak var tableVIewOptions: YNTableView!

override func viewDidLoad() {
    super.viewDidLoad()
    
    self.tableVIewOptions.ynDelegate = self
    self.tableVIewOptions.dataSource = self
    self.tableVIewOptions.delegate = self
    self.tableVIewOptions.ynTableViewRowAnimation = .top
    
    //hide empty rows
    tableVIewOptions.tableFooterView = UIView()
}`

sagargondaliya avatar Nov 11 '17 18:11 sagargondaliya