up vote 18 down vote favorite
7
share [g+] share [fb]

I'm having troubles creating a property of an array of integers in Objective C. I'm not sure whether this is even possible to do in Obj-C so I'm hoping someone can help me in finding out either how to do it correctly or provide an alternative solution.

myclass.h

@interface myClass : NSObject {

@private int doubleDigits[10];
}

@property int doubleDigits;
@end

myclass.m

@implementation myClass

    @synthesize doubleDigits;
    -(id) init {

        self = [super init];

        int doubleDigits[10] = {1,2,3,4,5,6,7,8,9,10};

        return self;
    }

    @end

When I build and run, I get the following error:

error: type of property 'doubleDigits' does not match type of ivar 'doubleDigits'

Hopefully someone can either provide a solution or steer me in the correct direction.

Thanks in advance.

link|improve this question
Is there any particular reason you want to use primitive arrays instead of NSArray? You should be careful that you don't end up reimplementing the standard data structure classes unless they don't work for you. – user57368 Jan 24 '09 at 23:15
@end (in myclass.h) doesn't need a semicolon. Also you should start your class names with an uppercase letter. – Georg Schölly Jan 24 '09 at 23:19
@unknown(google), the reason is simply I looked into it but couldn't get anything to build even close. I tried an NSArray of NSNumbers, but couldn't figure it out. @gs : sorry, that was another typo that i've corrected. Also, I agree about the class name; its actually "Fraction" in the real code. – woopstash Jan 24 '09 at 23:25
feedback

5 Answers

C arrays are not one of the supported data types for properties. See "The Objective-C Programming Language" in Xcode documentation, in the Declared Properties page:

Supported Types

You can declare a property for any Objective-C class, Core Foundation data type, or “plain old data” (POD) type (see C++ Language Note: POD Types). For constraints on using Core Foundation types, however, see “Core Foundation.”

POD does not include C arrays. See http://www.fnal.gov/docs/working-groups/fpcltf/Pkg/ISOcxx/doc/POD.html

If you need an array, you should use NSArray or NSData.

The workarounds, as I see it, are like using (void *) to circumvent type checking. You can do it, but it makes your code less maintainable.

link|improve this answer
1  
Quoting from your link: "The term POD types collectively refers to the following categories of C++ types, and encompasses both cv-qualified versions of these as well as arrays of these [§3.9, ¶10; §9, ¶4]: scalar types, [...]". – Ivan Vučica Mar 9 '11 at 11:47
feedback

This should work:

@interface MyClass
{
    int _doubleDigits[10]; 
}

@property(readonly) int *doubleDigits;

@end

@implementation MyClass

- (int *)doubleDigits
{
    return _doubleDigits;
}

@end
link|improve this answer
1  
Just to add on this, one may also want to assign to the variable. In that case, use @property(assign) and: -(void)setDoubleDigits:(int*)doubleDigits { memcpy(_doubleDigits, doubleDigits, 10*sizeof(int)); } – Ivan Vučica Mar 9 '11 at 11:50
feedback

I'm just speculating:

I think that the variable defined in the ivars allocates the space right in the object. This prevents you from creating accessors because you can't give an array by value to a function but only through a pointer. Therefore you have to use a pointer in the ivars:

int *doubleDigits;

And then allocate the space for it in the init-method:

@synthesize doubleDigits;

- (id)init {
    if (self = [super init]) {
        doubleDigits = malloc(sizeof(int) * 10);
        /*
         * This works, but is dangerous (forbidden) because bufferDoubleDigits
         * gets deleted at the end of -(id)init because it's on the stack:
         * int bufferDoubleDigits[] = {1,2,3,4,5,6,7,8,9,10};
         * [self setDoubleDigits:bufferDoubleDigits];
         *
         * If you want to be on the safe side use memcpy() (needs #include <string.h>)
         * doubleDigits = malloc(sizeof(int) * 10);
         * int bufferDoubleDigits[] = {1,2,3,4,5,6,7,8,9,10};
         * memcpy(doubleDigits, bufferDoubleDigits, sizeof(int) * 10);
         */
    }
    return self;
}

- (void)dealloc {
    free(doubleDigits);
    [super dealloc];
}

In this case the interface looks like this:

@interface MyClass : NSObject {
    int *doubleDigits;
}
@property int *doubleDigits;

Edit:

I'm really unsure wether it's allowed to do this, are those values really on the stack or are they stored somewhere else? They are probably stored on the stack and therefore not safe to use in this context. (See the question on initializer lists)

int bufferDoubleDigits[] = {1,2,3,4,5,6,7,8,9,10};
[self setDoubleDigits:bufferDoubleDigits];
link|improve this answer
This didn't yield different results. Any other ideas? – woopstash Jan 24 '09 at 23:10
I really hope it's correct this time. – Georg Schölly Jan 24 '09 at 23:57
feedback
error: type of property 'doubleDigits' does not match type of ivar 'doubleDigits'

because

int doubleDigits[10] <= array

int doubleDigits <= single integer

link|improve this answer
feedback

This works

@interface RGBComponents : NSObject {

    float components[8];

}

@property(readonly) float * components;

- (float *) components {
    return components;
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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