IN: cocoa-pdfkit USING: alien cocoa compiler errors io kernel math objc objc-NSObject objc-NSWindow objc-PDFDocument objc-PDFView ; : ( url -- document ) [autorelease] PDFDocument [alloc] swap [initWithURL:] [autorelease] ; : ( document -- view ) PDFView [alloc] 0 0 500 500 [initWithFrame:] [ swap [setDocument:] ] keep ; "PDFKit demo" 10 10 500 500 dup "http://factorcode.org/handbook.pdf" [setContentView:] f [makeKeyAndOrderFront:] event-loop