Appirater.AppEnteredForeground C# (CSharp) Méthode

AppEnteredForeground() public méthode

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

Usage Example

Exemple #1
0
 public override void WillEnterForeground(UIApplication application)
 {
     Apprater.AppEnteredForeground(false);
 }