public void SetFadeTimer(NSTimer timer)
 {
     if (this.fadeTimer != timer)
     {
         if (this.fadeTimer != null)
         {
             this.fadeTimer.Invalidate();
             this.fadeTimer.SafeRelease();
         }
         this.fadeTimer = timer.SafeRetain();
     }
 }