Esempio n. 1
0
        public IDisposable AddObserver(NSString key, NSKeyValueObservingOptions options, Action <NSObservedChange> observer)
        {
            var o = new Observer(this, key, observer);

            AddObserver(o, key, options, o.Handle);
            return(o);
        }
Esempio n. 2
0
 public virtual void AddObserver(NSObject observer, string forKeyPath, NSKeyValueObservingOptions options, UnsafeMutablePointer context)
 {
 }
Esempio n. 3
0
 public IDisposable AddObserver(string key, NSKeyValueObservingOptions options, Action <NSObservedChange> observer)
 {
     return(AddObserver(new NSString(key), options, observer));
 }
Esempio n. 4
0
 public virtual void AddObserver(NSObject anObserver, NSIndexSet toObjectsAtIndexes, string forKeyPath, NSKeyValueObservingOptions options, UnsafeMutablePointer context)
 {
 }