瀏覽代碼

IPU标准版:整理百度地图 & 高德地图类插件

liufl5 3 年之前
父節點
當前提交
453f42f177

二進制
IPUCommon/IPUMobileFunc.framework/EBBannerView.nib


二進制
IPUCommon/IPUMobileFunc.framework/EBBannerViewController.nib


+ 12 - 4
IPUCommon/IPUMobileFunc.framework/Headers/IPUAMapPlugin.h

@ -14,13 +14,21 @@
14 14
#import <IPUMobile/IPUMobile.h>
15 15
16 16
@interface IPUAMapPlugin : IPUPlugin
17
17
/**
18
 高德地图获取当前位置(定位)
19
 */
18 20
- (void)location:(NSArray *)params;
19
21
/**
22
高德地图获取当前所在城市
23
*/
20 24
- (void)positionCity:(NSArray *)params;
21
25
/**
26
 在地图上选择一个位置,并返回位置信息(高德地图)
27
 */
22 28
- (void)selectLocation:(NSArray *)params;
23
29
/**
30
 在地图上标记出一系列坐标,同时可以设置是否允许用户选择一个坐标,并返回选择的位置
31
 */
24 32
- (void)markMap:(NSArray *)params;
25 33
26 34
@end

+ 4 - 26
IPUCommon/IPUMobileFunc.framework/Headers/IPUBMapPlugin.h

@ -16,79 +16,57 @@
16 16
@interface IPUBMapPlugin : IPUPlugin
17 17
18 18
/**
19
 获取定位
20
 
21
 @param params <#params description#>
19
 百度地图定位
22 20
 */
23 21
- (void)baiduLocation:(NSArray *)params;
24 22
25 23
/**
26
 钻取
27
 
28
 @param params <#params description#>
24
 百度地图点击事件
29 25
 */
30 26
- (void)clickBaiduMap:(NSArray *)params;
31 27
32 28
/**
33
 地图定位
34
 
35
 @param params <#params description#>
29
 打开地图定位
36 30
 */
37 31
- (void)baiduMapLocation:(NSArray *)params;
38 32
39 33
/**
40
 定位单点
41
 
42
 @param params <#params description#>
34
 打开地图并标记
43 35
 */
44 36
- (void)baiduMapPosition:(NSArray *)params;
45 37
46 38
/**
47 39
 添加覆盖物
48
 
49
 @param params <#params description#>
50 40
 */
51 41
- (void)addPolygon:(NSArray *)params;
52 42
53 43
/**
54 44
 poi城市检索
55
 
56
 @param params <#params description#>
57 45
 */
58 46
- (void)poiCitySearch:(NSArray *)params;
59 47
60 48
/**
61 49
 poi周边检索
62
 
63
 @param params <#params description#>
64 50
 */
65 51
- (void)poiNearbySearch:(NSArray *)params;
66 52
67 53
/**
68 54
 poi区域检索
69
 
70
 @param params <#params description#>
71 55
 */
72 56
- (void)poiBoundsSearch:(NSArray *)params;
73 57
74 58
/**
75 59
 lbs本地检索
76
 
77
 @param params <#params description#>
78 60
 */
79 61
- (void)lbsLocalSearch:(NSArray *)params;
80 62
81 63
/**
82 64
 lbs周边检索
83
 
84
 @param params <#params description#>
85 65
 */
86 66
- (void)lbsNearbySearch:(NSArray *)params;
87 67
88 68
/**
89 69
 lbs区域检索
90
 
91
 @param params <#params description#>
92 70
 */
93 71
- (void)lbsBoundsSearch:(NSArray *)params;
94 72

+ 5 - 10
IPUCommon/IPUMobileFunc.framework/Headers/IPUDatabasePlugin.h

@ -10,42 +10,37 @@
10 10
11 11
@interface IPUDatabasePlugin : IPUPlugin
12 12
13
/***************************************************************************
13
/**
14 14
 * 表操作(复合语句操作)
15 15
 * param(args)  : 参数
16
 *
17 16
 * 对应JS接口: Mobile.execSQL:function(dbName,sql,bindArgs,limit,offset,callback,err)
18 17
 */
