import common = require("./switch-common"); import dependencyObservable = require("ui/core/dependency-observable"); import proxy = require("ui/core/proxy"); function onCheckedPropertyChanged(data: dependencyObservable.PropertyChangeData) { var swtch = data.object; swtch.ios.on = data.newValue; } // register the setNativeValue callbacks (common.Switch.checkedProperty.metadata).onSetNativeValue = onCheckedPropertyChanged; global.moduleMerge(common, exports); class SwitchChangeHandlerImpl extends NSObject { private _owner: WeakRef; public static initWithOwner(owner: WeakRef): SwitchChangeHandlerImpl { let handler = SwitchChangeHandlerImpl.new(); handler._owner = owner; return handler; } public valueChanged(sender: UISwitch) { let owner = this._owner.get(); if (owner) { owner._onPropertyChangedFromNative(common.Switch.checkedProperty, sender.on); } } public static ObjCExposedMethods = { 'valueChanged': { returns: interop.types.void, params: [UISwitch] } }; } export class Switch extends common.Switch { private _ios: UISwitch; private _handler: NSObject; constructor() { super(); this._ios = new UISwitch(); this._handler = SwitchChangeHandlerImpl.initWithOwner(new WeakRef(this)); this._ios.addTargetActionForControlEvents(this._handler, "valueChanged", UIControlEvents.UIControlEventValueChanged); } get ios(): UISwitch { return this._ios; } }