2012-10-24 14 views

回答

0

下面是黑客的一個!

-(void) tableView:(UITableView *)tableView didEndEditingRowAtIndexPath:(NSIndexPath *)indexPath 
{ 
    VegetableNoteCell *noteCell = (VegetableNoteCell *) [tableView cellForRowAtIndexPath:indexPath]; 

    NSArray *constraints = [noteCell.noteDescriptionLabel constraints]; 
    NSLayoutConstraint *horizontalConstraint = constraints[1]; 
    [horizontalConstraint setConstant:180.0]; 

} 

-(UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath 
{ 

    VegetableNoteCell *noteCell = (VegetableNoteCell *) [tableView cellForRowAtIndexPath:indexPath]; 

    NSArray *constraints = [noteCell.noteDescriptionLabel constraints]; 
    NSLayoutConstraint *horizontalConstraint = constraints[1]; 
    [horizontalConstraint setConstant:125.0]; 

    return UITableViewCellEditingStyleDelete; 

}