Another gotcha for the future: if you ar…

Another gotcha for the future: if you are managing a core data object relationships, don't do this

NSSet *categories = [self.blog.categories filteredSetUsingPredicate:predicate];
if ([categories count] > 0)
    [self.categories addObjectsFromArray:[categories allObjects]];

Do this instead… Read More

via Making WordPress for iOS

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.