0
votes
3answers
48 views

How populate prototype cell text labels with NSDictionary object populated with JSON data using AFNetworking

New to iOS. I am downloading JSON data using AFNetworking and putting the data in a Dictionary object. This is done in the following code: -(void)locationRequest { NSURL *url = [NSURL ...
0
votes
1answer
70 views

Bind array of dictionaries to nstableview

----EDITED---- My situation: I have a cell-based NSTableView. In this tableview there are 3 NSColums, 1 is a image box, one is a text box and the third is a checkbox. I have an array controller, ...
1
vote
1answer
95 views

Set checkbox inside NSTableView to “YES”

I have an NSTableView with a checkbox column and an NSArrayController. The NSTableView is bound to the NSArrayController to show its content. The checkbox column is bound to ...
0
votes
2answers
129 views

Cocoa - Filter an Array NSDictionary on a tableview

I've a tableview that has an array of dictionaries datasource. Now I want to do a filter inside this table, but I want to be able to filter for 5 different fields, like name, number, email, etc. How ...
0
votes
1answer
97 views

Presenting NSDictionary in UITableView [duplicate]

Possible Duplicate: NSDictionary to UITableView I have NSDictionary with keys, for example, @"first_name". I want to show objects for this keys using NSTableView. How can I do it? Thanks.
0
votes
0answers
64 views

Display NSDictionary content in NSTableView

I am totally newbie to COCOA, a simple question (may be silly), i am having dictionary of arrays, just want to display it in NSTableView, totally confused with bindings and all things, any suggestions ...
0
votes
1answer
497 views

Display image in NSTableView

I am creating a tableview and using NSDictionaryController. My data comes from case.dict file I am using this code: @interface MyClass : NSWindowController{ IBOutlet NSTableView *tableView; ...
0
votes
1answer
113 views

NSArrayController , arrangedObjects and tableColumn IB connection

I am new to mac development. I am trying to make this app from apple.com At one point i am stucked in interface builder. How do i connect arrangedObjects.firstName to the Value - Table Column - ...
2
votes
1answer
610 views

Objective-C Populating a table view with an instance of NSDictionary

i need some help i want to load an xml file into a table view this is what i have so far, could anyone explain to me how to do this. I think it would involve bindings too which i know a bit about. ...
1
vote
2answers
976 views

Add objects to NSDictionaryController

I have an NSTableView which is bound to an NSDictionaryController. I have set this and the content dictionary through the interface builder. The question I have is, how do I add objects to the ...
0
votes
4answers
541 views

Can't get NSTableView to display data

I see there are a lot of questions about this, but nothing helped me to get this work. I have a nib with a NSTableView with three columns (with the right identifiers set) and a class named ...
1
vote
1answer
772 views

NSDictionaryController doesn't seem to observe changes to content dictionary

I must be missing something simple, but I am having some trouble binding a tableView to an NSDictionaryController. Here is a model of my current scheme: TableViewColumn ...