dzenbot / DZNEmptyDataSet

A drop-in UITableView/UICollectionView superclass category for showing empty datasets whenever the view has no content to display
https://www.cocoacontrols.com/controls/dznemptydataset
MIT License
12.09k stars 1.73k forks source link

自定义视图,点击按钮控件无反应 #441

Closed Link-Start closed 5 years ago

Link-Start commented 5 years ago

发现点击到的是 DZNEmptyDataSetView 无法点击到按钮 怎么解决

Jyhwenchai commented 5 years ago
  1. 是否实现了 - (CGSize)intrinsicContentSize
  2. 检查下视图的布局中的按钮是否在自定义的视图frame范围内, 可以用 xcode 自带工具查看或者使用 reveal
Link-Start commented 5 years ago

多谢大哥,在自定义View中实现 - (CGSize)intrinsicContentSize 这个方法后,可以点击了,谢谢