Skip to content

Instantly share code, notes, and snippets.

@jmercouris
Created October 31, 2017 21:01
Show Gist options
  • Save jmercouris/f11708a2849dfd7d27ec61c0a55c7043 to your computer and use it in GitHub Desktop.
Save jmercouris/f11708a2849dfd7d27ec61c0a55c7043 to your computer and use it in GitHub Desktop.
CL-USER> (defparameter split-view (make-instance 'ns:ns-split-view))
SPLIT-VIEW
CL-USER> (defparameter view (make-instance 'ns:ns-view))
VIEW
CL-USER> (objc:send split-view :add-arranged-sub-view view)
; Warning: OBJC:SEND, as used in (OBJC:SEND SPLIT-VIEW :ADD-ARRANGED-SUB-VIEW VIEW), is deprecated. Use #/ syntax instead.
; While executing: CCL::WARN-ABOUT-DEPRECATED-OBJC-BRIDGE-CONSTRUCT, in process repl-thread(13).
Invoking restart: Kill this thread
; Evaluation aborted on #<SIMPLE-ERROR #x3020032F4E1D>.
CL-USER> (objc:send split-view :add-arranged-subview view)
Invoking restart: Kill this thread
Invoking restart: Kill this thread
; Evaluation aborted on #<SIMPLE-ERROR #x30200330AEAD>.
CL-USER>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment