I want to select a given row in the UTTableView from a index but need to know also the section index.
int localCurrentIndexPath = 9;
NSIndexPath *scrollIndexPath = [NSIndexPath indexPathForRow:localCurrentIndexPath inSect开发者_运维知识库ion:??];
I need fill in the inSection part. Do I need to supply the inSection value?
Yes. If you only have 1 section, then use 0.
精彩评论