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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T04:56:33+00:00 2026-06-03T04:56:33+00:00

Does it make sense logically to have two data sources populating a single NSTableView?

  • 0

Does it make sense logically to have two data sources populating a single NSTableView? Or would a pop up button (with ability to choose from which data source to read)be more reasonable?

If I go with the single NSTableView option, would I be better off if I input all the data into a single data source (say an NSDictionary) and then populating the table? The only problem that I see with this idea is what happens when a selection of the table is done.. How would I decipher which of the original location was selected.

Another idea/potential problem that just popped into my head … if I take the data from the data source and populate the table directly, how would give the count of the table in the relevant NSTableView ‘count’ method.. Would adding the count of data store 1 and data store 2 do it?

Sorry if it’s a bit jumbled up.. Thanks for any input!

  • 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-06-03T04:56:34+00:00Added an answer on June 3, 2026 at 4:56 am

    You can definitely use multiple data sources for the data to be displayed in the table view, but they must all be funnelled through a single controller object that is assigned as the table view’s datasource and which implements the NSTableViewDatasource protocol.

    You will have to write some code in your controller object so that you keep track of the multiple source arrays that make up and supply the table view with the appropriate values for the number of items and the content of each item.

    This is a very simplistic example:

    - (NSInteger)numberOfRowsInTableView:(NSTableView *)aTableView
    {
        return [array1 count] + [array2 count];
    }
    
    - (id)tableView:(NSTableView *)aTableView objectValueForTableColumn:(NSTableColumn *)aTableColumn row:(NSInteger)rowIndex
    {
        if(rowIndex >= [array1 count])
        {
            return [array2 objectAtIndex:rowIndex - [array1 count]];
        }
        else
        {
            return [array1 objectAtIndex:rowIndex];
        }
    }
    

    As for selection, well, your controller knows where it’s getting its data from, so when the user selects a particular row it should be trivial to translate that row index to a matching object in one of your backing stores.

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

Sidebar

Related Questions

Does it make sense to simply copy the mysql\data files vs mysql replication between
Why does it make sense to have Runtime Exceptions UnChecked (as opposed to if
When managing shader's, does it make sense to have all of them compiled and
Can I nest Git repositories? I have: /project_root/ /project_root/my_project /project_root/third_party_git_repository_used_by_my_project Does it make sense
Does it make sense to create a constant for the value of a penny?
Does it make sense that if the Text on a TextBox is databound to
does it make sense to use an Filecache when using Sqlite as Database ?
Does it make sense to obsfucate Javascript? The only clear benefits I can see
Does it make sense to use RIA Services as a service provider to an
Does this make sense? MyValue can be true or false Should it not be

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.