Class: UITableView
- Inherits:
-
Object
- Object
- UITableView
- Defined in:
- lib/project/test.rb
Instance Method Summary collapse
Instance Method Details
#empty? ⇒ Boolean
572 573 574 575 576 577 578 |
# File 'lib/project/test.rb', line 572 def empty? cells=0 numberOfSections.times do |section| cells+=numberOfRowsInSection(section) end cells==0 end |