Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have this code and need to port it to arc but I dont know how:

        case FIELDTYPE_OBJECT:
            className = [fieldType substringWithRange:NSMakeRange(2, [fieldType length]-3)];
            rel =  class_createInstance(NSClassFromString(className), sizeof(unsigned));
            Class theClass = [rel class];

            if ([rel isKindOfClass:[DbObject class]]) {
                //Load the record...
                NSInteger Id = [rs intForColumn:[theClass relationName]];
                if (Id==0) {
                    fieldValue = [rel init];
                } else {                    
                    Db *db = [Db currentDb];

                    fieldValue = [db loadById: theClass theId:Id];
                }
            }
            break;

The error is:

error: 'class_createInstance' is unavailable: not available in automatic reference counting mode

How replace it?

I need to build class objects in runtime.

share|improve this question

2 Answers

The most straightforward solution is to add another file which has -fno-objc-arc set on it, and which has a function which calls class_createInstance() as above.

share|improve this answer

Try this:

#include <objc/objc-runtime.h>
id object = [[NSClassFromString(@"TheClassName") alloc] init];
share|improve this answer
That won't handle the extraBytes parameter to class_createInstance – Catfish_Man Mar 7 at 5:00
Is this still required when using alloc init ? – Jasper Blues Mar 7 at 5:02
If the code uses the extra bytes, yes. Otherwise, no – Catfish_Man Mar 7 at 5:11
Ah yes, indeed. Extra bytes is, well, extra bytes in addition to what's normally alloc'd. . . Just voted on Rob Rix's solution. – Jasper Blues Mar 7 at 5:28

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.