Please note, this blog entry is from a previous course. You might want to check out the current one.
The recents tab must show the list of most recently view photos in chronological order of viewing with the most recent at the top, and no duplicates in the list. It is sufficient to only update the list each time it (re)appears on screen (i.e. in viewWillAppear:). A photo can be uniquely identified by its “id” entry in its dictionary.
Create a model for the recents list, holding data for the recent photos:
@property (nonatomic, strong) NSArray *photos;
Synthesize the model and set its setter to reload the table when the data has changed:
Continue reading “Assignment #4 Task #10”