Search code examples
iphonesdkipod

bubble apear when tap and hold tableview cell like taping song in ipod in iphone


i am working on one music app where we can import music from iPod and play, in native app (iPod) in iPhone IOS 5 when tap and hold on any song or playlist a bubble appear with information, i want to implement that feature in my table view cell, but not getting any idea how to do it.


Solution

  • Implement these 3 methods, it should be similar to what you want.

    -(BOOL)tableView:(UITableView *)tableView shouldShowMenuForRowAtIndexPath:(NSIndexPath *)indexPath
    -(BOOL)tableView:(UITableView *)tableView canPerformAction:(SEL)action forRowAtIndexPath:(NSIndexPath *)indexPath withSender:(id)sender
    -(void)tableView:(UITableView *)tableView performAction:(SEL)action forRowAtIndexPath:(NSIndexPath *)indexPath withSender:(id)sender
    

    Hope it helps