匯出生成私有API的標頭檔案宣告 iso5 的方法

2021-06-02 03:22:21 字數 530 閱讀 1874

工具:

class-dump

command:

為了能在任意目錄下使用class-dump命令,首先建議把class-dump檔案拷貝到/user/local/bin/目錄下,然後就可以在任意目錄下執行以下命令:

sudo chmod 777 class-dump

終端執行 class-dump檔案 -h   私有框架   -o  /

class-dump /developer/platforms/iphonesimulator.platform/developer/sdks/iphonesimulator5.0.sdk/system/library/frameworks/uikit.framework/ >uikit.h

以上命令就可以把iphonesimulator5.0.sdk中frameworks框架裡的uikit.framework框架的資料結構及函式宣告等給提取出來,並且放在uikit.h這個檔案中,之後你就可以在這個標頭檔案中找你需要api的宣告及其使用方式。以同樣的方法,就可以挨個匯出你需要那個框架中的api宣告。

C 標頭檔案與類的宣告

complex.h 1 防衛式宣告 ifndef complex 告訴編譯器曾經沒有 define complex endif 作用 發展乙個複數,把它放在標頭檔案中,因為很多程式要用到這個標頭檔案,include complex 當第一次include這個標頭檔案後,編譯器就會進入標頭檔案中,並且...

庫標頭檔案的匯入匯出巨集

ifdef cfg api being compiled ifdef win32 define cfg api export declspec dllexport else define cfg api export endif else if defined win32 define cfg ap...

Oracle匯出 生成表注釋以及表字段的注釋

匯出 生成當前使用者的所有表和檢視的注釋 select comment on table a.table name is a.comments from user tab comments a where a.table type in table view 匯出 生成當前使用者的所有表字段的注釋 ...