19 18
- (void)execSql:(NSArray *)args;
20 19
21
/***********************************************
20
/**
22 21
 * 插入信息:将字段信息插入到指定表中(只适用于单表操作)
23 22
 * param(args)  : 参数
24
 *
25 23
 * 对应JS接口: Mobile.insert:function(dbName,table,datas,callback,err)
26 24
 */
27 25
- (void)insertData:(NSArray *)args;
28 26
29
/******************************************************
27
/**
30 28
 * 修改信息:根据指定条件,修改表中的指定字段(只适用于单表操作)
31 29
 * param(args)  : 参数
32
 *
33 30
 * 对应JS接口: Mobile.update:function(dbName,table,datas,condSQL,conds,callback,err)
34 31
 */
35 32
- (void)updateData:(NSArray *)args;
36 33
37
/******************************************************
34
/**
38 35
 * 删除信息:根据指定条件,修改表中的指定字段(只适用于单表操作)
39 36
 * param(args)  : 参数
40
 *
41 37
 * 对应JS接口: Mobile.delete:function(dbName,table,condSQL,conds,callback,err)
42 38
 */
43 39
- (void)deleteData:(NSArray *)args;
44 40
45
/************************************************************************************************
41
/**
46 42
 * 查询全表数据,根据数据库名称,表名,查询字段,查询条件,生成并执行sql
47 43
 * param(args)      : 参数列表
48
 *
49 44
 * 对应JS接口: Mobile.select:function(dbName,table,columns,condSQL,conds,limit,offset,callback,err)
50 45
 */
51 46
- (void)selectData:(NSArray *)args;

二進制
IPUCommon/IPUMobileFunc.framework/IPUMobileFunc


二進制
IPUCommon/IPUMobileFunc.framework/Info.plist


+ 12 - 4
IPUMobileFunc/IPUMobileFunc/IPUAMapPlugin.h

@ -14,13 +14,21 @@
14 14
#import <IPUMobile/IPUMobile.h>
15 15
16 16
@interface IPUAMapPlugin : IPUPlugin
17
17
/**
18
 高德地图获取当前位置(定位)
19
 */
18 20
- (void)location:(NSArray *)params;
19
21
/**
22
高德地图获取当前所在城市
23
*/
20 24
- (void)positionCity:(NSArray *)params;
21
25
/**
26
 在地图上选择一个位置,并返回位置信息(高德地图)
27
 */
22 28
- (void)selectLocation:(NSArray *)params;
23
29
/**
30
 在地图上标记出一系列坐标,同时可以设置是否允许用户选择一个坐标,并返回选择的位置
31
 */
24 32
- (void)markMap:(NSArray *)params;
25 33
26 34
@end

+ 12 - 4
IPUMobileFunc/IPUMobileFunc/IPUAMapPlugin.m

