mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-15 19:26:42 +08:00
8 lines
198 B
TypeScript
8 lines
198 B
TypeScript
export function dispatchToMainThread(func: () => void) {
|
|
NSOperationQueue.mainQueue.addOperationWithBlock(func);
|
|
}
|
|
|
|
export function isMainThread(): Boolean {
|
|
return NSThread.isMainThread;
|
|
}
|