ALL BUSINESS
COMIDA
DIRECTORIES
ENTERTAINMENT
FINER THINGS
HEALTH
MARKETPLACE
MEMBER's ONLY
MONEY MATTER$
MOTIVATIONAL
NEWS & WEATHER
TECHNOLOGIA
TV NETWORKS
VIDEOS
VOTE USA 2026/2028
INVESTOR RELATIONS
DEV FOR 2025 / 2026
About Me
Latinos Media provides all types of news feeds on a daily basis to our Members
Posted by - Latinos Media -
on - January 17, 2024 -
Filed in - Technology -
-
428 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.