Does anyone know where I can get the class files for iOS XML-RPC that works with enabled ARC? So far I can't build by project because arc raises all kinds of exceptions.
            Asked
            
        
        
            Active
            
        
            Viewed 213 times
        
    0
            
            
        - 
                    3You can turn ARC on and off on a per-file basis if you want. http://stackoverflow.com/questions/6646052/how-can-i-disable-arc-for-a-single-file-in-a-project – EricS Mar 13 '12 at 00:38
- 
                    Also, Xcode has an automatic upgrade to ARC function. – Stephen Darlington Mar 13 '12 at 10:57
1 Answers
0
            Found that you can compile sources with the
-fno-objc-arc
flag. this makes a file with the flag compile without ARC.
 
    
    
        Matt Sich
        
- 3,905
- 1
- 22
- 26
