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

    Всего: 2

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

    −35

    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
    16. 16
    - (void) findFileTimeout: (NSTimer *) t {
        
        [detectFileTimerTimeout invalidate];
        detectFileTimerTimeout = nil;
        
        [detectFileTimer invalidate];
        detectFileTimer = nil;
        
        [WriteToLog WriteToLog:@"Timeout reached!"];
        [WriteToLog WriteToLog:@"Closing..."];
        
        exit(0);
        [NSApp terminate:nil];
        [[NSApplication sharedApplication] terminate:nil];
        
    }

    Выход по таймауту

    EMax, 14 Января 2016

    Комментарии (2)
  3. Objective C / Говнокод #18205

    −405

    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
    /**
    *\brief isinteger
     *isinteger function will check if the NSString is a number or not
     * \Param    NSSting*
     * \return    true or false
     */
    bool isinteger(NSString* theString)
    {
        int myInt;
        NSScanner *theScanner = [NSScanner scannerWithString:theString];
        if ([theScanner scanInt:&myInt] && [theScanner isAtEnd] )
            return true;
        else
            return false;
    }

    Такой чудо-код встретился в проекте.

    EMax, 20 Мая 2015

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