I have searched and found a previous answer for this question here. The problem is that the answer marked as a solution does not work. Inside my tableView:didSelectRowAtIndexPath: method, I have

NSInteger *currentRow = indexPath.row;

and it gives me the warning 'Incompatible integer to pointer conversion initializing 'NSInteger *'(aka 'int *') with an expression of type 'NSInteger' (aka 'int').

Any help is appreciated!

link|improve this question

79% accept rate
feedback

1 Answer

up vote 2 down vote accepted

NSInteger is not a class, so it doesn't need an asterisk:

NSInteger currentRow = indexPath.row;
link|improve this answer
Wow, I get the 'Here's your sign' award for the day.....thanks. – tarheel Dec 18 '11 at 6:35
feedback

Your Answer

 
or
required, but never shown

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