@ -16,25 +16,33 @@
16 16
#import <IPUFoundation/IPUFoundation.h>
17 17
18 18
@implementation IPUAMapPlugin
19
19
/**
20
高德地图获取当前位置(定位)
21
*/
20 22
- (void)location:(NSArray *)params {
21 23
    [IPUExcuteBridge excute:_cmd
22 24
                     params:params
23 25
                     plugin:self];
24 26
}
25
27
/**
28
高德地图获取当前所在城市
29
*/
26 30
- (void)positionCity:(NSArray *)params {
27 31
    [IPUExcuteBridge excute:_cmd
28 32
                     params:params
29 33
                     plugin:self];
30 34
}
31
35
/**
36
在地图上选择一个位置,并返回位置信息(高德地图)
37
*/
32 38
- (void)selectLocation:(NSArray *)params {
33 39
    [IPUExcuteBridge excute:_cmd
34 40
                     params:params
35 41
                     plugin:self];
36 42
}
37
43
/**
44
在地图上标记出一系列坐标,同时可以设置是否允许用户选择一个坐标,并返回选择的位置
45
*/
38 46
- (void)markMap:(NSArray *)params {
39 47
    [IPUExcuteBridge excute:_cmd
40 48
                     params:params

+ 4 - 26
IPUMobileFunc/IPUMobileFunc/IPUBMapPlugin.h

@ -16,79 +16,57 @@
16 16
@interface IPUBMapPlugin : IPUPlugin
17 17
18 18
/**
19
 获取定位
20
 
21
 @param params <#params description#>
19
 百度地图定位
22 20
 */
23 21
- (void)baiduLocation:(NSArray *)params;
24 22
25 23
/**
26
 钻取
27
 
28
 @param params <#params description#>
24
 百度地图点击事件
29 25
 */
30 26
- (void)clickBaiduMap:(NSArray *)params;
31 27
32 28
/**
33
 地图定位
34
 
35
 @param params <#params description#>
29
 打开地图定位
36 30
 */
37 31
- (void)baiduMapLocation:(NSArray *)params;
38 32
39 33
/**
40
 定位单点
41
 
42
 @param params <#params description#>
34
 打开地图并标记
43 35
 */
44 36
- (void)baiduMapPosition:(NSArray *)params;
45 37
46 38
/**
47 39
 添加覆盖物
48
 
49
 @param params <#params description#>
50 40
 */
51 41
- (void)addPolygon:(NSArray *)params;
52 42
53 43
/**
54 44
 poi城市检索
55
 
56
 @param params <#params description#>
57 45
 */
58 46
- (void)poiCitySearch:(NSArray *)params;
59 47
60 48
/**
61 49
 poi周边检索
62
 
63
 @param params <#params description#>
64 50
 */
65 51
- (void)poiNearbySearch:(NSArray *)params;
66 52
67 53
/**
68 54
 poi区域检索
69
 
70
 @param params <#params description#>
71 55
 */
72 56
- (void)poiBoundsSearch:(NSArray *)params;
73 57
74 58
/**
75 59
 lbs本地检索
76
 
77
 @param params <#params description#>
78 60
 */
79 61
- (void)lbsLocalSearch:(NSArray *)params;
80 62
81 63
/**
82 64
 lbs周边检索
83
 
84
 @param params <#params description#>
85 65
 */
86 66
- (void)lbsNearbySearch:(NSArray *)params;
87 67
88 68
/**
89 69
 lbs区域检索
90
 
91
 @param params <#params description#>
92 70
 */
93 71
- (void)lbsBoundsSearch:(NSArray *)params;
94 72

+ 33 - 11
IPUMobileFunc/IPUMobileFunc/IPUBMapPlugin.m

@ -16,67 +16,89 @@
16 16
#import <IPUFoundation/IPUFoundation.h>
17 17
18 18
@implementation IPUBMapPlugin
19
19
/**
20
百度地图定位
21
*/
20 22
- (void)baiduLocation:(NSArray *)params {
21 23
    [IPUExcuteBridge excute:_cmd
22 24
                     params:params
23 25
                     plugin:self];
24 26
}
25
27
/**
28
百度地图点击事件
29
*/
26 30
- (void)clickBaiduMap:(NSArray *)params {
27 31
    [IPUExcuteBridge excute:_cmd
28 32
                     params:params
29 33
                     plugin:self];
30 34
}
31
35
/**
36
打开地图并定位
37
*/
32 38
- (void)baiduMapLocation:(NSArray *)params {
33 39
    [IPUExcuteBridge excute:_cmd
34 40
                     params:params
35 41
                     plugin:self];
36 42
}
37
43
/**
44
打开地图并标记
45
*/
38 46
- (void)baiduMapPosition:(NSArray *)params {
39 47
    [IPUExcuteBridge excute:_cmd
40 48
                     params:params
41 49
                     plugin:self];
42 50
}
43
51
/**
52
添加覆盖物
53
*/
44 54
- (void)addPolygon:(NSArray *)params {
45 55
    [IPUExcuteBridge excute:_cmd
46 56
                     params:params
47 57
                     plugin:self];
48 58
}
49
59
/**
60
poi城市检索
61
*/
50 62
- (void)poiCitySearch:(NSArray *)params {
51 63
    [IPUExcuteBridge excute:_cmd
52 64
                     params:params
53 65
                     plugin:self];
54 66
}
55
67
/**
68
poi周边检索
69
*/
56 70
- (void)poiNearbySearch:(NSArray *)params {
57 71
    [IPUExcuteBridge excute:_cmd
58 72
                     params:params
59 73
                     plugin:self];
60 74
}
61
75
/**
76
lbs区域检索
77
*/
62 78
- (void)poiBoundsSearch:(NSArray *)params {
63 79
    [IPUExcuteBridge excute:_cmd
64 80
                     params:params
65 81
                     plugin:self];
66 82
}
67
83
/**
84
lbs本地检索
85
*/
68 86
- (void)lbsLocalSearch:(NSArray *)params {
69 87
    [IPUExcuteBridge excute:_cmd
70 88
                     params:params
71 89
                     plugin:self];
72 90
}
73
91
/**
92
lbs周边检索
93
*/
74 94
- (void)lbsNearbySearch:(NSArray *)params {
75 95
    [IPUExcuteBridge excute:_cmd
76 96
                     params:params
77 97
                     plugin:self];
78 98
}
79
99
/**
100
lbs区域检索
101
*/
80 102
- (void)lbsBoundsSearch:(NSArray *)params {
81 103
    [IPUExcuteBridge excute:_cmd
82 104
                     params:params

+ 3 - 1
display-center/Res/config/mobile-action.xml

@ -80,11 +80,13 @@
80 80
    <action name="cleanResource"   class="IPUFilePlugin" method="cleanResource"/>
81 81
    <action name="getRelativePath" class="IPUFilePlugin" method="getRelativePath"/>
82 82
    
83
    <!--高德地图-->
83 84
    <action name="positionCity"   class="IPUAMapPlugin" method="positionCity"/>
84 85
    <action name="location"       class="IPUAMapPlugin" method="location"/>
85 86
    <action name="selectLocation" class="IPUAMapPlugin" method="selectLocation"/>
86 87
    <action name="markMap"        class="IPUAMapPlugin" method="markMap"/>
87
88
    
89
    <!--百度地图-->
88 90
    <action name="baiduLocation"    class="IPUBMapPlugin" method="baiduLocation"/>
89 91
    <action name="clickBaiduMap"    class="IPUBMapPlugin" method="clickBaiduMap"/>
90 92
    <action name="baiduMapLocation" class="IPUBMapPlugin" method="baiduMapLocation"/>

+ 34 - 6
display-center/display-center.xcodeproj/project.pbxproj

@ -7,10 +7,10 @@
7 7
	objects = {
8 8
9 9
/* Begin PBXBuildFile section */
10
		043413AF274DD84500AE039E /* IPUVideoRecorder.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 043413AD274DD82700AE039E /* IPUVideoRecorder.framework */; };
11
		043413B0274DD84500AE039E /* IPUVideoRecorder.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 043413AD274DD82700AE039E /* IPUVideoRecorder.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
12 10
		043413B1274DD85800AE039E /* IPUOcr.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A791DA11240904960022E097 /* IPUOcr.framework */; };
13 11
		043413B2274DD85800AE039E /* IPUOcr.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = A791DA11240904960022E097 /* IPUOcr.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
12
		043413BB274DE9FB00AE039E /* IPUVideoRecorder.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 043413B9274DE9DF00AE039E /* IPUVideoRecorder.framework */; };
13
		043413BC274DE9FB00AE039E /* IPUVideoRecorder.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 043413B9274DE9DF00AE039E /* IPUVideoRecorder.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
14 14
		A71ACD16242B3D5D000B0B14 /* IPUFaceCheckPlugin.m in Sources */ = {isa = PBXBuildFile; fileRef = A71ACCEC242B3D5A000B0B14 /* IPUFaceCheckPlugin.m */; };
15 15
		A791DA3D240904CD0022E097 /* IPUOCRPlugin.m in Sources */ = {isa = PBXBuildFile; fileRef = A791DA3C240904CD0022E097 /* IPUOCRPlugin.m */; };
16 16
		A797ED60250B61EF000A3B6F /* ISO8601.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A797ED5B250B61EF000A3B6F /* ISO8601.framework */; };
@ -247,6 +247,13 @@
247 247
			remoteGlobalIDString = 04FAE4CF269C397C007352CF;
248 248
			remoteInfo = IPUVideo;
249 249
		};
