Appirater.AppEnteredForeground C# (CSharp) Method

AppEnteredForeground() public method

public AppEnteredForeground ( bool canPromptForRating ) : void
canPromptForRating bool
return void
    public void AppEnteredForeground(bool canPromptForRating)
    {
        NSThread t = new NSThread (this, new Selector (SELECTOR_INCREMENT_AND_RATE), NSNumber.FromBoolean (canPromptForRating));
        t.Start ();
    }

Usage Example

Exemplo n.º 1
0
 public override void WillEnterForeground(UIApplication application)
 {
     Apprater.AppEnteredForeground(false);
 }