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

  • Home
  • SEARCH
  • 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 594091
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T15:54:58+00:00 2026-05-13T15:54:58+00:00

What is an easy way to set up my NSTableView with multiple columns to

  • 0

What is an easy way to set up my NSTableView with multiple columns to only display certain data in one column. I have the IBOutlets set up, but I don’t know where to go from there.

  • 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-13T15:54:59+00:00Added an answer on May 13, 2026 at 3:54 pm

    Assuming you’re not using Cocoa Bindings/Core Data, you can display data in an NSTableView by implementing two methods from the NSTableViewDataSource protocol. Typically your controller will implement the protocol, so open the controller .m file and add these methods to the controller’s @implementation:

    - (NSInteger)numberOfRowsInTableView:(NSTableView*)tableView {
      return 25;  // fill this out
    }
    
    – (id) tableView:(NSTableView*)tableView
           objectValueForTableColumn:(NSTableColumn*)column
           row:(int)row {
      return row % 3 ? @"Tick..." : @"BOOM!";  // fill this out
    }
    

    You need to set the table’s dataSource property to the controller. In Interface Builder control-drag from the table view to the controller and set dataSource. Now build and run and you should see your data in the table.

    If you only want to fill out one column, add an IBOutlet NSTableColumn* to your controller; let’s call it explosiveColumn. In Interface Builder, control-drag from the controller to the column you want to fill in and set explosiveColumn. Then, in tableView:objectValueForTableColumn:row: you can test if the column parameter is the same object as the one that the outlet is set to:

    – (id) tableView:(NSTableView*)tableView
           objectValueForTableColumn:(NSTableColumn*)column
           row:(int)row {
      if (column == explosiveColumn) {
        return row % 3 ? @"Tick..." : @"BOOM!";
      } else {
        // other columns blank for now
        return nil;
      }
    }
    

    This tutorial might be useful: http://www.cocoadev.com/index.pl?NSTableViewTutorial

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

Sidebar

Related Questions

Is there an easy way to have the form helpers set the tabindex parameter
Is there an easy way to set the zoom level for a windows form
Is there currently any easy way to set up a YAWS web server in
Is there an easy way to parse the user's HTTP_ACCEPT_LANGUAGE and set the locale
Is there an easy way to set the volume from managed .net code?
Is there any easy way to set the contents of a webview to an
Is there an easy way to set a callback function to a new window
Does anyone know of an easy way to set the niceness value of a
I'm looking for an easy way to set up a product in the Magento
I'm looking for an easy way to set ClickMode=Pressed on every Control in my

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.