Browse Source

修复backWithCallback回调传参不响应的bug

liufl5 6 years ago
parent
commit
f4d306e4bc
34 changed files with 649 additions and 224 deletions
  1. BIN
      IpuCommon/Frameworks/IpuCount.framework/IpuCount
  2. 4 0
      IpuCommon/Frameworks/WadeMobile.framework/Headers/WDFlipperView.h
  3. BIN
      IpuCommon/Frameworks/WadeMobile.framework/Info.plist
  4. BIN
      IpuCommon/Frameworks/WadeMobile.framework/WadeMobile
  5. BIN
      IpuCommon/Frameworks/WadeMobileFunc.framework/WadeMobileFunc
  6. 2 6
      SuperMenu/Res/config/mobile-config.xml
  7. 181 18
      SuperMenu/SuperMenu.xcodeproj/project.pbxproj
  8. BIN
      SuperMenu/SuperMenu.xcodeproj/project.xcworkspace/xcuserdata/mac.xcuserdatad/UserInterfaceState.xcuserstate
  9. 229 117
      SuperMenu/SuperMenu.xcodeproj/xcuserdata/mac.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist
  10. 1 1
      SuperMenu/SuperMenu.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/xcschememanagement.plist
  11. 3 3
      WadeMobileFunc/WadeMobileFunc.xcodeproj/xcuserdata/mac.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist
  12. 3 3
      WadeMobileFunc/WadeMobileFunc.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/xcschememanagement.plist
  13. 3 3
      WadeMobileFunc/WadeMobileFunc/WDFMobileNetwork.m
  14. 18 27
      WadeMobileFunc/WadeMobileFunc/WDFMobileUI.m
  15. 1 1
      display-center/ReactNative/node_modules/react-native-camera/ios/RNCamera.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/xcschememanagement.plist
  16. 1 1
      display-center/ReactNative/node_modules/react-native/Libraries/ART/ART.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/xcschememanagement.plist
  17. 1 1
      display-center/ReactNative/node_modules/react-native/Libraries/ActionSheetIOS/RCTActionSheet.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/xcschememanagement.plist
  18. 2 2
      display-center/ReactNative/node_modules/react-native/Libraries/Blob/RCTBlob.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/xcschememanagement.plist
  19. 1 1
      display-center/ReactNative/node_modules/react-native/Libraries/CameraRoll/RCTCameraRoll.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/xcschememanagement.plist
  20. 1 1
      display-center/ReactNative/node_modules/react-native/Libraries/Geolocation/RCTGeolocation.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/xcschememanagement.plist
  21. 2 2
      display-center/ReactNative/node_modules/react-native/Libraries/Image/RCTImage.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/xcschememanagement.plist
  22. 2 2
      display-center/ReactNative/node_modules/react-native/Libraries/LinkingIOS/RCTLinking.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/xcschememanagement.plist
  23. 2 2
      display-center/ReactNative/node_modules/react-native/Libraries/NativeAnimation/RCTAnimation.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/xcschememanagement.plist
  24. 2 2
      display-center/ReactNative/node_modules/react-native/Libraries/Network/RCTNetwork.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/xcschememanagement.plist
  25. 2 2
      display-center/ReactNative/node_modules/react-native/Libraries/PushNotificationIOS/RCTPushNotification.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/xcschememanagement.plist
  26. 2 2
      display-center/ReactNative/node_modules/react-native/Libraries/Settings/RCTSettings.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/xcschememanagement.plist
  27. 2 2
      display-center/ReactNative/node_modules/react-native/Libraries/Text/RCTText.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/xcschememanagement.plist
  28. 1 1
      display-center/ReactNative/node_modules/react-native/Libraries/Vibration/RCTVibration.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/xcschememanagement.plist
  29. 4 4
      display-center/ReactNative/node_modules/react-native/Libraries/WebSocket/RCTWebSocket.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/xcschememanagement.plist
  30. 16 16
      display-center/ReactNative/node_modules/react-native/React/React.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/xcschememanagement.plist
  31. 159 0
      display-center/display-center.xcodeproj/project.pbxproj
  32. BIN
      display-center/display-center.xcodeproj/project.xcworkspace/xcuserdata/mac.xcuserdatad/UserInterfaceState.xcuserstate
  33. 3 3
      display-center/display-center.xcodeproj/xcuserdata/mac.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist
  34. 1 1
      display-center/display-center.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/xcschememanagement.plist

BIN
IpuCommon/Frameworks/IpuCount.framework/IpuCount


+ 4 - 0
IpuCommon/Frameworks/WadeMobile.framework/Headers/WDFlipperView.h

@ -28,6 +28,10 @@ typedef NS_OPTIONS(NSUInteger, IPUAnimationType) {
28 28
29 29
/*获取下一级视图*/
30 30
- (UIView *)getNextView;
31
/*
32
 获取上一级视图
33
 */
34
- (UIWebView *)getFormerView;
31 35
32 36
/*显示下一级视图*/
33 37
- (NSInteger)showNextView;

BIN
IpuCommon/Frameworks/WadeMobile.framework/Info.plist


BIN
IpuCommon/Frameworks/WadeMobile.framework/WadeMobile


BIN
IpuCommon/Frameworks/WadeMobileFunc.framework/WadeMobileFunc


+ 2 - 6
SuperMenu/Res/config/mobile-config.xml

@ -1,17 +1,13 @@
1 1
<?xml version="1.0" encoding="utf-8"?>
2 2
<configs>
3 3
    <!--appstore 正式环境-->
4
<!--    <config name="request_host" value="http://aiipu.com:8083"/>-->
5
<!--    <config name="request_path" value="/superapp"/>-->
4
    <config name="request_host" value="http://aiipu.com:8083"/>
5
    <config name="request_path" value="/superapp"/>
6 6
7 7
    <!--chengwb 测试环境-->
8 8
<!--    <config name="request_host" value="http://121.42.183.206:8084"/>-->
9 9
<!--    <config name="request_path" value="/superapp"/>-->
10 10
11
    <!--  wangyj  超级客户端3.0-->
12
    <config name="request_host" value="http://aiipu.com:8083"/>
13
    <config name="request_path" value="/superapp-new"/>
14
15 11
    <!--河南移动-->
16 12
<!--    <config name="request_host" value="http://aiipu.com:8084"/>-->
17 13
<!--    <config name="request_path" value="/superapp"/>-->

+ 181 - 18
SuperMenu/SuperMenu.xcodeproj/project.pbxproj

@ -10,8 +10,11 @@
10 10
		0429A27121805C34003CEE83 /* WadeMobileBundle.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 0429A26E21805C34003CEE83 /* WadeMobileBundle.bundle */; };
11 11
		0429A27521805C34003CEE83 /* fontawesome-webfont.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 0429A27021805C34003CEE83 /* fontawesome-webfont.ttf */; };
12 12
		0429A29A21805EA8003CEE83 /* Res in Resources */ = {isa = PBXBuildFile; fileRef = 0429A29921805EA8003CEE83 /* Res */; };
13
		045BF82E218AEDD900235C80 /* WadeMobile.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 045BF82C218AEDD800235C80 /* WadeMobile.framework */; };
14
		045BF82F218AEDEC00235C80 /* WadeMobile.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 045BF82C218AEDD800235C80 /* WadeMobile.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
13
		0468917C21C9080700EE1411 /* IpuPush.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0468917B21C9080700EE1411 /* IpuPush.framework */; };
14
		0468917E21C9081600EE1411 /* WadeMobile.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0468917D21C9081600EE1411 /* WadeMobile.framework */; };
15
		0468917F21C9082C00EE1411 /* WadeMobile.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 0468917D21C9081600EE1411 /* WadeMobile.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
16
		0468918021C9082C00EE1411 /* IpuPush.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 0468917B21C9080700EE1411 /* IpuPush.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
17
		0468918121C9082C00EE1411 /* IpuCount.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 048462A121C7815600A0D054 /* IpuCount.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
15 18
		048462A221C7815600A0D054 /* IpuCount.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 048462A121C7815600A0D054 /* IpuCount.framework */; };
16 19
		0A6DB49220736B1C0004056F /* SuperMenuSetting.m in Sources */ = {isa = PBXBuildFile; fileRef = 0A6DB49120736B1C0004056F /* SuperMenuSetting.m */; };
17 20
		0A780E621EE8EACF004AE072 /* IpuQrCode.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0A780E611EE8EACF004AE072 /* IpuQrCode.framework */; };
@ -28,12 +31,8 @@
28 31
		B28C9DDF21C394960006191A /* icon_back_suspend@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = B28C9DDB21C394960006191A /* icon_back_suspend@2x.png */; };
29 32
		B28C9DE221C3A3180006191A /* icon_about_app@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = B28C9DE021C3A3180006191A /* icon_about_app@2x.png */; };
30 33
		B28C9DE321C3A3180006191A /* icon_rank@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = B28C9DE121C3A3180006191A /* icon_rank@2x.png */; };
31
		B295CED221C7451E002F4A2D /* IpuPush.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B295CED121C7451E002F4A2D /* IpuPush.framework */; };
32
		B295CED321C74526002F4A2D /* IpuPush.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = B295CED121C7451E002F4A2D /* IpuPush.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
33 34
		B2EC034621C73932004F38B6 /* WadeMobileFunc.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 045BF82B218AEDD800235C80 /* WadeMobileFunc.framework */; };
34 35
		B2EC034721C7393A004F38B6 /* WadeMobileFunc.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 045BF82B218AEDD800235C80 /* WadeMobileFunc.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
35
		B2EC034921C7396A004F38B6 /* IpuCount.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B2EC034821C7396A004F38B6 /* IpuCount.framework */; };
36
		B2EC034A21C73974004F38B6 /* IpuCount.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = B2EC034821C7396A004F38B6 /* IpuCount.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
37 36
		EA3F49BE1E890B4B003C86BD /* AppMenuSettingPlugin.m in Sources */ = {isa = PBXBuildFile; fileRef = EA3F49BD1E890B4B003C86BD /* AppMenuSettingPlugin.m */; };
38 37
		EA45A5911E077735001275C9 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = EA45A5901E077735001275C9 /* main.m */; };
39 38
		EA45A5941E077735001275C9 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = EA45A5931E077735001275C9 /* AppDelegate.m */; };
@ -50,6 +49,65 @@
50 49
		EAEBF4691E9C25D3008DCFEB /* RemoteWebVC.m in Sources */ = {isa = PBXBuildFile; fileRef = EAEBF4681E9C25D3008DCFEB /* RemoteWebVC.m */; };
51 50
/* End PBXBuildFile section */
52 51
52
/* Begin PBXContainerItemProxy section */
53
		0468910021C8E78B00EE1411 /* PBXContainerItemProxy */ = {
54
			isa = PBXContainerItemProxy;
55
			containerPortal = 046890F921C8E78B00EE1411 /* WadeMobileFunc.xcodeproj */;
56
			proxyType = 2;
57
			remoteGlobalIDString = E2DE1AD41B42DD9500762141;
58
			remoteInfo = WadeMobileFunc;
59
		};
