1

私はiPodから音楽をインポートして再生できる1つの音楽アプリに取り組んでいます。iPhoneIOS5のネイティブアプリ(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 に答える