Getting UITableView to populate with data from another class
I am quite new to Objective-C and this is the first time I have attempted to implement MVC. I have a model class where l have an NSArray which will be populated with data from a JSON object. I want to populate my UITableView (in my view controller class), with objects from this array. Please review my code: Droplets.h @interface Droplets : NSObject { NSArray *dropletsArray; } // Get droplets data - (void) getDropletsList; //Object initilization - (id) init; //Public properties @property (strong, nonatomic) NSArray *dropletsArray; // Used to store the selected JSON data objects @end Droplets.m