60
		0468910221C8E78B00EE1411 /* PBXContainerItemProxy */ = {
61
			isa = PBXContainerItemProxy;
62
			containerPortal = 046890F921C8E78B00EE1411 /* WadeMobileFunc.xcodeproj */;
63
			proxyType = 2;
64
			remoteGlobalIDString = 0AE1E0841C7EE95900FCCD24;
65
			remoteInfo = WadeMobileFuncTests;
66
		};
67
		0468910D21C8EA0700EE1411 /* PBXContainerItemProxy */ = {
68
			isa = PBXContainerItemProxy;
69
			containerPortal = 0468910421C8EA0600EE1411 /* WadeMobile.xcodeproj */;
70
			proxyType = 2;
71
			remoteGlobalIDString = 614A1CD61B2142130099793B;
72
			remoteInfo = WadeMobile;
73
		};
74
		0468910F21C8EA0700EE1411 /* PBXContainerItemProxy */ = {
75
			isa = PBXContainerItemProxy;
76
			containerPortal = 0468910421C8EA0600EE1411 /* WadeMobile.xcodeproj */;
77
			proxyType = 2;
78
			remoteGlobalIDString = 614A1CE11B2142130099793B;
79
			remoteInfo = WadeMobileTests;
80
		};
81
		0468911121C8EA0700EE1411 /* PBXContainerItemProxy */ = {
82
			isa = PBXContainerItemProxy;
83
			containerPortal = 0468910421C8EA0600EE1411 /* WadeMobile.xcodeproj */;
84
			proxyType = 2;
85
			remoteGlobalIDString = E2D93A741B89BA2800D1DE7C;
86
			remoteInfo = WadeMobileBundle;
87
		};
88
		0468911321C8EA0700EE1411 /* PBXContainerItemProxy */ = {
89
			isa = PBXContainerItemProxy;
90
			containerPortal = 0468910421C8EA0600EE1411 /* WadeMobile.xcodeproj */;
91
			proxyType = 2;
92
			remoteGlobalIDString = 0A791C221FD102C0003CD586;
93
			remoteInfo = WadeMobileTestUnit;
94
		};
95
		0468918921C91C8700EE1411 /* PBXContainerItemProxy */ = {
96
			isa = PBXContainerItemProxy;
97
			containerPortal = 0468918421C91C8600EE1411 /* IpuCount.xcodeproj */;
98
			proxyType = 2;
99
			remoteGlobalIDString = EAA4B4D61C897885000342A1;
100
			remoteInfo = IpuCount;
101
		};
102
		0468918B21C91C8700EE1411 /* PBXContainerItemProxy */ = {
103
			isa = PBXContainerItemProxy;
104
			containerPortal = 0468918421C91C8600EE1411 /* IpuCount.xcodeproj */;
105
			proxyType = 2;
106
			remoteGlobalIDString = EAA4B4E01C897885000342A1;
107
			remoteInfo = IpuCountTests;
108
		};
109
/* End PBXContainerItemProxy section */
110
53 111
/* Begin PBXCopyFilesBuildPhase section */
54 112
		EA45A5B21E0777C0001275C9 /* Embed Frameworks */ = {
55 113
			isa = PBXCopyFilesBuildPhase;
@ -57,11 +115,11 @@
57 115
			dstPath = "";
58 116
			dstSubfolderSpec = 10;
59 117
			files = (
60
				B295CED321C74526002F4A2D /* IpuPush.framework in Embed Frameworks */,
61
				B2EC034A21C73974004F38B6 /* IpuCount.framework in Embed Frameworks */,
118
				0468917F21C9082C00EE1411 /* WadeMobile.framework in Embed Frameworks */,
119
				0468918021C9082C00EE1411 /* IpuPush.framework in Embed Frameworks */,
120
				0468918121C9082C00EE1411 /* IpuCount.framework in Embed Frameworks */,
62 121
				B2EC034721C7393A004F38B6 /* WadeMobileFunc.framework in Embed Frameworks */,
63 122
				B24886B921BFA1F0005AFB7C /* IpuMap.framework in Embed Frameworks */,
64
				045BF82F218AEDEC00235C80 /* WadeMobile.framework in Embed Frameworks */,
65 123
				0A780E631EE8EAD4004AE072 /* IpuQrCode.framework in Embed Frameworks */,
66 124
				EA45A5AB1E0777BF001275C9 /* IpuLib.framework in Embed Frameworks */,
67 125
				EA45A5B11E0777C0001275C9 /* WadeMobileUI.framework in Embed Frameworks */,
@ -76,8 +134,12 @@
76 134
		0429A27021805C34003CEE83 /* fontawesome-webfont.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; name = "fontawesome-webfont.ttf"; path = "../IpuCommon/Frameworks/fontawesome-webfont.ttf"; sourceTree = "<group>"; };
77 135
		0429A29921805EA8003CEE83 /* Res */ = {isa = PBXFileReference; lastKnownFileType = folder; path = Res; sourceTree = "<group>"; };
78 136
		045BF82B218AEDD800235C80 /* WadeMobileFunc.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = WadeMobileFunc.framework; path = ../IpuCommon/Frameworks/WadeMobileFunc.framework; sourceTree = "<group>"; };
79
		045BF82C218AEDD800235C80 /* WadeMobile.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = WadeMobile.framework; path = ../IpuCommon/Frameworks/WadeMobile.framework; sourceTree = "<group>"; };
80 137
		045E1FF22175E2E400F0D45A /* SuperMenu_Enterprise-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; name = "SuperMenu_Enterprise-Info.plist"; path = "/Users/mac/work/asiainfo/ios-share/SuperMenu/SuperMenu_Enterprise-Info.plist"; sourceTree = "<absolute>"; };
138
		046890F921C8E78B00EE1411 /* WadeMobileFunc.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = WadeMobileFunc.xcodeproj; path = ../WadeMobileFunc/WadeMobileFunc.xcodeproj; sourceTree = "<group>"; };
139
		0468910421C8EA0600EE1411 /* WadeMobile.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = WadeMobile.xcodeproj; path = ../../ios/WadeMobile/WadeMobile.xcodeproj; sourceTree = "<group>"; };
140
		0468917B21C9080700EE1411 /* IpuPush.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = IpuPush.framework; path = ../IpuCommon/Frameworks/IpuPush.framework; sourceTree = "<group>"; };
141
		0468917D21C9081600EE1411 /* WadeMobile.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = WadeMobile.framework; path = ../IpuCommon/Frameworks/WadeMobile.framework; sourceTree = "<group>"; };
142
		0468918421C91C8600EE1411 /* IpuCount.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = IpuCount.xcodeproj; path = "../../ios-plugin/IpuCount/IpuCount.xcodeproj"; sourceTree = "<group>"; };
81 143
		048462A121C7815600A0D054 /* IpuCount.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = IpuCount.framework; path = ../IpuCommon/Frameworks/IpuCount.framework; sourceTree = "<group>"; };
82 144
		0A6DB49020736B1C0004056F /* SuperMenuSetting.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SuperMenuSetting.h; sourceTree = "<group>"; };
83 145
		0A6DB49120736B1C0004056F /* SuperMenuSetting.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SuperMenuSetting.m; sourceTree = "<group>"; };
@ -97,8 +159,6 @@
97 159
		B28C9DDB21C394960006191A /* icon_back_suspend@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "icon_back_suspend@2x.png"; sourceTree = "<group>"; };
98 160
		B28C9DE021C3A3180006191A /* icon_about_app@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "icon_about_app@2x.png"; sourceTree = "<group>"; };
99 161
		B28C9DE121C3A3180006191A /* icon_rank@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "icon_rank@2x.png"; sourceTree = "<group>"; };
100
		B295CED121C7451E002F4A2D /* IpuPush.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = IpuPush.framework; path = ../IpuCommon/Frameworks/IpuPush.framework; sourceTree = "<group>"; };
101
		B2EC034821C7396A004F38B6 /* IpuCount.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = IpuCount.framework; path = ../IpuCommon/Frameworks/IpuCount.framework; sourceTree = "<group>"; };
102 162
		EA3F49BC1E890B4B003C86BD /* AppMenuSettingPlugin.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AppMenuSettingPlugin.h; sourceTree = "<group>"; };
103 163
		EA3F49BD1E890B4B003C86BD /* AppMenuSettingPlugin.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AppMenuSettingPlugin.m; sourceTree = "<group>"; };
104 164
		EA45A58C1E077735001275C9 /* SuperMenu.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = SuperMenu.app; sourceTree = BUILT_PRODUCTS_DIR; };
@ -127,26 +187,55 @@
127 187
			isa = PBXFrameworksBuildPhase;
128 188
			buildActionMask = 2147483647;
129 189
			files = (
130
				B295CED221C7451E002F4A2D /* IpuPush.framework in Frameworks */,
131
				B2EC034921C7396A004F38B6 /* IpuCount.framework in Frameworks */,
132 190
				B2EC034621C73932004F38B6 /* WadeMobileFunc.framework in Frameworks */,
191
				0468917E21C9081600EE1411 /* WadeMobile.framework in Frameworks */,
133 192
				048462A221C7815600A0D054 /* IpuCount.framework in Frameworks */,
134 193
				EA45A5AA1E0777BF001275C9 /* IpuLib.framework in Frameworks */,
135 194
				EA45A5B01E0777C0001275C9 /* WadeMobileUI.framework in Frameworks */,
136 195
				0A780E621EE8EACF004AE072 /* IpuQrCode.framework in Frameworks */,
196
				0468917C21C9080700EE1411 /* IpuPush.framework in Frameworks */,
137 197
				B24886B821BFA1A3005AFB7C /* IpuMap.framework in Frameworks */,
138
				045BF82E218AEDD900235C80 /* WadeMobile.framework in Frameworks */,
139 198
			);
140 199
			runOnlyForDeploymentPostprocessing = 0;
141 200
		};
142 201
/* End PBXFrameworksBuildPhase section */
143 202
144 203
/* Begin PBXGroup section */
204
		046890FA21C8E78B00EE1411 /* Products */ = {
205
			isa = PBXGroup;
206
			children = (
207
				0468910121C8E78B00EE1411 /* WadeMobileFunc.framework */,
208
				0468910321C8E78B00EE1411 /* WadeMobileFuncTests.xctest */,
209
			);
210
			name = Products;
211
			sourceTree = "<group>";
212
		};
213
		0468910521C8EA0600EE1411 /* Products */ = {
214
			isa = PBXGroup;
215
			children = (
216
				0468910E21C8EA0700EE1411 /* WadeMobile.framework */,
217
				0468911021C8EA0700EE1411 /* WadeMobileTests.xctest */,
218
				0468911221C8EA0700EE1411 /* WadeMobileBundle.bundle */,
219
				0468911421C8EA0700EE1411 /* WadeMobileTestUnit.xctest */,
220
			);
221
			name = Products;
222
			sourceTree = "<group>";
223
		};
