Alert View показывает Много раз не один раз

Я создаю UIAlertView в своей функции, проблема в том, что он показывает много времени при запуске функции, как я могу создать if заявление, чтобы показать только один раз, как будто UIAlertView шоу не показывают больше. в объективе -C

- (void)showAlert {

    _myAlertView = nil;
    _myAlertView = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"Call_On_Hold",nil)
                                              message:NSLocalizedString(@"Please_Wait",nil)
                                             delegate:self
                                    cancelButtonTitle:NSLocalizedString(@"Close_call",nil)
                                    otherButtonTitles:nil, nil];
    _myAlertView.tag = myAlertViewsTag;

    [_myAlertView show];

}

Вот функция, которую мой UIAlertView появляется постоянно, а не один раз.

- (void) trafficTimerRun:(NSTimer*)theTimer
{
    ++ trafficTimerTicks;

    pjmedia_rtcp_stat stat;

    if (!get_stream_info([call_id intValue], &stat)) {
        return;
    }

    LogDebug(TAG_SIP, @"Got %d bytes on stream 0 (previous: %d)", stat.rx.bytes, prev_bytes);

    if (stat.rx.bytes == prev_bytes) {
        if (trafficTimerTicks >= 10) {

            // Steve-note: Here we need to show a pop-up message when the call in on hold when the trafficTimerTicks run.
            [self showAlert];

            LogError(TAG_SIP, @"No traffic received, hanging up");

            // [theTimer invalidate];
            // broken = YES; Steve note: The call shouldnt broke.
            // [self hangup]; Steve note: The call shouldnt hangup.
        }
    }
}

заранее спасибо.

1 ответ

Решение

Используйте логическое значение:

bool alertIsShowing = false;

и в вашем методе обновления вставьте что-то вроде этого:

if (trafficTicks > 10){
 if (!alertIsShowing){
     alertIsShowing = true;
     [self showAlert];
   }
}

Затем, когда ваше предупреждение будет отклонено, сбросьте логическое значение:

alertIsShowing = false;
Другие вопросы по тегам