1. Список говнокодов пользователя bdevnameless

    Всего: 1

  2. Objective C / Говнокод #19723

    −64

    1. 01
    2. 02
    3. 03
    4. 04
    5. 05
    6. 06
    7. 07
    8. 08
    9. 09
    10. 10
    11. 11
    12. 12
    13. 13
    14. 14
    15. 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;
            }
        }
    }

    Autolayout своими руками

    bdevnameless, 30 Марта 2016

    Комментарии (1)