224
		0468918521C91C8600EE1411 /* Products */ = {
225
			isa = PBXGroup;
226
			children = (
227
				0468918A21C91C8700EE1411 /* IpuCount.framework */,
228
				0468918C21C91C8700EE1411 /* IpuCountTests.xctest */,
229
			);
230
			name = Products;
231
			sourceTree = "<group>";
232
		};
145 233
		0A780E601EE8EAB0004AE072 /* Framework */ = {
146 234
			isa = PBXGroup;
147 235
			children = (
236
				0468917D21C9081600EE1411 /* WadeMobile.framework */,
237
				0468917B21C9080700EE1411 /* IpuPush.framework */,
148 238
				048462A121C7815600A0D054 /* IpuCount.framework */,
149
				045BF82C218AEDD800235C80 /* WadeMobile.framework */,
150 239
				045BF82B218AEDD800235C80 /* WadeMobileFunc.framework */,
151 240
				0429A27021805C34003CEE83 /* fontawesome-webfont.ttf */,
152 241
				0429A26E21805C34003CEE83 /* WadeMobileBundle.bundle */,
@ -182,8 +271,6 @@
182 271
		B2EC034521C73932004F38B6 /* Frameworks */ = {
183 272
			isa = PBXGroup;
184 273
			children = (
185
				B295CED121C7451E002F4A2D /* IpuPush.framework */,
186
				B2EC034821C7396A004F38B6 /* IpuCount.framework */,
187 274
			);
188 275
			name = Frameworks;
189 276
			sourceTree = "<group>";
@ -191,6 +278,9 @@
191 278
		EA45A5831E077735001275C9 = {
192 279
			isa = PBXGroup;
193 280
			children = (
281
				0468918421C91C8600EE1411 /* IpuCount.xcodeproj */,
282
				0468910421C8EA0600EE1411 /* WadeMobile.xcodeproj */,
283
				046890F921C8E78B00EE1411 /* WadeMobileFunc.xcodeproj */,
194 284
				0429A29921805EA8003CEE83 /* Res */,
195 285
				0A780E601EE8EAB0004AE072 /* Framework */,
196 286
				EA45A58E1E077735001275C9 /* SuperMenu */,
@ -316,6 +406,20 @@
316 406
			mainGroup = EA45A5831E077735001275C9;
317 407
			productRefGroup = EA45A58D1E077735001275C9 /* Products */;
318 408
			projectDirPath = "";
409
			projectReferences = (
410
				{
411
					ProductGroup = 0468918521C91C8600EE1411 /* Products */;
412
					ProjectRef = 0468918421C91C8600EE1411 /* IpuCount.xcodeproj */;
413
				},
414
				{
415
					ProductGroup = 0468910521C8EA0600EE1411 /* Products */;
416
					ProjectRef = 0468910421C8EA0600EE1411 /* WadeMobile.xcodeproj */;
417
				},
418
				{
419
					ProductGroup = 046890FA21C8E78B00EE1411 /* Products */;
420
					ProjectRef = 046890F921C8E78B00EE1411 /* WadeMobileFunc.xcodeproj */;
421
				},
422
			);
319 423
			projectRoot = "";
320 424
			targets = (
321 425
				EA45A58B1E077735001275C9 /* SuperMenu */,
@ -323,6 +427,65 @@
323 427
		};
324 428
/* End PBXProject section */
325 429
430
/* Begin PBXReferenceProxy section */
431
		0468910121C8E78B00EE1411 /* WadeMobileFunc.framework */ = {
432
			isa = PBXReferenceProxy;
433
			fileType = wrapper.framework;
434
			path = WadeMobileFunc.framework;
435
			remoteRef = 0468910021C8E78B00EE1411 /* PBXContainerItemProxy */;
436
			sourceTree = BUILT_PRODUCTS_DIR;
437
		};
438
		0468910321C8E78B00EE1411 /* WadeMobileFuncTests.xctest */ = {
439
			isa = PBXReferenceProxy;
440
			fileType = wrapper.cfbundle;
441
			path = WadeMobileFuncTests.xctest;
442
			remoteRef = 0468910221C8E78B00EE1411 /* PBXContainerItemProxy */;
443
			sourceTree = BUILT_PRODUCTS_DIR;
444
		};
445
		0468910E21C8EA0700EE1411 /* WadeMobile.framework */ = {
446
			isa = PBXReferenceProxy;
447
			fileType = wrapper.framework;
448
			path = WadeMobile.framework;
449
			remoteRef = 0468910D21C8EA0700EE1411 /* PBXContainerItemProxy */;
450
			sourceTree = BUILT_PRODUCTS_DIR;
451
		};
452
		0468911021C8EA0700EE1411 /* WadeMobileTests.xctest */ = {
453
			isa = PBXReferenceProxy;
454
			fileType = wrapper.cfbundle;
455
			path = WadeMobileTests.xctest;
456
			remoteRef = 0468910F21C8EA0700EE1411 /* PBXContainerItemProxy */;
457
			sourceTree = BUILT_PRODUCTS_DIR;
458
		};
459
		0468911221C8EA0700EE1411 /* WadeMobileBundle.bundle */ = {
460
			isa = PBXReferenceProxy;
461
			fileType = wrapper.cfbundle;
462
			path = WadeMobileBundle.bundle;
463
			remoteRef = 0468911121C8EA0700EE1411 /* PBXContainerItemProxy */;
464
			sourceTree = BUILT_PRODUCTS_DIR;
465
		};
466
		0468911421C8EA0700EE1411 /* WadeMobileTestUnit.xctest */ = {
467
			isa = PBXReferenceProxy;
468
			fileType = wrapper.cfbundle;
469
			path = WadeMobileTestUnit.xctest;
470
			remoteRef = 0468911321C8EA0700EE1411 /* PBXContainerItemProxy */;
471
			sourceTree = BUILT_PRODUCTS_DIR;
472
		};
473
		0468918A21C91C8700EE1411 /* IpuCount.framework */ = {
474
			isa = PBXReferenceProxy;
475
			fileType = wrapper.framework;
476
			path = IpuCount.framework;
477
			remoteRef = 0468918921C91C8700EE1411 /* PBXContainerItemProxy */;
478
			sourceTree = BUILT_PRODUCTS_DIR;
479
		};
480
		0468918C21C91C8700EE1411 /* IpuCountTests.xctest */ = {
481
			isa = PBXReferenceProxy;
482
			fileType = wrapper.cfbundle;
483
			path = IpuCountTests.xctest;
484
			remoteRef = 0468918B21C91C8700EE1411 /* PBXContainerItemProxy */;
485
			sourceTree = BUILT_PRODUCTS_DIR;
486
		};
487
/* End PBXReferenceProxy section */
488
326 489
/* Begin PBXResourcesBuildPhase section */
327 490
		EA45A58A1E077735001275C9 /* Resources */ = {
328 491
			isa = PBXResourcesBuildPhase;

BIN
SuperMenu/SuperMenu.xcodeproj/project.xcworkspace/xcuserdata/mac.xcuserdatad/UserInterfaceState.xcuserstate


+ 229 - 117
SuperMenu/SuperMenu.xcodeproj/xcuserdata/mac.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist

@ -26,11 +26,11 @@
26 26
            ignoreCount = "0"
27 27
            continueAfterRunningActions = "No"
28 28
            filePath = "SuperMenu/multiple/AppManagePlugin.m"
29
            timestampString = "566811249.200406"
29
            timestampString = "566896325.232595"
30 30
            startingColumnNumber = "9223372036854775807"
31 31
            endingColumnNumber = "9223372036854775807"
32
            startingLineNumber = "147"
33
            endingLineNumber = "147"
32
            startingLineNumber = "148"
33
            endingLineNumber = "148"
34 34
            landmarkName = "-openNativeApp:url:"
35 35
            landmarkType = "7">
36 36
         </BreakpointContent>
@ -42,11 +42,11 @@
42 42
            ignoreCount = "0"
43 43
            continueAfterRunningActions = "No"
44 44
            filePath = "SuperMenu/multiple/AppManagePlugin.m"
45
            timestampString = "566811249.200755"
45
            timestampString = "566896325.232729"
46 46
            startingColumnNumber = "9223372036854775807"
47 47
            endingColumnNumber = "9223372036854775807"
48
            startingLineNumber = "208"
49
            endingLineNumber = "208"
48
            startingLineNumber = "209"
49
            endingLineNumber = "209"
50 50
            landmarkName = "-getSubAppParams"
51 51
            landmarkType = "7">
52 52
         </BreakpointContent>
@ -58,11 +58,11 @@
58 58
            ignoreCount = "0"
59 59
            continueAfterRunningActions = "No"
60 60
            filePath = "SuperMenu/multiple/AppManagePlugin.m"
61
            timestampString = "566811249.2009979"
61
            timestampString = "566896325.232803"
62 62
            startingColumnNumber = "9223372036854775807"
63 63
            endingColumnNumber = "9223372036854775807"
64
            startingLineNumber = "234"
65
            endingLineNumber = "234"
64
            startingLineNumber = "242"
65
            endingLineNumber = "242"
66 66
            landmarkName = "-getChoice:"
67 67
            landmarkType = "7">
68 68
         </BreakpointContent>
@ -74,11 +74,11 @@
74 74
            ignoreCount = "0"
75 75
            continueAfterRunningActions = "No"
76 76
            filePath = "SuperMenu/multiple/AppManagePlugin.m"
77
            timestampString = "566811249.201232"
77
            timestampString = "566896325.232867"
78 78
            startingColumnNumber = "9223372036854775807"
79 79
            endingColumnNumber = "9223372036854775807"
80
            startingLineNumber = "268"
81
            endingLineNumber = "268"
80
            startingLineNumber = "276"
81
            endingLineNumber = "276"
82 82
            landmarkName = "-closeIpuApp:"
83 83
            landmarkType = "7">
84 84
         </BreakpointContent>
@ -90,11 +90,11 @@
90 90
            ignoreCount = "0"
91 91
            continueAfterRunningActions = "No"
92 92
            filePath = "SuperMenu/multiple/AppManagePlugin.m"
93
            timestampString = "566811249.201462"
93
            timestampString = "566896325.232928"
94 94
            startingColumnNumber = "9223372036854775807"
95 95
            endingColumnNumber = "9223372036854775807"
96
            startingLineNumber = "277"
97
            endingLineNumber = "277"
96
            startingLineNumber = "285"
97
            endingLineNumber = "285"
98 98
            landmarkName = "-initNfc:"
99 99
            landmarkType = "7">
100 100
            <Locations>
@ -106,11 +106,11 @@
106 106
                  moduleName = "SuperMenu"
107 107
                  usesParentBreakpointCondition = "Yes"
108 108
                  urlString = "file:///Users/mac/work/asiainfo/ios-share/SuperMenu/SuperMenu/multiple/AppManagePlugin.m"
109
                  timestampString = "566811249.312896"
109
                  timestampString = "566930488.527329"
110 110
                  startingColumnNumber = "9223372036854775807"
111 111
                  endingColumnNumber = "9223372036854775807"
112
                  startingLineNumber = "277"
113
                  endingLineNumber = "277"
112
                  startingLineNumber = "285"
113
                  endingLineNumber = "285"
114 114
                  offsetFromSymbolStart = "60">
115 115
               </Location>
116 116
               <Location
@ -121,11 +121,11 @@
121 121
                  moduleName = "SuperMenu"
122 122
                  usesParentBreakpointCondition = "Yes"
123 123
                  urlString = "file:///Users/mac/work/asiainfo/ios-share/SuperMenu/SuperMenu/multiple/AppManagePlugin.m"
124
                  timestampString = "566811249.314733"
124
                  timestampString = "566930488.528883"
125 125
                  startingColumnNumber = "9223372036854775807"
126 126
                  endingColumnNumber = "9223372036854775807"
127
                  startingLineNumber = "279"
128
                  endingLineNumber = "279"
127
                  startingLineNumber = "287"
128
                  endingLineNumber = "287"
129 129
                  offsetFromSymbolStart = "72">
130 130
               </Location>
131 131
            </Locations>
@ -250,54 +250,6 @@
250 250
            ignoreCount = "0"
251 251
            continueAfterRunningActions = "No"
252 252
            filePath = "SuperMenu/plugin/SuperMenuSetting.m"
253
            timestampString = "562757323.367468"
254
            startingColumnNumber = "9223372036854775807"
255
            endingColumnNumber = "9223372036854775807"
256
            startingLineNumber = "21"
257
            endingLineNumber = "21"
258
            landmarkName = "-getCacheSize:"
259
            landmarkType = "7">
260
         </BreakpointContent>
261
      </BreakpointProxy>
262
      <BreakpointProxy
263
         BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
264
         <BreakpointContent
265
            shouldBeEnabled = "Yes"
266
            ignoreCount = "0"
267
            continueAfterRunningActions = "No"
268
            filePath = "SuperMenu/plugin/SuperMenuSetting.m"
269
            timestampString = "562757328.855593"
270
            startingColumnNumber = "9223372036854775807"
271
            endingColumnNumber = "9223372036854775807"
272
            startingLineNumber = "36"
273
            endingLineNumber = "36"
274
            landmarkName = "-clearCache:"
275
            landmarkType = "7">
276
         </BreakpointContent>
277
      </BreakpointProxy>
278
      <BreakpointProxy
279
         BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
280
         <BreakpointContent
281
            shouldBeEnabled = "Yes"
282
            ignoreCount = "0"
283
            continueAfterRunningActions = "No"
284
            filePath = "SuperMenu/plugin/SuperMenuSetting.m"
285
            timestampString = "562757331.039531"
286
            startingColumnNumber = "9223372036854775807"
287
            endingColumnNumber = "9223372036854775807"
288
            startingLineNumber = "43"
289
            endingLineNumber = "43"
290
            landmarkName = "-clearCache"
291
            landmarkType = "7">
292
         </BreakpointContent>
293
      </BreakpointProxy>
294
      <BreakpointProxy
295
         BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
296
         <BreakpointContent
297
            shouldBeEnabled = "Yes"
298
            ignoreCount = "0"
299
            continueAfterRunningActions = "No"
300
            filePath = "SuperMenu/plugin/SuperMenuSetting.m"
301 253
            timestampString = "562757333.031695"
302 254
            startingColumnNumber = "9223372036854775807"
303 255
            endingColumnNumber = "9223372036854775807"
@ -329,22 +281,6 @@
329 281
            shouldBeEnabled = "Yes"
330 282
            ignoreCount = "0"
331 283
            continueAfterRunningActions = "No"
332
            filePath = "SuperMenu/plugin/SuperMenuSetting.m"
333
            timestampString = "562757343.7275831"
334
            startingColumnNumber = "9223372036854775807"
335
            endingColumnNumber = "9223372036854775807"
336
            startingLineNumber = "114"
337
            endingLineNumber = "114"
338
            landmarkName = "-clearCacheWithFilePath:"
339
            landmarkType = "7">
340
         </BreakpointContent>
341
      </BreakpointProxy>
342
      <BreakpointProxy
343
         BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
344
         <BreakpointContent
345
            shouldBeEnabled = "Yes"
346
            ignoreCount = "0"
347
            continueAfterRunningActions = "No"
348 284
            filePath = "SuperMenu/multiple/AppMenuSettingPlugin.m"
349 285
            timestampString = "562757413.183123"
350 286
            startingColumnNumber = "9223372036854775807"
@ -442,7 +378,7 @@
442 378
            ignoreCount = "0"
443 379
            continueAfterRunningActions = "No"
444 380
            filePath = "../../ios/WadeMobile/WadeMobile/frame/template/WDTemplateMainController.m"
445
            timestampString = "566724369.001703"
381
            timestampString = "566896325.233234"
446 382
            startingColumnNumber = "9223372036854775807"
447 383
            endingColumnNumber = "9223372036854775807"
448 384
            startingLineNumber = "307"
@ -473,22 +409,6 @@
473 409
            shouldBeEnabled = "Yes"
474 410
            ignoreCount = "0"
475 411
            continueAfterRunningActions = "No"
476
            filePath = "../WadeMobileFunc/WadeMobileFunc/WDFMobileUI.m"
477
            timestampString = "566744038.07934"
478
            startingColumnNumber = "9223372036854775807"
479
            endingColumnNumber = "9223372036854775807"
480
            startingLineNumber = "166"
481
            endingLineNumber = "166"
482
            landmarkName = "-openBrowser:"
483
            landmarkType = "7">
484
         </BreakpointContent>
485
      </BreakpointProxy>
486
      <BreakpointProxy
487
         BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
488
         <BreakpointContent
489
            shouldBeEnabled = "Yes"
490
            ignoreCount = "0"
491
            continueAfterRunningActions = "No"
492 412
            filePath = "../WadeMobileFunc/WadeMobileFunc/util/WDFDatabaseHelper.m"
493 413
            timestampString = "566729791.986195"
494 414
            startingColumnNumber = "9223372036854775807"
@ -538,7 +458,7 @@
538 458
            ignoreCount = "0"
539 459
            continueAfterRunningActions = "No"
540 460
            filePath = "../WadeMobileFunc/WadeMobileFunc/WDFMobileNetwork.m"
541
            timestampString = "566743622.8922729"
461
            timestampString = "566930488.389115"
542 462
            startingColumnNumber = "9223372036854775807"
543 463
            endingColumnNumber = "9223372036854775807"
544 464
            startingLineNumber = "66"
@ -554,12 +474,12 @@
554 474
            ignoreCount = "0"
555 475
            continueAfterRunningActions = "No"
556 476
            filePath = "../WadeMobileFunc/WadeMobileFunc/WDFMobileUI.m"
557
            timestampString = "566744038.079582"
477
            timestampString = "566930488.389179"
558 478
            startingColumnNumber = "9223372036854775807"
559 479
            endingColumnNumber = "9223372036854775807"
560
            startingLineNumber = "376"
561
            endingLineNumber = "376"
562
            landmarkName = "-openPage:data:isCurrView:"
480
            startingLineNumber = "756"
481
            endingLineNumber = "756"
482
            landmarkName = "-getPage:"
563 483
            landmarkType = "7">
564 484
         </BreakpointContent>
565 485
      </BreakpointProxy>
@ -569,13 +489,13 @@
569 489
            shouldBeEnabled = "Yes"
570 490
            ignoreCount = "0"
571 491
            continueAfterRunningActions = "No"
572
            filePath = "../WadeMobileFunc/WadeMobileFunc/WDFMobileUI.m"
573
            timestampString = "566744038.0796241"
492
            filePath = "../../ios/WadeMobile/WadeMobile/frame/template/WDTemplateWebView.m"
493
            timestampString = "566896325.234219"
574 494
            startingColumnNumber = "9223372036854775807"
575 495
            endingColumnNumber = "9223372036854775807"
576
            startingLineNumber = "765"
577
            endingLineNumber = "765"
578
            landmarkName = "-getPage:"
496
            startingLineNumber = "80"
497
            endingLineNumber = "80"
498
            landmarkName = "-loadTemplateUrl:"
579 499
            landmarkType = "7">
580 500
         </BreakpointContent>
581 501
      </BreakpointProxy>
@ -585,13 +505,205 @@
585 505
            shouldBeEnabled = "Yes"
586 506
            ignoreCount = "0"
587 507
            continueAfterRunningActions = "No"
588
            filePath = "../../ios/WadeMobile/WadeMobile/frame/template/WDTemplateWebView.m"
589
            timestampString = "566743729.372501"
508
            filePath = "../../ios/WadeMobile/WadeMobile/frame/template/IpuTemplateSubController.m"
509
            timestampString = "566892296.8676749"
590 510
            startingColumnNumber = "9223372036854775807"
591 511
            endingColumnNumber = "9223372036854775807"
592
            startingLineNumber = "80"
593
            endingLineNumber = "80"
594
            landmarkName = "-loadTemplateUrl:"
512
            startingLineNumber = "296"
513
            endingLineNumber = "296"
514
            landmarkName = "-loadSubAppPage:withParam:"
515
            landmarkType = "7">
516
         </BreakpointContent>
517
      </BreakpointProxy>
518
      <BreakpointProxy
519
         BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
520
         <BreakpointContent
521
            shouldBeEnabled = "Yes"
522
            ignoreCount = "0"
523
            continueAfterRunningActions = "No"
524
            filePath = "../../ios/WadeMobile/WadeMobile/frame/WDAppDelegate.m"
525
            timestampString = "566892326.939468"
526
            startingColumnNumber = "9223372036854775807"
527
            endingColumnNumber = "9223372036854775807"
528
            startingLineNumber = "225"
529
            endingLineNumber = "225"
530
            landmarkName = "-parseURLString:"
531
            landmarkType = "7">
532
         </BreakpointContent>
533
      </BreakpointProxy>
534
      <BreakpointProxy
535
         BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
536
         <BreakpointContent
537
            shouldBeEnabled = "Yes"
538
            ignoreCount = "0"
539
            continueAfterRunningActions = "No"
540
            filePath = "../../ios/WadeMobile/WadeMobile/frame/WDNetMainController.m"
541
            timestampString = "566892331.6997809"
542
            startingColumnNumber = "9223372036854775807"
543
            endingColumnNumber = "9223372036854775807"
544
            startingLineNumber = "183"
545
            endingLineNumber = "183"
546
            landmarkName = "-loadingStart:"
547
            landmarkType = "7">
548
         </BreakpointContent>
549
      </BreakpointProxy>
550
      <BreakpointProxy
551
         BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
552
         <BreakpointContent
553
            shouldBeEnabled = "Yes"
554
            ignoreCount = "0"
555
            continueAfterRunningActions = "No"
556
            filePath = "../../ios/WadeMobile/WadeMobile/frame/WDNetMainController.m"
557
            timestampString = "566892334.85928"
558
            startingColumnNumber = "9223372036854775807"
559
            endingColumnNumber = "9223372036854775807"
560
            startingLineNumber = "190"
561
            endingLineNumber = "190"
562
            landmarkName = "-loadingStop"
563
            landmarkType = "7">
564
         </BreakpointContent>
565
      </BreakpointProxy>
566
      <BreakpointProxy
567
         BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
568
         <BreakpointContent
569
            shouldBeEnabled = "Yes"
570
            ignoreCount = "0"
571
            continueAfterRunningActions = "No"
572
            filePath = "../../ios/WadeMobile/WadeMobile/frame/WDViewController.m"
573
            timestampString = "566894367.197819"
574
            startingColumnNumber = "9223372036854775807"
575
            endingColumnNumber = "9223372036854775807"
576
            startingLineNumber = "273"
577
            endingLineNumber = "273"
578
            landmarkName = "-webViewDidFinishLoad:"
579
            landmarkType = "7">
580
         </BreakpointContent>
581
      </BreakpointProxy>
582
      <BreakpointProxy
583
         BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
584
         <BreakpointContent
585
            shouldBeEnabled = "Yes"
586
            ignoreCount = "0"
587
            continueAfterRunningActions = "No"
588
            filePath = "../WadeMobileFunc/WadeMobileFunc/IpuAuthentication.m"
589
            timestampString = "566892452.866594"
590
            startingColumnNumber = "9223372036854775807"
591
            endingColumnNumber = "9223372036854775807"
592
            startingLineNumber = "84"
593
            endingLineNumber = "84"
594
            landmarkName = "-setGestureAuthentication:"
595
            landmarkType = "7">
596
         </BreakpointContent>
597
      </BreakpointProxy>
598
      <BreakpointProxy
599
         BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
600
         <BreakpointContent
601
            shouldBeEnabled = "Yes"
602
            ignoreCount = "0"
603
            continueAfterRunningActions = "No"
604
            filePath = "SuperMenu/plugin/SuperMenuSetting.m"
605
            timestampString = "566892489.592747"
606
            startingColumnNumber = "9223372036854775807"
607
            endingColumnNumber = "9223372036854775807"
608
            startingLineNumber = "67"
609
            endingLineNumber = "67"
610
            landmarkName = "-changeTextSizeTo:"
611
            landmarkType = "7">
612
         </BreakpointContent>
613
      </BreakpointProxy>
614
      <BreakpointProxy
615
         BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
616
         <BreakpointContent
617
            shouldBeEnabled = "Yes"
618
            ignoreCount = "0"
619
            continueAfterRunningActions = "No"
620
            filePath = "../../ios/WadeMobile/WadeMobile/frame/template/WDFlipperView.m"
621
            timestampString = "566930488.3893369"
622
            startingColumnNumber = "9223372036854775807"
623
            endingColumnNumber = "9223372036854775807"
624
            startingLineNumber = "430"
625
            endingLineNumber = "430"
626
            landmarkName = "-fadeFromView:toView:duration:"
627
            landmarkType = "7">
628
         </BreakpointContent>
629
      </BreakpointProxy>
630
      <BreakpointProxy
631
         BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
632
         <BreakpointContent
633
            shouldBeEnabled = "Yes"
634
            ignoreCount = "0"
635
            continueAfterRunningActions = "No"
636
            filePath = "../../ios/WadeMobile/WadeMobile/frame/template/WDFlipperView.m"
637
            timestampString = "566930488.389681"
638
            startingColumnNumber = "9223372036854775807"
639
            endingColumnNumber = "9223372036854775807"
640
            startingLineNumber = "379"
641
            endingLineNumber = "379"
642
            landmarkName = "-scaleOutFromView:toView:duration:"
643
            landmarkType = "7">
644
         </BreakpointContent>
645
      </BreakpointProxy>
646
      <BreakpointProxy
647
         BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
648
         <BreakpointContent
649
            shouldBeEnabled = "Yes"
650
            ignoreCount = "0"
651
            continueAfterRunningActions = "No"
652
            filePath = "../../ios/WadeMobile/WadeMobile/frame/template/WDFlipperView.m"
653
            timestampString = "566930488.389918"
654
            startingColumnNumber = "9223372036854775807"
655
            endingColumnNumber = "9223372036854775807"
656
            startingLineNumber = "328"
657
            endingLineNumber = "328"
658
            landmarkName = "-scaleInFromView:toView:duration:"
659
            landmarkType = "7">
660
         </BreakpointContent>
661
      </BreakpointProxy>
662
      <BreakpointProxy
663
         BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
664
         <BreakpointContent
665
            shouldBeEnabled = "Yes"
666
            ignoreCount = "0"
667
            continueAfterRunningActions = "No"
668
            filePath = "../../ios/WadeMobile/WadeMobile/frame/template/WDFlipperView.m"
669
            timestampString = "566930488.390148"
670
            startingColumnNumber = "9223372036854775807"
671
            endingColumnNumber = "9223372036854775807"
672
            startingLineNumber = "307"
673
            endingLineNumber = "307"
674
            landmarkName = "-slipFromView:toView:duration:"
675
            landmarkType = "7">
676
         </BreakpointContent>
677
      </BreakpointProxy>
678
      <BreakpointProxy
679
         BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
680
         <BreakpointContent
681
            shouldBeEnabled = "Yes"
682
            ignoreCount = "0"
683
            continueAfterRunningActions = "No"
684
            filePath = "../../ios/WadeMobile/WadeMobile/frame/template/WDFlipperView.m"
685
            timestampString = "566930488.390378"
686
            startingColumnNumber = "9223372036854775807"
687
            endingColumnNumber = "9223372036854775807"
688
            startingLineNumber = "271"
689
            endingLineNumber = "271"
690
            landmarkName = "-pushOutFromView:toView:duration:"
691
            landmarkType = "7">
692
         </BreakpointContent>
693
      </BreakpointProxy>
694
      <BreakpointProxy
695
         BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
696
         <BreakpointContent
697
            shouldBeEnabled = "Yes"
698
            ignoreCount = "0"
699
            continueAfterRunningActions = "No"
700
            filePath = "../WadeMobileFunc/WadeMobileFunc/WDFMobileUI.m"
701
            timestampString = "566930488.3906029"
702
            startingColumnNumber = "9223372036854775807"
703
            endingColumnNumber = "9223372036854775807"
704
            startingLineNumber = "167"
705
            endingLineNumber = "167"
706
            landmarkName = "-openBrowser:"
595 707
            landmarkType = "7">
596 708
         </BreakpointContent>
597 709
      </BreakpointProxy>

+ 1 - 1
SuperMenu/SuperMenu.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/xcschememanagement.plist

@ -7,7 +7,7 @@
7 7
		<key>SuperMenu.xcscheme</key>
8 8
		<dict>
9 9
			<key>orderHint</key>
10
			<integer>0</integer>
10
			<integer>3</integer>
11 11
		</dict>
12 12
	</dict>
13 13
</dict>

+ 3 - 3
WadeMobileFunc/WadeMobileFunc.xcodeproj/xcuserdata/mac.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist

@ -26,7 +26,7 @@
26 26
                  moduleName = "WadeMobileFunc"
27 27
                  usesParentBreakpointCondition = "Yes"
28 28
                  urlString = "file:///Users/mac/work/asiainfo/ios-share/WadeMobileFunc/WadeMobileFunc/WDFSocial.m"
29
                  timestampString = "566811249.576961"
29
                  timestampString = "566930488.913711"
30 30
                  startingColumnNumber = "9223372036854775807"
31 31
                  endingColumnNumber = "9223372036854775807"
32 32
                  startingLineNumber = "291"
@ -41,7 +41,7 @@
41 41
                  moduleName = "WadeMobileFunc"
42 42
                  usesParentBreakpointCondition = "Yes"
43 43
                  urlString = "file:///Users/mac/work/asiainfo/ios-share/WadeMobileFunc/WadeMobileFunc/WDFSocial.m"
44
                  timestampString = "566811249.579127"
44
                  timestampString = "566930488.916468"
45 45
                  startingColumnNumber = "9223372036854775807"
46 46
                  endingColumnNumber = "9223372036854775807"
47 47
                  startingLineNumber = "292"
@ -56,7 +56,7 @@
56 56
                  moduleName = "WadeMobileFunc"
57 57
                  usesParentBreakpointCondition = "Yes"
58 58
                  urlString = "file:///Users/mac/work/asiainfo/ios-share/WadeMobileFunc/WadeMobileFunc/WDFSocial.m"
59
                  timestampString = "566811249.581177"
59
                  timestampString = "566930488.918768"
60 60
                  startingColumnNumber = "9223372036854775807"
61 61
                  endingColumnNumber = "9223372036854775807"
62 62
                  startingLineNumber = "291"

+ 3 - 3
WadeMobileFunc/WadeMobileFunc.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/xcschememanagement.plist

@ -7,17 +7,17 @@
7 7
		<key>WadeMobileFunc.xcscheme</key>
8 8
		<dict>
9 9
			<key>orderHint</key>
10
			<integer>3</integer>
10
			<integer>8</integer>
11 11
		</dict>
12 12
		<key>WadeMobileFunc4Appstore.xcscheme</key>
13 13
		<dict>
14 14
			<key>orderHint</key>
15
			<integer>5</integer>
15
			<integer>10</integer>
16 16
		</dict>
17 17
		<key>WadeMobileFuncAggregate.xcscheme</key>
18 18
		<dict>
19 19
			<key>orderHint</key>
20
			<integer>4</integer>
20
			<integer>9</integer>
21 21
		</dict>
22 22
	</dict>
23 23
</dict>

+ 3 - 3
WadeMobileFunc/WadeMobileFunc/WDFMobileNetwork.m

@ -87,9 +87,9 @@
87 87
        
88 88
        NSString* result;
89 89
        @try {
90
            IpuDynaProxy *obj = [[IpuDynaProxy alloc] initWithObject:self];
91
            result = [obj performMethod:@"dataRequest:params:" Param:dataAction,params,nil];
92
//            result = [self dataRequest:dataAction params:params];
90
//            IpuDynaProxy *obj = [[IpuDynaProxy alloc] initWithObject:self];
91
//            result = [obj performMethod:@"dataRequest:params:" Param:dataAction,params,nil];
92
            result = [self dataRequest:dataAction params:params];
93 93
            [super callback:result];
94 94
        } @catch (NSException *exception) {
95 95
            NSString *errStr = [NSString stringWithFormat:@"请求数据失败:%@",exception];

+ 18 - 27
WadeMobileFunc/WadeMobileFunc/WDFMobileUI.m

@ -280,7 +280,9 @@
280 280
        }
281 281
        tWebview.pageAction = pageAction;
282 282
        [tWebview loadTemplate:templatePath data:data];
283
        [flipperView showNextView];
283
//        [flipperView showNextView];
284
        [flipperView showNextViewWidthAnimationType:IPUAnimationNone duration:0.25];
285
//        NSLog(@"===============88888888:%@=================",pageAction);
284 286
    }
285 287
}
286 288
@ -337,10 +339,10 @@
337 339
        isCurr = [@"true" isEqualToString:param[2]];
338 340
    }
339 341
    
340
//    [self openPage:pageAction data:dataParam isCurrView:isCurr];
342
    [self openPage:pageAction data:dataParam isCurrView:isCurr];
341 343
    
342
    IpuDynaProxy *obj = [[IpuDynaProxy alloc] initWithObject:self];
343
    [obj performMethod:@"openPage:data:isCurrView:" Param:pageAction,dataParam,isCurr,nil];
344
//    IpuDynaProxy *obj = [[IpuDynaProxy alloc] initWithObject:self];
345
//    [obj performMethod:@"openPage:data:isCurrView:" Param:pageAction,dataParam,isCurr,nil];
344 346
}
345 347
346 348
/**
@ -666,34 +668,23 @@
666 668
        [self back:param];
667 669
        return;
668 670
    }
669
    
670
    // 回调数据
671
    NSString *result = param[0];
672
    
671
    NSString *result = param[0];//回调数据
673 672
    WDFlipperView *flipperView = (WDFlipperView *)[[self getWebView] superview];
674
    
675
    NSString *pageAction = param[1];
676
    // 目标视图与当前视图的偏移量,默认为1,即当前视图的上一层视图
677
    NSInteger count = [flipperView getViewOffset:pageAction];
678
    
679
    // 返回到指定页面
680
    [flipperView backWithCount:count];
681
    
682
    // 返回后的当前视图
683
    UIView *currentView = [flipperView getCurrView];
684
    if ([currentView isKindOfClass:[UIWebView class]]) {
673
    UIView *formerView = [flipperView getFormerView];//获取上一个视图
674
    if ([formerView isKindOfClass:[UIWebView class]]) {//上一个视图注入js
685 675
        // 构造需要注入的js
686 676
        result = [NSString stringWithFormat:@"WadeMobile.backevent.backCall('%@');", [WDPlugin encodeForJs:result]];
687
688
        // 注入js
689
        UIWebView *webView = (UIWebView *)currentView;
677
        UIWebView *webView = (UIWebView *)formerView;
690 678
        [webView stringByEvaluatingJavaScriptFromString:result];
691
692
        return;
679
    } else {
680
        // ReactNative RCTRootView 预留
681
        // ...
693 682
    }
694
    
695
    // ReactNative RCTRootView 预留
696
    // ...
683
    //返回到上一个页面
684
    NSString *pageAction = param[1];
685
    //目标视图与当前视图的偏移量,默认为1,即当前视图的上一层视图
686
    NSInteger count = [flipperView getViewOffset:pageAction];
687
    [flipperView backWithCount:count];
697 688
}
698 689
699 690
- (void)openWindow:(NSArray *)param {

+ 1 - 1
display-center/ReactNative/node_modules/react-native-camera/ios/RNCamera.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/xcschememanagement.plist

@ -7,7 +7,7 @@
7 7
		<key>RNCamera.xcscheme</key>
8 8
		<dict>
9 9
			<key>orderHint</key>
10
			<integer>23</integer>
10
			<integer>32</integer>
11 11
		</dict>
12 12
	</dict>
13 13
</dict>

+ 1 - 1
display-center/ReactNative/node_modules/react-native/Libraries/ART/ART.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/xcschememanagement.plist

@ -17,7 +17,7 @@
17 17
		<key>ART.xcscheme</key>
18 18
		<dict>
19 19
			<key>orderHint</key>
20
			<integer>25</integer>
20
			<integer>34</integer>
21 21
		</dict>
22 22
	</dict>
23 23
</dict>

+ 1 - 1
display-center/ReactNative/node_modules/react-native/Libraries/ActionSheetIOS/RCTActionSheet.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/xcschememanagement.plist

@ -7,7 +7,7 @@
7 7
		<key>RCTActionSheet.xcscheme</key>
8 8
		<dict>
9 9
			<key>orderHint</key>
10
			<integer>22</integer>
10
			<integer>33</integer>
11 11
		</dict>
12 12
	</dict>
13 13
</dict>

+ 2 - 2
display-center/ReactNative/node_modules/react-native/Libraries/Blob/RCTBlob.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/xcschememanagement.plist

@ -12,12 +12,12 @@
12 12
		<key>RCTBlob-tvOS.xcscheme_^#shared#^_</key>
13 13
		<dict>
14 14
			<key>orderHint</key>
15
			<integer>8</integer>
15
			<integer>10</integer>
16 16
		</dict>
17 17
		<key>RCTBlob.xcscheme</key>
18 18
		<dict>
19 19
			<key>orderHint</key>
20
			<integer>24</integer>
20
			<integer>36</integer>
21 21
		</dict>
22 22
	</dict>
23 23
</dict>

+ 1 - 1
display-center/ReactNative/node_modules/react-native/Libraries/CameraRoll/RCTCameraRoll.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/xcschememanagement.plist

@ -7,7 +7,7 @@
7 7
		<key>RCTCameraRoll.xcscheme</key>
8 8
		<dict>
9 9
			<key>orderHint</key>
10
			<integer>26</integer>
10
			<integer>37</integer>
11 11
		</dict>
12 12
	</dict>
13 13
</dict>

+ 1 - 1
display-center/ReactNative/node_modules/react-native/Libraries/Geolocation/RCTGeolocation.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/xcschememanagement.plist

@ -7,7 +7,7 @@
7 7
		<key>RCTGeolocation.xcscheme</key>
8 8
		<dict>
9 9
			<key>orderHint</key>
10
			<integer>27</integer>
10
			<integer>38</integer>
11 11
		</dict>
12 12
	</dict>
13 13
</dict>

+ 2 - 2
display-center/ReactNative/node_modules/react-native/Libraries/Image/RCTImage.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/xcschememanagement.plist

@ -12,12 +12,12 @@
12 12
		<key>RCTImage-tvOS.xcscheme_^#shared#^_</key>
13 13
		<dict>
14 14
			<key>orderHint</key>
15
			<integer>9</integer>
15
			<integer>11</integer>
16 16
		</dict>
17 17
		<key>RCTImage.xcscheme</key>
18 18
		<dict>
19 19
			<key>orderHint</key>
20
			<integer>28</integer>
20
			<integer>39</integer>
21 21
		</dict>
22 22
	</dict>
23 23
</dict>

+ 2 - 2
display-center/ReactNative/node_modules/react-native/Libraries/LinkingIOS/RCTLinking.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/xcschememanagement.plist

@ -12,12 +12,12 @@
12 12
		<key>RCTLinking-tvOS.xcscheme_^#shared#^_</key>
13 13
		<dict>
14 14
			<key>orderHint</key>
15
			<integer>10</integer>
15
			<integer>12</integer>
16 16
		</dict>
17 17
		<key>RCTLinking.xcscheme</key>
18 18
		<dict>
19 19
			<key>orderHint</key>
20
			<integer>29</integer>
20
			<integer>40</integer>
21 21
		</dict>
22 22
	</dict>
23 23
</dict>

+ 2 - 2
display-center/ReactNative/node_modules/react-native/Libraries/NativeAnimation/RCTAnimation.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/xcschememanagement.plist

@ -12,12 +12,12 @@
12 12
		<key>RCTAnimation-tvOS.xcscheme_^#shared#^_</key>
13 13
		<dict>
14 14
			<key>orderHint</key>
15
			<integer>7</integer>
15
			<integer>9</integer>
16 16
		</dict>
17 17
		<key>RCTAnimation.xcscheme</key>
18 18
		<dict>
19 19
			<key>orderHint</key>
20
			<integer>37</integer>
20
			<integer>47</integer>
21 21
		</dict>
22 22
	</dict>
23 23
</dict>

+ 2 - 2
display-center/ReactNative/node_modules/react-native/Libraries/Network/RCTNetwork.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/xcschememanagement.plist

@ -12,12 +12,12 @@
12 12
		<key>RCTNetwork-tvOS.xcscheme_^#shared#^_</key>
13 13
		<dict>
14 14
			<key>orderHint</key>
15
			<integer>11</integer>
15
			<integer>13</integer>
16 16
		</dict>
17 17
		<key>RCTNetwork.xcscheme</key>
18 18
		<dict>
19 19
			<key>orderHint</key>
20
			<integer>38</integer>
20
			<integer>48</integer>
21 21
		</dict>
22 22
	</dict>
23 23
</dict>

+ 2 - 2
display-center/ReactNative/node_modules/react-native/Libraries/PushNotificationIOS/RCTPushNotification.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/xcschememanagement.plist

@ -12,12 +12,12 @@
12 12
		<key>RCTPushNotification-tvOS.xcscheme_^#shared#^_</key>
13 13
		<dict>
14 14
			<key>orderHint</key>
15
			<integer>12</integer>
15
			<integer>14</integer>
16 16
		</dict>
17 17
		<key>RCTPushNotification.xcscheme</key>
18 18
		<dict>
19 19
			<key>orderHint</key>
20
			<integer>39</integer>
20
			<integer>49</integer>
21 21
		</dict>
22 22
	</dict>
23 23
</dict>

+ 2 - 2
display-center/ReactNative/node_modules/react-native/Libraries/Settings/RCTSettings.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/xcschememanagement.plist

@ -12,12 +12,12 @@
12 12
		<key>RCTSettings-tvOS.xcscheme_^#shared#^_</key>
13 13
		<dict>
14 14
			<key>orderHint</key>
15
			<integer>13</integer>
15
			<integer>15</integer>
16 16
		</dict>
17 17
		<key>RCTSettings.xcscheme</key>
18 18
		<dict>
19 19
			<key>orderHint</key>
20
			<integer>40</integer>
20
			<integer>50</integer>
21 21
		</dict>
22 22
	</dict>
23 23
</dict>

+ 2 - 2
display-center/ReactNative/node_modules/react-native/Libraries/Text/RCTText.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/xcschememanagement.plist

@ -12,7 +12,7 @@
12 12
		<key>RCTText-tvOS.xcscheme_^#shared#^_</key>
13 13
		<dict>
14 14
			<key>orderHint</key>
15
			<integer>15</integer>
15
			<integer>17</integer>
16 16
		</dict>
17 17
		<key>RCTText.xcscheme</key>
18 18
		<dict>
@ -22,7 +22,7 @@
22 22
		<key>RCTText.xcscheme_^#shared#^_</key>
23 23
		<dict>
24 24
			<key>orderHint</key>
25
			<integer>14</integer>
25
			<integer>16</integer>
26 26
		</dict>
27 27
	</dict>
28 28
</dict>

+ 1 - 1
display-center/ReactNative/node_modules/react-native/Libraries/Vibration/RCTVibration.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/xcschememanagement.plist

@ -7,7 +7,7 @@
7 7
		<key>RCTVibration.xcscheme</key>
8 8
		<dict>
9 9
			<key>orderHint</key>
10
			<integer>41</integer>
10
			<integer>51</integer>
11 11
		</dict>
12 12
	</dict>
13 13
</dict>

+ 4 - 4
display-center/ReactNative/node_modules/react-native/Libraries/WebSocket/RCTWebSocket.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/xcschememanagement.plist

@ -12,12 +12,12 @@
12 12
		<key>RCTWebSocket-tvOS.xcscheme_^#shared#^_</key>
13 13
		<dict>
14 14
			<key>orderHint</key>
15
			<integer>16</integer>
15
			<integer>18</integer>
16 16
		</dict>
17 17
		<key>RCTWebSocket.xcscheme</key>
18 18
		<dict>
19 19
			<key>orderHint</key>
20
			<integer>42</integer>
20
			<integer>52</integer>
21 21
		</dict>
22 22
		<key>fishhook-tvOS.xcscheme</key>
23 23
		<dict>
@ -27,12 +27,12 @@
27 27
		<key>fishhook-tvOS.xcscheme_^#shared#^_</key>
28 28
		<dict>
29 29
			<key>orderHint</key>
30
			<integer>3</integer>
30
			<integer>5</integer>
31 31
		</dict>
32 32
		<key>fishhook.xcscheme</key>
33 33
		<dict>
34 34
			<key>orderHint</key>
35
			<integer>43</integer>
35
			<integer>53</integer>
36 36
		</dict>
37 37
	</dict>
38 38
</dict>

+ 16 - 16
display-center/ReactNative/node_modules/react-native/React/React.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/xcschememanagement.plist

@ -12,7 +12,7 @@
12 12
		<key>React-tvOS.xcscheme_^#shared#^_</key>
13 13
		<dict>
14 14
			<key>orderHint</key>
15
			<integer>18</integer>
15
			<integer>20</integer>
16 16
		</dict>
17 17
		<key>React.xcscheme</key>
18 18
		<dict>
@ -22,7 +22,7 @@
22 22
		<key>React.xcscheme_^#shared#^_</key>
23 23
		<dict>
24 24
			<key>orderHint</key>
25
			<integer>17</integer>
25
			<integer>19</integer>
26 26
		</dict>
27 27
		<key>cxxreact-tvOS.xcscheme</key>
28 28
		<dict>
@ -32,12 +32,12 @@
32 32
		<key>cxxreact-tvOS.xcscheme_^#shared#^_</key>
33 33
		<dict>
34 34
			<key>orderHint</key>
35
			<integer>1</integer>
35
			<integer>3</integer>
36 36
		</dict>
37 37
		<key>cxxreact.xcscheme</key>
38 38
		<dict>
39 39
			<key>orderHint</key>
40
			<integer>31</integer>
40
			<integer>35</integer>
41 41
		</dict>
42 42
		<key>double-conversion-tvOS.xcscheme</key>
43 43
		<dict>
@ -47,12 +47,12 @@
47 47
		<key>double-conversion-tvOS.xcscheme_^#shared#^_</key>
48 48
		<dict>
49 49
			<key>orderHint</key>
50
			<integer>2</integer>
50
			<integer>4</integer>
51 51
		</dict>
52 52
		<key>double-conversion.xcscheme</key>
53 53
		<dict>
54 54
			<key>orderHint</key>
55
			<integer>32</integer>
55
			<integer>45</integer>
56 56
		</dict>
57 57
		<key>jschelpers-tvOS.xcscheme</key>
58 58
		<dict>
@ -62,12 +62,12 @@
62 62
		<key>jschelpers-tvOS.xcscheme_^#shared#^_</key>
63 63
		<dict>
64 64
			<key>orderHint</key>
65
			<integer>4</integer>
65
			<integer>6</integer>
66 66
		</dict>
67 67
		<key>jschelpers.xcscheme</key>
68 68
		<dict>
69 69
			<key>orderHint</key>
70
			<integer>33</integer>
70
			<integer>42</integer>
71 71
		</dict>
72 72
		<key>jsinspector-tvOS.xcscheme</key>
73 73
		<dict>
@ -77,12 +77,12 @@
77 77
		<key>jsinspector-tvOS.xcscheme_^#shared#^_</key>
78 78
		<dict>
79 79
			<key>orderHint</key>
80
			<integer>5</integer>
80
			<integer>7</integer>
81 81
		</dict>
82 82
		<key>jsinspector.xcscheme</key>
83 83
		<dict>
84 84
			<key>orderHint</key>
85
			<integer>34</integer>
85
			<integer>43</integer>
86 86
		</dict>
87 87
		<key>privatedata-tvOS.xcscheme</key>
88 88
		<dict>
@ -92,12 +92,12 @@
92 92
		<key>privatedata-tvOS.xcscheme_^#shared#^_</key>
93 93
		<dict>
94 94
			<key>orderHint</key>
95
			<integer>6</integer>
95
			<integer>8</integer>
96 96
		</dict>
97 97
		<key>privatedata.xcscheme</key>
98 98
		<dict>
99 99
			<key>orderHint</key>
100
			<integer>36</integer>
100
			<integer>46</integer>
101 101
		</dict>
102 102
		<key>third-party-tvOS.xcscheme</key>
103 103
		<dict>
@ -107,12 +107,12 @@
107 107
		<key>third-party-tvOS.xcscheme_^#shared#^_</key>
108 108
		<dict>
109 109
			<key>orderHint</key>
110
			<integer>19</integer>
110
			<integer>21</integer>
111 111
		</dict>
112 112
		<key>third-party.xcscheme</key>
113 113
		<dict>
114 114
			<key>orderHint</key>
115
			<integer>35</integer>
115
			<integer>44</integer>
116 116
		</dict>
117 117
		<key>yoga-tvOS.xcscheme</key>
118 118
		<dict>
@ -122,12 +122,12 @@
122 122
		<key>yoga-tvOS.xcscheme_^#shared#^_</key>
123 123
		<dict>
124 124
			<key>orderHint</key>
125
			<integer>20</integer>
125
			<integer>22</integer>
126 126
		</dict>
127 127
		<key>yoga.xcscheme</key>
128 128
		<dict>
129 129
			<key>orderHint</key>
130
			<integer>30</integer>
130
			<integer>41</integer>
131 131
		</dict>
132 132
	</dict>
133 133
	<key>SuppressBuildableAutocreation</key>

+ 159 - 0
display-center/display-center.xcodeproj/project.pbxproj

@ -92,6 +92,62 @@
92 92
/* End PBXBuildFile section */
93 93
94 94
/* Begin PBXContainerItemProxy section */
95
		045F8F9821CA295000611C8E /* PBXContainerItemProxy */ = {
96
			isa = PBXContainerItemProxy;
97
			containerPortal = 045F8F9121CA295000611C8E /* IpuCount.xcodeproj */;
98
			proxyType = 2;
99
			remoteGlobalIDString = EAA4B4D61C897885000342A1;
100
			remoteInfo = IpuCount;
101
		};
102
		045F8F9A21CA295000611C8E /* PBXContainerItemProxy */ = {
103
			isa = PBXContainerItemProxy;
104
			containerPortal = 045F8F9121CA295000611C8E /* IpuCount.xcodeproj */;
105
			proxyType = 2;
106
			remoteGlobalIDString = EAA4B4E01C897885000342A1;
107
			remoteInfo = IpuCountTests;
108
		};
109
		0468915821C8EC9300EE1411 /* PBXContainerItemProxy */ = {
110
			isa = PBXContainerItemProxy;
111
			containerPortal = 0468912621C8EC9300EE1411 /* WadeMobileFunc.xcodeproj */;
112
			proxyType = 2;
113
			remoteGlobalIDString = E2DE1AD41B42DD9500762141;
114
			remoteInfo = WadeMobileFunc;
115
		};
116
		0468915A21C8EC9300EE1411 /* PBXContainerItemProxy */ = {
117
			isa = PBXContainerItemProxy;
118
			containerPortal = 0468912621C8EC9300EE1411 /* WadeMobileFunc.xcodeproj */;
119
			proxyType = 2;
120
			remoteGlobalIDString = 0AE1E0841C7EE95900FCCD24;
121
			remoteInfo = WadeMobileFuncTests;
122
		};
123
		0468916521C8EE5100EE1411 /* PBXContainerItemProxy */ = {
124
			isa = PBXContainerItemProxy;
125
			containerPortal = 0468915C21C8EE5000EE1411 /* WadeMobile.xcodeproj */;
126
			proxyType = 2;
127
			remoteGlobalIDString = 614A1CD61B2142130099793B;
128
			remoteInfo = WadeMobile;
129
		};
130
		0468916721C8EE5100EE1411 /* PBXContainerItemProxy */ = {
131
			isa = PBXContainerItemProxy;
132
			containerPortal = 0468915C21C8EE5000EE1411 /* WadeMobile.xcodeproj */;
133
			proxyType = 2;
134
			remoteGlobalIDString = 614A1CE11B2142130099793B;
135
			remoteInfo = WadeMobileTests;
136
		};
137
		0468916921C8EE5100EE1411 /* PBXContainerItemProxy */ = {
138
			isa = PBXContainerItemProxy;
139
			containerPortal = 0468915C21C8EE5000EE1411 /* WadeMobile.xcodeproj */;
140
			proxyType = 2;
141
			remoteGlobalIDString = E2D93A741B89BA2800D1DE7C;
142
			remoteInfo = WadeMobileBundle;
143
		};
144
		0468916B21C8EE5100EE1411 /* PBXContainerItemProxy */ = {
145
			isa = PBXContainerItemProxy;
146
			containerPortal = 0468915C21C8EE5000EE1411 /* WadeMobile.xcodeproj */;
147
			proxyType = 2;
148
			remoteGlobalIDString = 0A791C221FD102C0003CD586;
149
			remoteInfo = WadeMobileTestUnit;
150
		};
95 151
		B25B8FDF21901B0C001A240E /* PBXContainerItemProxy */ = {
96 152
			isa = PBXContainerItemProxy;
97 153
			containerPortal = B25B8FD821901B0C001A240E /* RCTWebSocket.xcodeproj */;
@ -424,7 +480,10 @@
424 480
/* Begin PBXFileReference section */
425 481
		0429A206218046E2003CEE83 /* WadeMobileFuncBundle.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; name = WadeMobileFuncBundle.bundle; path = ../IpuCommon/Frameworks/WadeMobileFuncBundle.bundle; sourceTree = "<group>"; };
426 482
		0429A2332180484E003CEE83 /* fontawesome-webfont.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; name = "fontawesome-webfont.ttf"; path = "../IpuCommon/Frameworks/fontawesome-webfont.ttf"; sourceTree = "<group>"; };
483
		045F8F9121CA295000611C8E /* IpuCount.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = IpuCount.xcodeproj; path = "../../ios-plugin/IpuCount/IpuCount.xcodeproj"; sourceTree = "<group>"; };
427 484
		0460E86220AA9C1300CCFDA4 /* UserNotifications.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UserNotifications.framework; path = System/Library/Frameworks/UserNotifications.framework; sourceTree = SDKROOT; };
485
		0468912621C8EC9300EE1411 /* WadeMobileFunc.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = WadeMobileFunc.xcodeproj; path = ../WadeMobileFunc/WadeMobileFunc.xcodeproj; sourceTree = "<group>"; };
486
		0468915C21C8EE5000EE1411 /* WadeMobile.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = WadeMobile.xcodeproj; path = ../../ios/WadeMobile/WadeMobile.xcodeproj; sourceTree = "<group>"; };
428 487
		B21A88C121C8DD3700985486 /* icon_back_suspend@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "icon_back_suspend@2x.png"; sourceTree = "<group>"; };
429 488
		B247A76B20E0D33A00117A38 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
430 489
		B247A76D20E0D34100117A38 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
@ -559,6 +618,15 @@
559 618
/* End PBXFrameworksBuildPhase section */
560 619
561 620
/* Begin PBXGroup section */
621
		045F8F9221CA295000611C8E /* Products */ = {
622
			isa = PBXGroup;
623
			children = (
624
				045F8F9921CA295000611C8E /* IpuCount.framework */,
625
				045F8F9B21CA295000611C8E /* IpuCountTests.xctest */,
626
			);
627
			name = Products;
628
			sourceTree = "<group>";
629
		};
562 630
		0460E86120AA9C1300CCFDA4 /* Frameworks */ = {
563 631
			isa = PBXGroup;
564 632
			children = (
@ -591,6 +659,26 @@
591 659
			name = Frameworks;
592 660
			sourceTree = "<group>";
593 661
		};
662
		0468912721C8EC9300EE1411 /* Products */ = {
663
			isa = PBXGroup;
664
			children = (
665
				0468915921C8EC9300EE1411 /* WadeMobileFunc.framework */,
666
				0468915B21C8EC9300EE1411 /* WadeMobileFuncTests.xctest */,
667
			);
668
			name = Products;
669
			sourceTree = "<group>";
670
		};
671
		0468915D21C8EE5000EE1411 /* Products */ = {
672
			isa = PBXGroup;
673
			children = (
674
				0468916621C8EE5100EE1411 /* WadeMobile.framework */,
675
				0468916821C8EE5100EE1411 /* WadeMobileTests.xctest */,
676
				0468916A21C8EE5100EE1411 /* WadeMobileBundle.bundle */,
677
				0468916C21C8EE5100EE1411 /* WadeMobileTestUnit.xctest */,
678
			);
679
			name = Products;
680
			sourceTree = "<group>";
681
		};
594 682
		B254174121A5329B00ABCE93 /* IpuRN */ = {
595 683
			isa = PBXGroup;
596 684
			children = (
@ -814,6 +902,9 @@
814 902
		EA8712331ECD8B580045E19A = {
815 903
			isa = PBXGroup;
816 904
			children = (
905
				045F8F9121CA295000611C8E /* IpuCount.xcodeproj */,
906
				0468915C21C8EE5000EE1411 /* WadeMobile.xcodeproj */,
907
				0468912621C8EC9300EE1411 /* WadeMobileFunc.xcodeproj */,
817 908
				B254174121A5329B00ABCE93 /* IpuRN */,
818 909
				B2FC4B14219178DD008F7621 /* anticon.ttf */,
819 910
				B2E8BECF2176C2A600A06A13 /* AMap.bundle */,
@ -931,6 +1022,10 @@
931 1022
					ProjectRef = B25B90B821903F2E001A240E /* ART.xcodeproj */;
932 1023
				},
933 1024
				{
1025
					ProductGroup = 045F8F9221CA295000611C8E /* Products */;
1026
					ProjectRef = 045F8F9121CA295000611C8E /* IpuCount.xcodeproj */;
1027
				},
1028
				{
934 1029
					ProductGroup = B25B90C221903F41001A240E /* Products */;
935 1030
					ProjectRef = B25B90C121903F41001A240E /* RCTActionSheet.xcodeproj */;
936 1031
				},
@ -990,6 +1085,14 @@
990 1085
					ProductGroup = B2FC4AD62191392D008F7621 /* Products */;
991 1086
					ProjectRef = B2FC4AD52191392D008F7621 /* RNCamera.xcodeproj */;
992 1087
				},
1088
				{
1089
					ProductGroup = 0468915D21C8EE5000EE1411 /* Products */;
1090
					ProjectRef = 0468915C21C8EE5000EE1411 /* WadeMobile.xcodeproj */;
1091
				},
1092
				{
1093
					ProductGroup = 0468912721C8EC9300EE1411 /* Products */;
1094
					ProjectRef = 0468912621C8EC9300EE1411 /* WadeMobileFunc.xcodeproj */;
1095
				},
993 1096
			);
994 1097
			projectRoot = "";
995 1098
			targets = (
@ -999,6 +1102,62 @@
999 1102
/* End PBXProject section */
1000 1103
1001 1104
/* Begin PBXReferenceProxy section */
1105
		045F8F9921CA295000611C8E /* IpuCount.framework */ = {
1106
			isa = PBXReferenceProxy;
1107
			fileType = wrapper.framework;
1108
			path = IpuCount.framework;
1109
			remoteRef = 045F8F9821CA295000611C8E /* PBXContainerItemProxy */;
1110
			sourceTree = BUILT_PRODUCTS_DIR;
1111
		};
1112
		045F8F9B21CA295000611C8E /* IpuCountTests.xctest */ = {
1113
			isa = PBXReferenceProxy;
1114
			fileType = wrapper.cfbundle;
1115
			path = IpuCountTests.xctest;
1116
			remoteRef = 045F8F9A21CA295000611C8E /* PBXContainerItemProxy */;
1117
			sourceTree = BUILT_PRODUCTS_DIR;
1118
		};
1119
		0468915921C8EC9300EE1411 /* WadeMobileFunc.framework */ = {
1120
			isa = PBXReferenceProxy;
1121
			fileType = wrapper.framework;
1122
			path = WadeMobileFunc.framework;
1123
			remoteRef = 0468915821C8EC9300EE1411 /* PBXContainerItemProxy */;
1124
			sourceTree = BUILT_PRODUCTS_DIR;
1125
		};
1126
		0468915B21C8EC9300EE1411 /* WadeMobileFuncTests.xctest */ = {
1127
			isa = PBXReferenceProxy;
1128
			fileType = wrapper.cfbundle;
1129
			path = WadeMobileFuncTests.xctest;
1130
			remoteRef = 0468915A21C8EC9300EE1411 /* PBXContainerItemProxy */;
1131
			sourceTree = BUILT_PRODUCTS_DIR;
1132
		};
1133
		0468916621C8EE5100EE1411 /* WadeMobile.framework */ = {
1134
			isa = PBXReferenceProxy;
1135
			fileType = wrapper.framework;
1136
			path = WadeMobile.framework;
1137
			remoteRef = 0468916521C8EE5100EE1411 /* PBXContainerItemProxy */;
1138
			sourceTree = BUILT_PRODUCTS_DIR;
1139
		};
1140
		0468916821C8EE5100EE1411 /* WadeMobileTests.xctest */ = {
1141
			isa = PBXReferenceProxy;
1142
			fileType = wrapper.cfbundle;
1143
			path = WadeMobileTests.xctest;
1144
			remoteRef = 0468916721C8EE5100EE1411 /* PBXContainerItemProxy */;
1145
			sourceTree = BUILT_PRODUCTS_DIR;
1146
		};
1147
		0468916A21C8EE5100EE1411 /* WadeMobileBundle.bundle */ = {
1148
			isa = PBXReferenceProxy;
1149
			fileType = wrapper.cfbundle;
1150
			path = WadeMobileBundle.bundle;
1151
			remoteRef = 0468916921C8EE5100EE1411 /* PBXContainerItemProxy */;
1152
			sourceTree = BUILT_PRODUCTS_DIR;
1153
		};
1154
		0468916C21C8EE5100EE1411 /* WadeMobileTestUnit.xctest */ = {
1155
			isa = PBXReferenceProxy;
1156
			fileType = wrapper.cfbundle;
1157
			path = WadeMobileTestUnit.xctest;
1158
			remoteRef = 0468916B21C8EE5100EE1411 /* PBXContainerItemProxy */;
1159
			sourceTree = BUILT_PRODUCTS_DIR;
1160
		};
1002 1161
		B25B8FE021901B0C001A240E /* libRCTWebSocket.a */ = {
1003 1162
			isa = PBXReferenceProxy;
1004 1163
			fileType = archive.ar;

BIN
display-center/display-center.xcodeproj/project.xcworkspace/xcuserdata/mac.xcuserdatad/UserInterfaceState.xcuserstate


+ 3 - 3
display-center/display-center.xcodeproj/xcuserdata/mac.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist

@ -125,8 +125,8 @@
125 125
            endingColumnNumber = "9223372036854775807"
126 126
            startingLineNumber = "387"
127 127
            endingLineNumber = "387"
128
            landmarkName = "WDTemplateMainController"
129
            landmarkType = "3">
128
            landmarkName = "-shouldCopyLocalResources"
129
            landmarkType = "7">
130 130
         </BreakpointContent>
131 131
      </BreakpointProxy>
132 132
      <BreakpointProxy
@ -328,7 +328,7 @@
328 328
            ignoreCount = "0"
329 329
            continueAfterRunningActions = "No"
330 330
            filePath = "../../ios/WadeMobile/WadeMobile/frame/WDPlugin.m"
331
            timestampString = "566464941.705754"
331
            timestampString = "566813026.628282"
332 332
            startingColumnNumber = "9223372036854775807"
333 333
            endingColumnNumber = "9223372036854775807"
334 334
            startingLineNumber = "139"

+ 1 - 1
display-center/display-center.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/xcschememanagement.plist

@ -7,7 +7,7 @@
7 7
		<key>display-center.xcscheme</key>
8 8
		<dict>
9 9
			<key>orderHint</key>
10
			<integer>21</integer>
10
			<integer>23</integer>
11 11
		</dict>
12 12
	</dict>
13 13
	<key>SuppressBuildableAutocreation</key>