FLImageView registers for notifications on FLImageLoadedNotification.
The way things are wired up, after an FLImageView is notified and the image for its URL is fetched etc, it would still get notified on future loads of other images as it only unregisters itself from notifications on dealloc.
Suggestion: Insert removeObserver after an image is received and assigned - hence further notifications won't be dealt with.