Is there a simple way for subclasses of UITableViewCell to show the 'Copy' UIMenuController popup like in the Address book app (see screenshot), after the selection is held for a while?
|
The method before iOS 5 is to get the UIMenuController's shared instance, set the target rect and view and call The method after iOS 5 (previously available as undocumented feature) is to implement these 3 methods in your data source (see http://developer.apple.com/library/ios/DOCUMENTATION/UIKit/Reference/UITableViewDelegate_Protocol/Reference/Reference.html#//apple_ref/occ/intfm/UITableViewDelegate/tableView:shouldShowMenuForRowAtIndexPath:).
|
|||||||||||
|
|
Your UITableViewCell subclass may look like this
And the UITableView delegate methods are like
|
|||||||||
|
|
There is now official interface for displaying UITableView cell menus in iOS 5. Example (from the table delegate):
I tried modifying the UIMenuController's shared controller to add my own menu item, and I was able to add it and get the Note that this works only if all three delegate methods are implemented. |
|||||
|
|
CopyableCell class might give an idea to solve the problem. Here is the GitHub link. Hope this helps. |
|||
|
|
|
Its too old post though the requirement is quiet regular so one can go with any of above mentioned solutions. As requirements demanding copy feature foe iOS above 4.3 with custom cell so I go prefer Alex Pretzlav's Tumbleblag with guidance of CopyableTableView. |
|||
|
|