TableView


tableView shadow
tableView.layer.masksToBounds;
        tableView.clipsToBounds






- (void)tableView:(UITableView *)tableView 
commitEditingStyle:(UITableViewCellEditingStyle)editingStyle 
forRowAtIndexPath:(NSIndexPath *)indexPath {
    
}



//	响应单元格操作
- (UITableViewCellEditingStyle)tableView:(UITableView *)tv editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath {

	return UITableViewCellEditingStyleDelete;
	//不能是UITableViewCellEditingStyleNone
}


- (void)tableView:(UITableView *)tableView willBeginEditingRowAtIndexPath:(NSIndexPath *)indexPath { 
	NSLog(@"BeginEditingRow");
}
- (void)tableView:(UITableView *)tableView didEndEditingRowAtIndexPath:(NSIndexPath *)indexPath { 
	NSLog(@"EndEditingRow");
}

你可能感兴趣的:(tableview)