Reach the end of the tableview without using 'numberOfRowsInSection' delegate method iphone sdk
Posted
by neha
on Stack Overflow
See other posts from Stack Overflow
or by neha
Published on 2010-05-26T10:52:40Z
Indexed on
2010/05/26
11:01 UTC
Read the original article
Hit count: 237
Hi all,
I want to add a view after the last cell of tableview. I need to define the frame for it. If I want to add something before the first cell, then I can set the frame as
refreshHeaderView = [[EGORefreshTableHeaderView alloc] initWithFrame:CGRectMake(0.0f, 0.0f - self.view.bounds.size.height,320.0f, self.view.bounds.size.height)];
But how to find the y coordinate of the frame of view to be set after the last cell.
Thanx in advance.
© Stack Overflow or respective owner