250
		043413B7274DE6D200AE039E /* PBXContainerItemProxy */ = {
251
			isa = PBXContainerItemProxy;
252
			containerPortal = 043413B3274DE6D200AE039E /* IPUFoundation.xcodeproj */;
253
			proxyType = 2;
254
			remoteGlobalIDString = B21EEC6623692E4900D7427D;
255
			remoteInfo = IPUFoundation;
256
		};
250 257
		B20C6CB32296334800AECAA6 /* PBXContainerItemProxy */ = {
251 258
			isa = PBXContainerItemProxy;
252 259
			containerPortal = B20C6CA82296334800AECAA6 /* React.xcodeproj */;
@ -545,12 +552,12 @@
545 552
				B2EB107A23A7898500EBB34D /* IpuFaceCheck.framework in Embed Frameworks */,
546 553
				B2EB107B23A7898500EBB34D /* IPUFoundation.framework in Embed Frameworks */,
547 554
				B2EB107C23A7898500EBB34D /* IPULib.framework in Embed Frameworks */,
555
				043413BC274DE9FB00AE039E /* IPUVideoRecorder.framework in Embed Frameworks */,
548 556
				B2EB107D23A7898500EBB34D /* IPUMobile.framework in Embed Frameworks */,
549 557
				B2EB107E23A7898500EBB34D /* IPUMobileFunc.framework in Embed Frameworks */,
550 558
				A797ED65250B61F0000A3B6F /* JSONModel.framework in Embed Frameworks */,
551 559
				B21D12BF240774D10090B887 /* IPUVoice.framework in Embed Frameworks */,
552 560
				B2EB107F23A7898500EBB34D /* IPUMobileUI.framework in Embed Frameworks */,
553
				043413B0274DD84500AE039E /* IPUVideoRecorder.framework in Embed Frameworks */,
554 561
				B2EB108023A7898500EBB34D /* IPUPush.framework in Embed Frameworks */,
555 562
				B2EB108123A7898500EBB34D /* IPUQRCode.framework in Embed Frameworks */,
556 563
				B2EB108223A7898500EBB34D /* IPUSocialComponent.framework in Embed Frameworks */,
@ -571,7 +578,8 @@
571 578
		04169F7A274CEA1300AD9286 /* IPUBaiduMap.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = IPUBaiduMap.xcodeproj; path = "../../ios-plugin/IPUBaiduMap/IPUBaiduMap.xcodeproj"; sourceTree = "<group>"; };
572 579
		04169F80274CEA2300AD9286 /* IPUAMap.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = IPUAMap.xcodeproj; path = "../../ios-plugin/IPUAMap/IPUAMap.xcodeproj"; sourceTree = "<group>"; };
573 580
		04169F89274CF18500AD9286 /* IPUVideo.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = IPUVideo.xcodeproj; path = "../../ios-plugin/IPUVideo/IPUVideo.xcodeproj"; sourceTree = "<group>"; };
574
		043413AD274DD82700AE039E /* IPUVideoRecorder.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = IPUVideoRecorder.framework; sourceTree = "<group>"; };
581
		043413B3274DE6D200AE039E /* IPUFoundation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = IPUFoundation.xcodeproj; path = ../../ios/IPUFoundation/IPUFoundation.xcodeproj; sourceTree = "<group>"; };
582
		043413B9274DE9DF00AE039E /* IPUVideoRecorder.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = IPUVideoRecorder.framework; path = ../IPUCommon/IPUVideoRecorder.framework; sourceTree = "<group>"; };
575 583
		A71ACCEC242B3D5A000B0B14 /* IPUFaceCheckPlugin.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IPUFaceCheckPlugin.m; sourceTree = "<group>"; };
576 584
		A71ACD15242B3D5C000B0B14 /* IPUFaceCheckPlugin.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IPUFaceCheckPlugin.h; sourceTree = "<group>"; };
577 585
		A791DA11240904960022E097 /* IPUOcr.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = IPUOcr.framework; path = ../IPUCommon/IPUOcr.framework; sourceTree = "<group>"; };
@ -736,7 +744,7 @@
736 744
				B2EB107023A7896F00EBB34D /* IPUSocialComponent.framework in Frameworks */,
737 745
				B2EB107123A7896F00EBB34D /* IPUFoundation.framework in Frameworks */,
738 746
				B2EB107223A7896F00EBB34D /* IpuFaceCheck.framework in Frameworks */,
739
				043413AF274DD84500AE039E /* IPUVideoRecorder.framework in Frameworks */,
747
				043413BB274DE9FB00AE039E /* IPUVideoRecorder.framework in Frameworks */,
740 748
				B2EB107323A7896F00EBB34D /* IPUQRCode.framework in Frameworks */,
741 749
				B2EB107423A7896F00EBB34D /* IPUAMap.framework in Frameworks */,
742 750
				B24F59BA260D849000DAACF1 /* IPUKeyboard.framework in Frameworks */,
@ -850,10 +858,18 @@
850 858
			name = Products;
851 859
			sourceTree = "<group>";
852 860
		};
