I have a tableview(highlighted in red rectangle) that will show only 3 rows at a time, now if i have the rows more than three, then i want to notify user to scroll down the tableview to view the rest of row.
In windows we will have a physical scroll bar on the right side, but in iPhone, showing scroll bar all the time is not possible.
Can any one tell me what is the best way to notify the user to scroll when we have more row to size.
Any help will be highly appreciated
The best solution is to make the height not a multiple of the row height.
if
rowheight = 44;
thentableheight = 110;
ortableheight = 154;
, this will show if there is a visible half row, which will lead the user to scroll.