Re: adding arc to a fundamentally non-arc project

2017-07-17 Thread Jean-Daniel
Did you switch from 32bit to 64bit ? Or enable the ‘symbol hidden by default’ build setting. The symbol visibility model is completely different on 64 bit and classes must be exported to be visible by other modules. > Le 15 juil. 2017 à 23:00, Matthew Weinstein a écrit : > > Trying to move fro

Re: adding arc to a fundamentally non-arc project

2017-07-15 Thread Alex Zavatone
Have you added the proper lib to your target? Whatever lib file holds AVKit. > On Jul 15, 2017, at 4:00 PM, Matthew Weinstein wrote: > > Trying to move from QTKit to AVKit. Compiling on El Capitan (at the moment). > So I have a handler that is arc and handles all the AVKit stuff and compiled

Re: adding arc to a fundamentally non-arc project

2017-07-15 Thread Jens Alfke
> On Jul 15, 2017, at 2:00 PM, Matthew Weinstein wrote: > > Trying to move from QTKit to AVKit. Compiling on El Capitan (at the moment). > So I have a handler that is arc and handles all the AVKit stuff and compiled > with the -fobjc-arc flag in the build phases... I create and assign the > h

adding arc to a fundamentally non-arc project

2017-07-15 Thread Matthew Weinstein
Trying to move from QTKit to AVKit. Compiling on El Capitan (at the moment). So I have a handler that is arc and handles all the AVKit stuff and compiled with the -fobjc-arc flag in the build phases... I create and assign the handler to a document object using the myhandler = [[MWArcHandler all