ALL BUSINESS
COMIDA
DIRECTORIES
EDUCATIONAL
ENTERTAINMENT
FASHION TIPS
FINER THINGS
FREE CREATOR TOOLS
HEALTH
MARKETPLACE
MEMBER's ONLY
MONEY MATTER$
MOTIVATIONAL
NEWS & WEATHER
TECHNOLOGIA
TELEVISION NETWORKS
USA VOTES 2024
VIDEOS
INVESTOR RELATIONS
IN DEVELOPMENT
Posted by - Latinos MediaSyndication -
on - Jan 17 -
Filed in - Technology -
-
298 Views - 0 Comments - 0 Likes - 0 Reviews
I had an app in which I used CocoaPods to install Parse and SDWebImage. Everything worked just fine. Then I updated Xcode and it now fails with MULTIPLE issues. I was getting undefined object error messages, so I ran pod update. This got rid of those messages, but now it fails because:
Unknown type name 'PFFileObject'; did you mean 'PFObject'? 'SDWebImage/UIImageView+WebCache.h' file not found
I have confirmed that the file is there, I have tried doing just an import of UIImageView+WebCache.h on that class, I have cleaned the project, I have ran pod update, but nothing seems to help. How did one Xcode update manage to take an app that ran fine and without any code changes, prevent it from opening at all?
I've tried everything I can think of, even dragging in SDWebImage into my project, but that wouldn't work either. I've confirmed that both PFFileObject.h and UIImageView+WebCache.h both exist, the app just doesn't see it.
It seems that it thinks it is missing stuff, but they're actually there.