Skip to main content

Check for private API "usage” yourself?



So, we all know Apple forbids using private or undocumented APIs in iOS apps. I have no problem with this, as there are sound technical reasons for why this is a good idea. However, twice now I've had an app rejected for using private APIs, when this was not actually the case. It's not difficult -- the private APIs include symbols like connectionState , setThumbnail , setOrder and so on. Any calls you make to methods named as such will be flagged as a private API use, even if the method being called is something you have defined yourself. For a program doing something with connections, thumbnails or the order of things, the above mentioned method names aren't all that unlikely. Getting rejected for this and having to rename a method and resubmit delays everything by at least a week while you wait for a new review.





So is there a way, using nm , class dumps of the iOS frameworks, etc to find out for yourself if your method names conflicts with anything in there? If so, we could have a chance of correcting this before release and avoiding unnecessary rejection.


Comments

  1. I'd suggest using App Scanner. It analyzes your .app file for private API method usage. The current version doesn't support private API instance variables but that might get worked into a future version.

    It will catch methods that have been named the same as a private API method, even if it has it's own implementation. Also, it'll catch @selectors inside methods (just like the official iOS automated checker).

    link --> http://www.chimpstudios.com/appscanner/

    ReplyDelete
  2. Have you tried turning on Validate Build Product in the settings? It is supposed to perform all the initial checks done on your app during the review process

    ReplyDelete
  3. This is not exactly what you're looking for, but Xcode has two validate options that are probably worth trying.

    The first is a build setting. It's not entirely clear what it checks -- the documentation doesn't say and even the WWDC talks didn't really elaborate -- but it is potentially useful. My guess is that it does not check for private APIs.

    The second option is in the Organizer. In the "Archived Apps" view you can submit your app to Apple for validation. Again, they don't really nail down exactly what the checks are but I understand that this is more like the automated tests that they run before "manually" reviewing. My guess is that this does check for private API calls.

    ReplyDelete
  4. Erica Sadun is currently working on something she calls APIKit which is a utility that scans your code and proactively warns you about private API usage. http://ericasadun.com/2009/12/apikit-goes-beta/#c2

    The only problem is that I can't find anything to do with it anywhere. It's apparently in beta, but that was announced around 8 months ago.

    I don't know of it's current status or whether or not it's actually available, but it's something you could look into. Maybe even try contacting her yourself? Erica hangs out in the #iphone-dev channel on IRC on freenode now and again, you might catch her there.

    ReplyDelete

Post a Comment

Popular posts from this blog

[韓日関係] 首相含む大幅な内閣改造の可能性…早ければ来月10日ごろ=韓国

div not scrolling properly with slimScroll plugin

I am using the slimScroll plugin for jQuery by Piotr Rochala Which is a great plugin for nice scrollbars on most browsers but I am stuck because I am using it for a chat box and whenever the user appends new text to the boxit does scroll using the .scrollTop() method however the plugin's scrollbar doesnt scroll with it and when the user wants to look though the chat history it will start scrolling from near the top. I have made a quick demo of my situation http://jsfiddle.net/DY9CT/2/ Does anyone know how to solve this problem?

Why does this javascript based printing cause Safari to refresh the page?

The page I am working on has a javascript function executed to print parts of the page. For some reason, printing in Safari, causes the window to somehow update. I say somehow, because it does not really refresh as in reload the page, but rather it starts the "rendering" of the page from start, i.e. scroll to top, flash animations start from 0, and so forth. The effect is reproduced by this fiddle: http://jsfiddle.net/fYmnB/ Clicking the print button and finishing or cancelling a print in Safari causes the screen to "go white" for a sec, which in my real website manifests itself as something "like" a reload. While running print button with, let's say, Firefox, just opens and closes the print dialogue without affecting the fiddle page in any way. Is there something with my way of calling the browsers print method that causes this, or how can it be explained - and preferably, avoided? P.S.: On my real site the same occurs with Chrome. In the ex