У меня вопрос: Как программно установить NSIndexPath.
Например, я добавляю метод:
- (void)setDefaultValue{
tempIndexPath = [NSIndexPath indexPathForRow:0 inSection:1];
}
В делегате tableView -cellForRowAtIndexPath Я хочу сравнить дваindexPath
if ([indexPath isEqual: tempIndexPath]) ...
Но в этом случае мой tempIndexPath = null (я думаю - потому что это объект autorelease)
Как установить NSIndexPath в этом случае?
Спасибо, всем!