I have a section in UITableView which has multiple rows. I wish to get the last row or the last cell of the section to add a disclosure indicator on it.
One way I am
You can get it from your datasource from which you set in delegate methods, the datasource you assign in numberOfRowsInSection method.
numberOfRowsInSection
[arrayStores lastObject];
so in cellForRowAtIndexPath method you can easily check it,
cellForRowAtIndexPath