Skip to content

Commit f62a4cf

Browse files
committed
update
update class-dump to support iOS9; fix bug of document_apis table class_name empty
1 parent 39e0c38 commit f62a4cf

File tree

3 files changed

+2
-1
lines changed

3 files changed

+2
-1
lines changed

.DS_Store

-3 KB
Binary file not shown.

api/api_utils.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -61,10 +61,11 @@ def document_apis(sdk, db_path):
6161
for api in apiset:
6262
Z_PK = api['Z_PK']
6363
ZDECLAREDIN = api['ZDECLAREDIN']
64+
ZCONTAINER = api['ZCONTAINER']
6465
# get containername from ZCONTAINER table
6566
container_name = ''
6667
if Z_PK:
67-
container_name = dsidx_dbs.get_container_name(Z_PK, db_path) or ''
68+
container_name = dsidx_dbs.get_container_name(ZCONTAINER, db_path) or ''
6869
# get frameworkname and headerpath from ZHEADER table
6970

7071
framework_name = ''

class-dump

404 KB
Binary file not shown.

0 commit comments

Comments
 (0)