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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T00:01:59+00:00 2026-05-17T00:01:59+00:00

I am trying to learn cocoa and have a few problems with KVC and

  • 0

I am trying to learn cocoa and have a few problems with KVC and bindings. I have a nstableview with three columns; “checkbox”, “text”, “icon”. The values of each column is binded to an arraycontroller using KVC. When program is launched the rows and columns are correctly filled into the tableview according to the values in the array. I can click a row and correctly print the content of that row using something like this:

 - (IBAction)fileTableViewSelected:(id)sender{
    NSInteger r; 
    NSDate    *fModOne;
    id object;

    r = [[NSNumber numberWithInt:[sender selectedRow]] intValue];
    object = [arrayIntersect objectAtIndex:r];

    fModOne = [object valueForKey:@"fileModifiedDirOne"];
    NSLog(@"Date found in row is %@",fModOne);
}

My problem is when I try to click the checkbox in column one and change the value of the box. Initially, the value of the checkbox is set to 1 using the arraycontroller which works fine, but when I want to change the value of the checkbox of a specific row to 0 by clicking on it the program crashes. When the box is clicked an action is correctly called and this is where I thought I could simply change the value of my objects BOOL by calling:

[object setValue:[NSNumber numberWithBool:NO] forKey:@"doSync"];

My setters and getters for the BOOL doSync is defined as:

@property(nonatomic, readwrite) BOOL doSync;
@dynamic doSync;


- (void)setDoSync:(BOOL) value{
NSLog(@"setting dosync %i", value);
doSync = NO;
 }

 - (BOOL)doSync{
return doSync;
 }

I have searched everywhere for a solution to my problem, but I am unable to find any examples of how to use checkboxes in tableview using KVC and bindings. I appreciate any help I can get on this and I would appreciate any examples I could take a look at.
Cheers and thanks! Trond

  • 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-17T00:02:00+00:00Added an answer on May 17, 2026 at 12:02 am

    You don’t need to implement this yourself as an action. Just bind the column through your array controller’s arrangedObjects to the doSync property of the model objects.

    If you don’t want to use Bindings, you still shouldn’t implement it as an action. Instead, be the table view’s data source and respond to the message the table view will send you to change one of the values.

    @dynamic doSync;
    

    There’s no reason to have this if you turn around and implement the accessors for that property in the same class.

    If this is a managed-object class and the property is an attribute of the entity, then your accessors should send [self willAccessValueforKey:] before and [self didAccessValueForKey:] after accessing the instance variable. If that’s all they do, then you should not implement the custom accessors at all; cut them out and have @dynamic alone.

    - (void)setDoSync:(BOOL) value{
        doSync = NO;
    

    That’s not setting the property to the value passed in.

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

Sidebar

Related Questions

In trying to learn how to create objects in ActionScript, I have had no
I'm trying to learn Objective C & Cocoa, but I just can't manage to
Trying to learn Regex in Python to find words that have consecutive vowel-consonant or
Trying to learn a bit of CSS and I want a horizontal navbar and
I'm trying to learn C. As a C# developer, my IDE is Visual Studio.
I am trying to learn the keyboard shortcuts in Visual Studio in order to
I'm trying to learn RegEx in Ruby, based on what I'm reading in The
I'm trying to learn C++ so forgive me if this question demonstrates a lack
I am trying to learn some of the basic and advanced features of visual
I'm trying to learn to use SDL for a little game I'm writing ,

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.