2009-08-26 33 views
4

有一些iPhone應用程序在那裏做一些幕後的技巧與未公開的API,並獲得有效的結果。未記錄的iPhone API - 發現和使用

  1. 我該如何去獲取無證iPhone API的列表?

  2. 是否有一些這些API的第三方臨時文檔?

+0

他們玩得很開心,但我不會建議在你想要進入App Store的任何應用程序中使用它們。僅僅因爲其他人進入並不是一個好主意。但我也喜歡在自己的個人(未發佈)應用中與他們一起玩。 – jbrennan 2009-08-26 18:58:31

回答

2

Erica Sadun,最受尊敬的iPhone黑客之一有一本書就是這個。大多數未公開的頭文件也可以從她的網站上提取。

4

你可以使用classdump拿到了iPhone SDK的列表,但我不知道有關第三方文檔的(非)存在。不過,你也許可以通過閱讀他們的名字來了解這些方法的功能。

0

我找到了一個perl腳本(source = arstechnika),它從iPhone SDK的公共和私有框架構建了一個頭文件夾。然而,我得到一個錯誤(類轉儲失敗,返回16777215 ),如果我運行它。

#!/usr/bin/perl 
# 
# 24 November 2008 
# Framework Dumping utility; requires class-dump 
# 

use strict; 

use Cwd; 
use File::Path; 

my $HOME = (getpwuid($<))[7] || $ENV{'HOME'} 
    or die "Could not find your home directory!"; 

# This command must be in your path. 
# http://www.codethecode.com/projects/class-dump/ 
my $CLASS_DUMP = 'class-dump'; 

# Public Frameworks 
dump_frameworks('/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator2.0.sdk/System/Library/Frameworks', 
       'Frameworks'); 

# Private Frameworks 
dump_frameworks('/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator2.0.sdk/System/Library/PrivateFrameworks', 
       'PrivateFrameworks'); 

sub dump_frameworks 
{ 
    my($dir, $subdir) = @_; 

    opendir(my $dirh, $dir) or die "Could not opendir($dir) - $!"; 

    # Iterate through each framework found in the directory 
    foreach my $file (grep { /\.framework$/ } readdir($dirh)) 
    { 
    # Extract the framework name 
    (my $fname = $file) =~ s/\.framework$//; 
    print "Framework: $fname\n"; 

    my $headers_dir = "$HOME/Headers/$subdir/$fname"; 

    # Create the folder to store the headers 
    mkpath($headers_dir); 

    # Perform the class-dump 
    my $cwd = cwd(); 
    chdir($headers_dir) or die "Could not chdir($headers_dir) - $!"; 

    system($CLASS_DUMP, '-H', "$dir/$file"); 

    if(my $ret = $? >> 8) 
    { 
     die "$CLASS_DUMP failed, returning $ret\n"; 
    } 

    chdir($cwd) or die "Could not chdir($cwd) - $!"; 
    } 
}