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

Why is this Javascript much *slower* than its jQuery equivalent?

I have a HTML list of about 500 items and a "filter" box above it. I started by using jQuery to filter the list when I typed a letter (timing code added later): $('#filter').keyup( function() { var jqStart = (new Date).getTime(); var search = $(this).val().toLowerCase(); var $list = $('ul.ablist > li'); $list.each( function() { if ( $(this).text().toLowerCase().indexOf(search) === -1 ) $(this).hide(); else $(this).show(); } ); console.log('Time: ' + ((new Date).getTime() - jqStart)); } ); However, there was a couple of seconds delay after typing each letter (particularly the first letter). So I thought it may be slightly quicker if I used plain Javascript (I read recently that jQuery's each function is particularly slow). Here's my JS equivalent: document.getElementById('filter').addEventListener( 'keyup', function () { var jsStart = (new Date).getTime()...

Is it possible to have IF statement in an Echo statement in PHP

Thanks in advance. I did look at the other questions/answers that were similar and didn't find exactly what I was looking for. I'm trying to do this, am I on the right path? echo " <div id='tabs-".$match."'> <textarea id='".$match."' name='".$match."'>". if ($COLUMN_NAME === $match) { echo $FIELD_WITH_COLUMN_NAME; } else { } ."</textarea> <script type='text/javascript'> CKEDITOR.replace( '".$match."' ); </script> </div>"; I am getting the following error message in the browser: Parse error: syntax error, unexpected T_IF Please let me know if this is the right way to go about nesting an IF statement inside an echo. Thank you.