0

applicationDidBecomeActive メソッド (および同様のもの) を使用しようとしています。ObjC には多くの例がありますが、Monotouch にはありません。AppDelegate と UIViewController でオーバーライドを試みましたが、コンパイラはオーバーライドする適切なメソッドを見つけませんでした。では、これをどのように使用しますか?(タイマーと IdleTimerDisabled と組み合わせて)使用して、デバイスが通常よりも長くスリープ状態にならないようにしたい(ストップウォッチ型のアプリです)。多分私は間違った軌道に乗っています。

4

1 に答える 1

2

から継承するアプリ デリゲートではUIApplicationDelegate、これらをオーバーライドできます。

/// <summary>
/// Gets called by iOS if the app is started from scratch and is not resumed from background.
/// We have 17 seconds to leave this methos before iOS will kill the app.
/// </summary>
public override bool FinishedLaunching ( UIApplication application, NSDictionary launchOptions )

/// <summary>
/// Called if the app comes back from background or gets started. Triggered after FinishedLaunching().
/// </summary>
public override void OnActivated ( UIApplication application )

/// <summary>
/// Called if the application gets pushed to the background because the user hits the home button.
/// </summary>
public override void DidEnterBackground ( UIApplication application )

/// <summary>
/// Gets called if the app is resumed from background but NOT if the app starts first time.
/// </summary>
public override void WillEnterForeground ( UIApplication application )
于 2012-08-23T20:42:44.087 に答える