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.
The error
Clearly says that you are passing
NSInteger
as a parameter where as method it suppose to beid
.In below line second parameter required
id
object.With the help of @fabian789, It is clear now that in WKInterfaceController Class Reference
that method required
id
object as second parameter.To pass an integer there, you can convert your
NSInteger
to anNSNumber
and pass in a second parameter.You can then in the target controller get the row index by calling
integerValue
on the context.