4

ユーザーが telprompt からいつアプリに戻ってきたかを判断する方法はありますか? キャンセルを押した場合は何もしたくありませんが、アプリに戻ったときに呼び出しを押した場合は、アクションを実行したいと思います。ありがとう。

4

1 に答える 1

0
NSNotificationCenter * center =
    [NSNotificationCenter defaultCenter];

    [center addObserverForName:UIApplicationDidBecomeActiveNotification
                        object:nil
                         queue:[NSOperationQueue mainQueue]
                    usingBlock:^(NSNotification *note)
    {
        // use instance flag to know
        if (self.isBackfromCalling)
        {
            // do some stuff
        }
    }];
于 2013-07-19T13:33:35.893 に答える