- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
-(void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath{
//cell.textLabel.font = [UIFont fontWithName:@"Arial" size:10.0f];
if([indexPath row] == ((NSIndexPath*)[[tableView indexPathsForVisibleRows] lastObject]).row)
{
CGSize iOSDeviceScreenSize = [[UIScreen mainScreen] bounds].size;
if (iOSDeviceScreenSize.height < 568)
{
CGRect newFrame = tableView.frame;
newFrame.size.height=iOSDeviceScreenSize.height;
tableView.frame=newFrame;
}
}
}