Exemplo n.º 1
0
        public NSObject Schedule(Action <float> callback, float interval = 0, bool paused = false, uint repeat = RepeatForever, float delay = 0)
        {
            var token = new NSActionDispatcherWithFloat(callback);

            ScheduleSelector(NSActionDispatcherWithFloat.Selector, token, interval, paused, repeat, delay);
            return(token);
        }
Exemplo n.º 2
0
 public NSObject Schedule(Action<float> callback, float interval=0, bool paused=false, uint repeat=RepeatForever, float delay=0)
 {
     var token = new NSActionDispatcherWithFloat (callback);
     ScheduleSelector (NSActionDispatcherWithFloat.Selector, token, interval, paused, repeat, delay);
     return token;
 }