摘要:
tableview 选中一行后,不显示选中颜色 千万不要将tableview的allowsSelection设置成NO,那样的话可能导致tableview不能响应点击动作。 应该使用:cell.selectionStyle = UITableViewCellSelectionStyleNone; 这 阅读全文
摘要:
原理: tableview的调用 -(UITableViewCell*)tableView:(UITableView*)tableView cellForRowAtIndexPath:(NSIndexPath*)indexPath方法 判断indexPath.row和服务器每页返回的数据的count 阅读全文