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