1. Objective C / Говнокод #17101

    −382

    1. 01
    2. 02
    3. 03
    4. 04
    5. 05
    6. 06
    7. 07
    8. 08
    9. 09
    10. 10
    11. 11
    if (present) {
            // only if not pull down
            _isLoading = !self.refreshControl.isRefreshing;
            
            self.tableView.userInteractionEnabled = NO;
        }
        if (!present) {
            _isLoading = NO;
            
            self.tableView.userInteractionEnabled = YES;
        }

    Запостил: stanislaw, 12 Ноября 2014

    Комментарии (2) RSS

    • Верстка сбилась при публикации, остальное - без комментариев.
      Ответить
      • _isLoading = present && !self.refreshControl.isRefreshing;
        self.tableView.userInteractionEnabled = !present;
        Ответить

    Добавить комментарий