How do I implement this?
I want to 开发者_如何转开发implement that cell that says "Show Details". I was thinking maybe to make a custom tableview cell specifically for that cell. But if there is there another way?
Just return a well configured cell for the last cell number, in the the first section. This looks like a normal cell, with a simple label.
This is very simple. Just add UIButton custom type on second row of 1st section and when you tap on it just show another cells. and reload tableview.
[cell addSubView:btnShowDetails];
精彩评论