ios – 如何转换此代码以检测相机焦点?

我正在尝试将用于检测相机焦点的代码从
Xcode /
Swift转换为Xamarin / C#. [办公室政治不是很好吗?]它似乎没有用,我不知道为什么.

SWIFT代码:

private var _doneFocusing = false
let kFocusKeyPath = "adjustingFocus"

// this line in my startCamera method to watch for focus:
captureDevice.addObserver(self, forKeyPath:kFocusKeyPath, options: NSKeyValueObservingOptions.New, context: nil)


override func observeValueForKeyPath(keyPath: String, ofObject object: AnyObject, change: [NSObject : AnyObject], context: UnsafeMutablePointer<Void>) {
    if keyPath == kFocusKeyPath {
        if let changeValue = change[NSKeyValueChangeNewKey] as? NSNumber {
            var adjustingFocus = (changeValue == 1)
            if adjustingFocus {
                _doneFocusing = false
            } else {
                _doneFocusing = true
            }
        }
    }
}

C#代码.根本没有调用ObserveValue方法.

private bool _doneFocusing = false;
private const string kFocusKeyPath = "FocusKeyPath";

// this line in my startCamera method to watch for focus:
_captureDevice.AddObserver(this, kFocusKeyPath, NSKeyValueObservingOptions.New, IntPtr.Zero);


public override void ObserveValue(NSString keyPath, NSObject ofObject, NSDictionary change, IntPtr context)
{
    System.Diagnostics.Debug.WriteLine(keyPath);

    if (keyPath == kFocusKeyPath)
    {
        var changeValue = change.ValueForKey(ChangeNewKey) as NSNumber;
        if (changeValue == null)
        {
            return;
        }
        var adjustingFocus = (changeValue.Int16Value == 1);
        if (adjustingFocus)
        {
            _doneFocusing = false;
        }
        else
        {
            _doneFocusing = true;
        }

    }
}

有什么我不想让这个工作正常吗?

最佳答案 不知道为什么我改变了keyPath常量,但这就是问题所在.

keyPath必须特别是“adjustFocus”

点赞