Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3788366
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 19, 20262026-05-19T11:59:15+00:00 2026-05-19T11:59:15+00:00

guys :) Can you please share some ideas how to get one or more

  • 0

guys 🙂 Can you please share some ideas how to get one or more random MPMediaItems from user’s iPod Library. Any call to [MPMediaQuery songsQuery].items is waaaaay too slow – for a library of just 800 songs it takes about 19 seconds on my iPod Touch 2G to execute the query. I don’t want to cache the entire iPod library, because I don’t think it’s worth the effort. Any thoughts will be greatly appreciated. Thank you 🙂

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-19T11:59:15+00:00Added an answer on May 19, 2026 at 11:59 am

    I wrote this method to retrieve a random track from the music collection for my iPad Jukebox application called My Jukebox, hopefully you can use it too. Its fast, even on big music collections and if you retain the MediaQuery object (store it as a property of the class) then the second call is almost instant. I hope it helps.

    -(MPMediaItem*) getRandomTrack
    {
        // Check if we can re-use an MPMediaQuery
        if (self.mediaQuery == nil)
        {
            MPMediaQuery *everything = [[MPMediaQuery alloc] init];
            [self setMediaQuery:everything];
            [everything release];
        }
        // Get all Media Items into an Array (Fast)
        NSArray *allTracks = [mediaQuery items];
        // Check we have enough Tracks for a Random Choice
        if ([allTracks count] < 20)
        {
            return nil;
        }
        // Pick Random Track
        int trackNumber = arc4random() % [allTracks count];
        MPMediaItem *item = [allTracks objectAtIndex:trackNumber];
        // Display and Return
        return item;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Can you please help me on this one guys.. I am trying to get
Guys any one can please help me in doing this -> I need to
Multiple currency how to get the values from google free curency values can please
Can you guys please check this code, it is MVC3 Razor <p><strong><u>Skills:</u></strong> @foreach (var
I hope some of you guys can help me with this problem.... I have
Hello guys can you please help me with this problem. When a simple image
Please can you guys help me check if my syntax is correct. I don't
Guys can you suggest me any software who have some similarities with Microsoft's SQL
Can you guys think of any one liners equal to if/else statements: d =
Hi guys can somebody please advise how to cure the memory leaks in the

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.