-
Notifications
You must be signed in to change notification settings - Fork 99
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Reordering issue #102
Comments
It's great to see a sample indicating your issue. thanks. It takes me more time to figure it out, if could, could you please upload new sample? |
@praveenkumartapmobi it's ok, I fix it by use any dumb view instead. Never mind. |
@praveenkumartapmobi Thank you, it's a HysteriaPlayer's bug. Been fixed by cca13ae. Please update to 2.1.6 on CocoaPods. FYI, I made a few changes in your sample to make it work. - (void)tableView:(UITableView *)tableView moveRowAtIndexPath:(NSIndexPath *)sourceIndexPath toIndexPath:(NSIndexPath *)destinationIndexPath {
id object = [songRecords objectAtIndex:sourceIndexPath.row];
[songRecords removeObjectAtIndex:sourceIndexPath.row];
[songRecords insertObject:object atIndex:destinationIndexPath.row];
[[HysteriaPlayer sharedInstance] moveItemFromIndex:sourceIndexPath.row toIndex:destinationIndexPath.row];
[tableView reloadData];
} |
You can have the "VYPlayIndicator" here |
No, the issue still remains there. As i have told you i have disabled the So, when we disable the cachememory in HysteiraPlayer. The, |
@praveenkumartapmobi Yes, that was a bug. And I just fixed it. HysteriaPlayer/HysteriaPlayer/HysteriaPlayer.m Lines 404 to 426 in cca13ae
|
Yes, it got fixed. Thanks :) |
Hello Saiday,
As new version (2.1.5) released with lot of new methods and implementations. I am facing an issue while reordering songs in my Queue.
Like, i've populated all my song data in a TableView. User can pick any song. So, while playing a song, he/she can reorder it. If the user reorder the current playing song, the index of the current items are not changing (I have debugged this) Instead, it works with previous order.
So, how can i manually reset the Index of current song with
HysteriaOrder
method@saiday For your reference, please try this SamplePlayer
The text was updated successfully, but these errors were encountered: