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