
Just a heads up for anyone who has it … 1.03 of mySlate for iPad was just approved by Apple and should be propagating its way through the app store now. Here’s the changelog:
#WebView:
Added Bookmark Folders
Save Images with 2 finger tap on image
2 finger swipe left/right to go back/forward
#Photos:
Option to randomize the slideshow
#Videos
New display layout
#General
Change password
Contact Support from the app
brandon Coding, iPhone

Problem: You want to limit if a tableview cell is ABLE to move to a new section, or is limited to ONLY moving to a new section. For example in mySlate I’m supporting moving bookmarks to a new section/folder. However the bookmarks are laid out in alphabetical order inside a section/folder, so re-ordering them would do no good. Each time you open the bookmarks view they are returned alphabetically from the data store.
Solution:
- (NSIndexPath *)tableView:(UITableView *)tableView targetIndexPathForMoveFromRowAtIndexPath:(NSIndexPath *)sourceIndexPath toProposedIndexPath:(NSIndexPath *)proposedDestinationIndexPath
{
if( sourceIndexPath.section != proposedDestinationIndexPath.section )
{
return proposedDestinationIndexPath;
}
else
{
return sourceIndexPath;
}
//Reverse those to support only moving inside a section
}
Of course supporting movement in the tableview is yours to implement.
Source: stackoverflow
brandon Coding, iPhone