with-cocoa ( quot -- ) (original) (raw)

with-cocoa ( quot -- )
Cocoa bridge » Cocoa application utilities

Prev: with-autorelease-pool ( quot -- )

Vocabulary
cocoa.application

Inputs

quot a quotation

Outputs
None

Word description
Sets up an autorelease pool, initializes the NSApplication singleton, and calls the quotation.

Definition

USING: kernel ;

IN: cocoa.application

: with-cocoa ( quot -- )
[ NSApp drop call ] with-autorelease-pool ; inline