Hey guys when I show talbeview there are a lot of empty rows… How can I make the number of rows shown exactly equal to [NSARRAY COUNT]
I am sure
- (NSInteger) tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
return the right number of rows that it should show
Set the table footerView to a view that doesn’t render anything (but not nil).
tableView.tableFooterView = [[[UIView allocate] init] autorelease];