I get this mauve warning in Xcode that I should certainly take seriously, but it doesn't tell me where this could be in my code. What am I supposed to do now?
Post
Replies
Boosts
Views
Activity
I am lost now with apple's warningITMS-90809: Deprecated API Usagesaying that the submitted app contains UIWebView.I have removed all UIWebView in the source code, going as far as even removing it in comments. Search function in Xcode and in Finder show no result.All pods have been brought to the latest version.Running nm myapp | grep UIWeb
for framework in Frameworks/*.framework; do
fname=$(basename $framework .framework)
echo $fname
nm $framework/$fname | grep UIWeb
donenicely lists all frameworks as being clean.So where else could a UIWebView be hiding?