class UITableView

Public Instance Methods

empty?() click to toggle source
# File lib/project/test.rb, line 572
                def empty?
                        cells=0
numberOfSections.times do |section|
        cells+=numberOfRowsInSection(section)
end
cells==0
                end