861
		043413B4274DE6D200AE039E /* Products */ = {
862
			isa = PBXGroup;
863
			children = (
864
				043413B8274DE6D200AE039E /* IPUFoundation.framework */,
865
			);
866
			name = Products;
867
			sourceTree = "<group>";
868
		};
853 869
		0460E86120AA9C1300CCFDA4 /* Frameworks */ = {
854 870
			isa = PBXGroup;
855 871
			children = (
856
				043413AD274DD82700AE039E /* IPUVideoRecorder.framework */,
872
				043413B9274DE9DF00AE039E /* IPUVideoRecorder.framework */,
857 873
				B23065CD26EEFCA1000EF013 /* IPUPeerTubePlugin.framework */,
858 874
				B24F59B9260D849000DAACF1 /* IPUKeyboard.framework */,
859 875
				A797ED5B250B61EF000A3B6F /* ISO8601.framework */,
@ -1114,6 +1130,7 @@
1114 1130
		EA8712331ECD8B580045E19A = {
1115 1131
			isa = PBXGroup;
1116 1132
			children = (
1133
				043413B3274DE6D200AE039E /* IPUFoundation.xcodeproj */,
1117 1134
				04169F89274CF18500AD9286 /* IPUVideo.xcodeproj */,
1118 1135
				04169F80274CEA2300AD9286 /* IPUAMap.xcodeproj */,
1119 1136
				04169F7A274CEA1300AD9286 /* IPUBaiduMap.xcodeproj */,
@ -1269,6 +1286,10 @@
1269 1286
					ProjectRef = 04169F4C274CD6C900AD9286 /* IpuFaceCheck.xcodeproj */;
1270 1287
				},
1271 1288
				{
1289
					ProductGroup = 043413B4274DE6D200AE039E /* Products */;
1290
					ProjectRef = 043413B3274DE6D200AE039E /* IPUFoundation.xcodeproj */;
1291
				},
1292
				{
1272 1293
					ProductGroup = 04169F60274CDF3C00AD9286 /* Products */;
1273 1294
					ProjectRef = 04169F5F274CDF3C00AD9286 /* IPUMobileFunc.xcodeproj */;
1274 1295
				},
@ -1461,6 +1482,13 @@
1461 1482
			remoteRef = 04169F8D274CF18500AD9286 /* PBXContainerItemProxy */;
1462 1483
			sourceTree = BUILT_PRODUCTS_DIR;
1463 1484
		};
1485
		043413B8274DE6D200AE039E /* IPUFoundation.framework */ = {
1486
			isa = PBXReferenceProxy;
1487
			fileType = wrapper.framework;
1488
			path = IPUFoundation.framework;
1489
			remoteRef = 043413B7274DE6D200AE039E /* PBXContainerItemProxy */;
1490
			sourceTree = BUILT_PRODUCTS_DIR;
1491
		};
1464 1492
		B20C6CB42296334800AECAA6 /* libReact.a */ = {
1465 1493
			isa = PBXReferenceProxy;
1466 1494
			fileType = archive.ar;

二進制
display-center/display-center.xcodeproj/project.xcworkspace/xcuserdata/mac.xcuserdatad/UserInterfaceState.xcuserstate