mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-15 02:54:11 +08:00
17 lines
508 B
TypeScript
17 lines
508 B
TypeScript
/**
|
|
* @module "ui/utils"
|
|
*/ /** */
|
|
|
|
import { View } from "./core/view";
|
|
export module ios {
|
|
/**
|
|
* Gets actual height of a [UIView](https://developer.apple.com/library/ios/documentation/UIKit/Reference/UIView_Class/) widget.
|
|
* @param uiView - An instance of UIView.
|
|
*/
|
|
export function getActualHeight(uiView: any /* UIView */): number;
|
|
|
|
export function _layoutRootView(rootView: View, parentBounds: any /* CGRect */): void;
|
|
|
|
export function getStatusBarHeight(): number;
|
|
}
|