摘要: 1 /* 2 实现tableview的下拉刷新 3 tableview滑动就会触发这个方法? 4 */ 5 -(void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath 6 { 7 //当tableview下拉到最后一行的时候才触发 8 if (indexPath.row == self.m_data.count - 1) { 9 10 ... 阅读全文
posted @ 2012-12-17 17:08 仙外仙 阅读(5512) 评论(0) 推荐(2) 编辑