Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.

sneha

macrumors newbie
Original poster
May 24, 2009
27
0
India
I am using UITableView (with custom UITableViewCell) in my project.I am having a problem while editing the UItableView.I just want to show the reordering control while editing the UItableView

IN 2.2

It is proper the disclose indicator changes to the reordering control.:)

IN 3.0

It shifts the entire content to right hand side and shows the reordering control :confused:.Because of which ma labels are overlapping each other.

I am attaching the screen shots of the project .

Please assist me asap...

thanks in advance:):)
 

Attachments

  • 2.2.png
    2.2.png
    28.2 KB · Views: 76
  • 3.0.png
    3.0.png
    23.9 KB · Views: 56
well i found out the solution for it ....

just right this method and it works:

Code:
- (BOOL)tableView:(UITableView *)tableView shouldIndentWhileEditingRowAtIndexPath:(NSIndexPath *)indexPath
{
	return NO;
}:)

if u dont write this method it will not work properly in 3.0 :D
 
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.