iOS開發擷取SDK下私人API

來源:互聯網
上載者:User

Objecitve-C的重要特性是Runtime(運行時),在Interacting with the Runtime(互動運行)中,運行時函數部分,蘋果給出了/usr/lib/libobjc.A.dylib庫,這個共用庫提供支援動態屬性的objective
- c語言,通過其介面,可以用於開發將其他語言運行於Objective-C上的中介層(橋接層),庫裡的函數定義為純C語言。

例如:class_getName

class_getNameReturns the name of a class.const char * class_getName(Class cls)ParametersclsA class object.Return ValueThe name of the class, or the empty string if cls is Nil.Declared Inruntime.h

這裡我們要用庫裡的函數,幹個“壞事”,查看蘋果SDK的私人方法。

第一步:匯入標頭檔

#import <objc/runtime.h> 

第二步:添加下列代碼

NSString *className = NSStringFromClass([UIView class]);        const char *cClassName = [className UTF8String];        id theClass = objc_getClass(cClassName);        unsigned int outCount;        Method *m =  class_copyMethodList(theClass,&outCount);        NSLog(@"%d",outCount);    for (int i = 0; i<outCount; i++) {        SEL a = method_getName(*(m+i));        NSString *sn = NSStringFromSelector(a);        NSLog(@"%@",sn);    } 

第三步:想看什麼類 就把UIView換成你想要的


當然,如果只是查看私人API,會有更簡單的方法,可以使用工具class-dump,也可以通過此連結,https://github.com/kennytm/iphone-private-frameworks/tree/master/UIKit/
   查看。

特別注意的是,如果是需要上架的APP,切勿使用私人API,會通不過APP Store的審核。


iOS開發群,大家做技術交流和資源,群號:241048287

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.