Arash Zeinoddini
Arash Zeinoddini

Reputation: 819

How can I find out if a class that I use in my app is private or not?

How can I find out if a class that I use in my app is private or not? Has this been specified in the class documentation?

Upvotes: 1

Views: 53

Answers (1)

boxel
boxel

Reputation: 659

Create an archive of your app as you would if you were going to submit it to iTunes Connect. Open up Xcode's Organizer window, and run "Validate" on the archive. It will generate a warning if you have called a private API.

Upvotes: 2

Related Questions