Incompatible integer to pointer conversion sending nsinteger

4.4k Views Asked by At

I'm pushing to another WKInterfaceController when a row is selected but I can't seem to pass the rowIndex as context for my new controller which I would like to do.

// Push to next controller and pass rowIndex as context
- (void)table:(WKInterfaceTable *)table didSelectRowAtIndex:(NSInteger)rowIndex {
    [self pushControllerWithName:(NSString *)@"ZoomPokeController"
                         context:rowIndex];
}

This code gives the error

incompatible integer to pointer conversion sending NSInteger: implicit conversion of 'NSInteger' (aka 'int') to 'id' is disallowed with ARC.

I can change my context to nil and the build succeeds but of course then I have no context. I've taken a look at the class documentation which has helped me a lot so far and similar questions on stackoverflow but I'm stuck not knowing how to write this. Thanks for any help.

3

There are 3 best solutions below

7
On BEST ANSWER

The error

"implicit conversion of 'NSInteger' (aka 'int') to 'id' is disallowed with ARC."

Clearly says that you are passing NSInteger as a parameter where as method it suppose to be id.

In below line second parameter required id object.

[self pushControllerWithName:(NSString *)@"ZoomPokeController" context: rowIndex];

With the help of @fabian789, It is clear now that in WKInterfaceController Class Reference

that method required id object as second parameter.

enter image description here

To pass an integer there, you can convert your NSInteger to an NSNumber and pass in a second parameter.

- (void)table:(WKInterfaceTable *)table didSelectRowAtIndex:(NSInteger)rowIndex {
    NSNumber *rowValue = [NSNumber numberWithInteger:rowIndex];
    [self pushControllerWithName:@"ZoomPokeController" context: rowValue];
}

You can then in the target controller get the row index by calling integerValue on the context.

0
On

The Error clearly States what you are doing wrong, You are Sending an NSInteger type to only an integer, try declaring the context parameter as an NSInteger or use it like this,

[self pushControllerWithName:(NSString *)@"ZoomPokeController" context: (int)rowIndex];

but the earlier method is more effective

1
On

You are sending wrong parameter type. Cast the rowIndex to int Try this:

- (void)table:(WKInterfaceTable *)table didSelectRowAtIndex: (NSInteger) rowIndex {

    NSNumber *val = [NSNumber numberWithInteger: rowIndex]
    [self pushControllerWithName:@"ZoomPokeController" context: val];
}

Hope this help... :)