1

我正在开发一个音乐应用程序,我们可以在其中从 iPod 导入音乐并播放,在 iPhone IOS 5 的本机应用程序 (iPod) 中,当点击并按住任何歌曲或播放列表时会出现带有信息的气泡,我想在我的表格视图单元格,但不知道该怎么做。

4

1 回答 1

0

实现这3个方法,应该和你想要的差不多。

-(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

希望能帮助到你

于 2012-04-11T12:00:01.533 回答