0
iPadのNativeScriptでUIPrinterPickerControllerを呼び出そうとしています。私は確認する必要があり、コールを突き止めたのだが、ここにある:私はrect
のparamを見てきた例ではNativeScriptのself.viewとself.view.frameへの参照を取得する方法
UIPrinterPickerController.presentFromRectInViewAnimatedCompletionHandler(rect: CGRect, view: UIView, animated: boolean, completion: (arg1: UIPrinterPickerController, arg2: boolean, arg3: NSError) => void): boolean;
はself.view.frame
への参照であるとview
paramがself.view
への参照です。 NativeScriptでこれらの参照を見つけるにはどうすればよいですか?私はui.view
モジュールを試しましたが動作しません。私はpageLoaded
イベントからargs.object
を試しても動作しません。どんな助けもありがとう。
// My code here
if (! UIDevice.currentDevice().userInterfaceIdiom == UIUserInterfaceIdiomPad) {
found = printPicker.presentAnimatedCompletionHandler(false, completionHandler);
} else {
found = printPicker.presentFromRectInViewAnimatedCompletionHandler(view.frame, view, false, completionHandler);
}
お返事ありがとうございます。これは私の答えにつながった。しかし、 'page.ios'は私に' UIViewController'のインスタンスを与えていたので、 'uiView.view'と' uiView.view.frame'を実行するだけでした。 – swatkins