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 872813
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T10:50:24+00:00 2026-05-15T10:50:24+00:00

I need to list a specific users uploaded videos (YouTube) in a UITableView. I’ve

  • 0

I need to list a specific users uploaded videos (YouTube) in a UITableView. I’ve downloaded the GData source and example projects (not iphone specific) but I can’t seem to get it to work. Does anybody know of any good (or any at all ;)) tutorials out there?

Best regards,
Magnus

  • 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-15T10:50:24+00:00Added an answer on May 15, 2026 at 10:50 am

    Assuming you have included the GData client libraries to your project, you need to make a call to fetch the user’s uploads, and then display them. Here’s the simplest way I can think of:

    Create an instance variable in your table view controller class that will hold the feed data returned from the YouTube API.

    RootViewController.h

    #import "GDataYouTube.h"
    #import "GDataServiceGoogleYouTube.h"
    
    @interface RootViewController : UITableViewController {
        GDataFeedYouTubeVideo *feed;
    }
    
    @property (nonatomic, retain) GDataFeedYouTubeVideo *feed;
    

    Inside the implementation file, make a call to the API to fetch all uploaded videos. Inside the callback selector request:finishedWithFeed:error, store the results in whatever format suits, and reload the table view. In the table views cellForRowAtIndexPath method, format the cell as desired:

    RootViewController.m

    // get the youtube service
    GDataServiceGoogleYouTube *service = [self youTubeService];
    
    // feed id for user uploads
    NSString *uploadsID = kGDataYouTubeUserFeedIDUploads;
    // construct the feed url
    NSURL *feedURL = [GDataServiceGoogleYouTube youTubeURLForUserID:@"annoyingorange"
                                                userFeedID:uploadsID];
    
    // make API call
    [service fetchFeedWithURL:feedURL
             delegate:self
             didFinishSelector:@selector(request:finishedWithFeed:error:)];
    

    Checkout the full source code for RootViewController.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need to fetch the playlist for specific username. [NSString stringWithFormat:@http://gdata.youtube.com/feeds/api/users/%@/playlists?alt=json&v=2&orderby=published&client=ytapi-youtube-profile,strUserName]; I use the
Hi I need to display in DropDownList a list of Users belonging a specific
Due to specific requirements [*], I need a singly-linked list implementation that uses integer
I have a list of xml elements that i need to search for specific
I am trying to iterate through a list, and I need to perform specific
I have an app where I retrieve a list of users from a specific
For some specific workflow issues at my company, I need to allow some users
I need the ability for users to add, edit, and delete lists/libraries but not
my_list = ['one', 'two', 'three', 'four', 'five', 'six', 'seven'] Using python, I need list
Need a list of Pcap.Net members or classes? Their website doesn't have much documentation

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.