Please do not post the same thing multiple times. The board software automatically flags certain posts as needing moderator attention. This happens the most often for new users. I'm pretty sure this is made clear at the time you attempt to post. Posting the same thing over and over again just makes that many more posts the moderators have to weed through later. This makes us sad. Don't make us sad. If your post/thread doesn't appear, just wait a while. Don't post it again. If it hasn't shown up by the next day, then you can try again. I normally go through posts in the mornings, and try to check a few times throughout the day, but I'm not here 24/7. There will typically be a significant delay before posts are approved. Just be patient.
NSFetchedResultsController not responding to data updates properly
I have a data model for a basic photo sharing app where every Photo is associated with a single Feeling and User. The main Gallery VC has a table view of Feelings. You can sort those Feelings either alphabetically or chronologically (with the Feeling that has a Photo added to it most recently at the top). When in "Recent" mode (and possibly in "Alphabetical as well, though I have not confirmed this), the table view is not updating properly. The data is being updated correctly in the MOC, and the NSFetchedResultsController is tracking those changes and sending delegate callbacks to my Gallery VC, but it is not really doing it successfully... The data it reports is correct, but "Move" changes are often reported merely as "Update", so that a row for a recently updated Feeling is not moving to index 0. (If you force a re-fetch though, the display corrects itself.) When a Feeling row does move to the top successfully, often the second row also shows as that Feeling. (If you scroll those rows off screen and back on though, the display corrects itself.)
You can download a super-stripped-down version of the project at GitHub. Any help would be greatly appreciated.