Code Monkey home page Code Monkey logo

ipapatch's Introduction

IPAPatch Logo

IPAPatch provide a simple way to patch iOS Apps, without needing to jailbreak.

[ FeaturesInstructionsExampleFAQLicense ]

Features

IPAPatch includes an template Xcode project, that provides following features:

  • Build & Run third-party ipa with your code injected

    You can run your own code inside ipa file as a dynamic library. So you can change behavior of that app by utilizing Objective-C runtime.

    Presented an custom alert in Youtube app

    Youtube Hacked

  • Step-by-step Debugging with lldb

    You can debug third-party apps like your own. For example:

    • Step-by-Step debug your code inside other app
    • Set Breakpoints
    • Print objects in Xcode console with lldb

    Debugging Youtube with Xcode

    Youtube Debugging

  • Link external frameworks

    By linking existing frameworks, you can integrate third-party services to apps very easily, such as Reveal.

    Inspect Youtube by linking RevealServer.framework

    Youtube Integrated Reveal

  • Generate distributable .ipa files

    You can distribute your patch/work to your friends very easily, with IPAPatch generated modified version of .ipa files

    Modified version of Facebook.ipa created by IPAPatch

Instructions

  1. Clone or Download This Project

    Download this project to your local disk

  2. Prepare Decrypted IPA File

    The IPA file you use need to be decrypted, you can get a decrypted ipa from a jailbroken device or download it directly from an ipa download site, such as http://www.iphonecake.com

  3. Replace Placeholder IPA

    Replace the IPA file located at IPAPatch/Assets/app.ipa with yours, this is a placeholder file. The filename should remain app.ipa after replacing.

  4. Place External Resources/Frameworks (Optional)

    Follow types of external file are supported:

    • Frameworks:
      • External frameworks can be placed at IPAPatch/Assets/Frameworks folder.
      • Frameworks will be linked automatically.
      • For example IPAPatch/Assets/Frameworks/RevealServer.framework
    • Dynamic Libraries:
      • External dynamic libraries can be placed at IPAPatch/Assets/Dylibs folder.
      • Libraries will be linked automatically
    • Resources/Bundles:
      • Other resources or bundles can be placed at IPAPatch/Assets/Resources
      • Resources will be copied directly to the main bundle of original app
  5. Configure Build Settings

    • Open IPAPatch.xcodeproj
    • In the Project Editor, Select Target IPAPatch-DummyApp
    • Display Name defaults to "💊", this is used as prefix of the final display name.
    • Change Bundle Identifier to match your provisioning profiles
    • Fix signing issues if any.
  6. Configure IPPatch Options

    • You can config IPAPatch's behavior with Tools/options.plist

      Name Description Default
      RESTORE_SYMBOLS When YES, IPAPatch will try to restore symbol table from Mach-O for debugging propose (with tools from https://github.com/tobefuturer/restore-symbol, also thanks to @henrayluo and @dannion) NO
      CREATE_IPA_FILE When YES, IPAPatch will generate a ipa file on each build. Genrated file is located at SRCROOT/Product NO
      IGNORE_UI_SUPPORTED_DEVICES When YES, IPAPatch will delete UISupportedDevices from source app's Info.plist NO
      REMOVE_WATCHPLACEHOLDER When YES, IPAPatch will remove com.apple.WatchPlaceholder folder from source app's bundle YES
      USE_ORIGINAL_ENTITLEMENTS When YES, IPAPatch will use source app's entitlements to resign, you need to make sure your Provisioning Profile matches the entitlements, or you need to disable AMFI on target device NO
  7. Code Your Patch

    The entry is at +[IPAPatchEntry load], you can write code start from here. To change apps' behavior, You may need to use some method swizzling library, such as steipete/Aspects.

  8. Build and Run

    Select a real device, and hit the "Run" button at the top-left corner of Xcode. The code your wrote and external frameworks you placed will inject to the ipa file automatically.

Example

I created some demo project, which shows you how to use IPAPatch:

FAQ

  • Q: Library not loaded with reason: mach-o, but wrong architecture ?

    • A: Try set IPAPatch target's Valid Architectures to match your ipa binary's architecture.
  • Q: process launch failed: Unspecified (Disabled) ?

    • A: The ipa file use with IPAPatch must be decrypted, See step.2 of Instructions.
  • Q: dyld: Symbol not found: XXX, Referenced from: XXX, Expected in: XXX/libswiftXXX.dylib

    • The swift version the framework you injecting use, is incompatible with the version of your Xcode

License

IPAPatch

   IPAPatch is licensed under the MIT license.

Copyright (c) 2017-present Wu Tian <[email protected]>.
  
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
  
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
  
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

OPTOOL

Copyright (c) 2014, Alex Zielenski
All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:

* Redistributions of source code must retain the above copyright notice, this
  list of conditions and the following disclaimer.

* Redistributions in binary form must reproduce the above copyright notice,
  this list of conditions and the following disclaimer in the documentation
  and/or other materials provided with the distribution.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

fishhook

Copyright (c) 2013, Facebook, Inc.
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
  * Redistributions of source code must retain the above copyright notice,
    this list of conditions and the following disclaimer.
  * Redistributions in binary form must reproduce the above copyright notice,
    this list of conditions and the following disclaimer in the documentation
    and/or other materials provided with the distribution.
  * Neither the name Facebook nor the names of its contributors may be used to
    endorse or promote products derived from this software without specific
    prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

ipapatch's People

Contributors

betteray avatar gh0stbyte avatar naituw avatar wang9262 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

ipapatch's Issues

反调试

有看到新版本加入了反反调试的代码 但对微信等一些app仍然无效 无法启动

Push Notification & Firebase setup

Hi!
We've been creating a patched build with IPAPatch and build and distributes using enterprise account.
It works great, but when it comes to anything which use bundle ID as service key seems not working. I understand that the process is changing the bundle ID, but is there any workaround to keep the original app getting its own push notification? For Firebase(and Google setting), the popular phone number verification SDK doesn't work with injected bundle ID, so it's impossible to go around that?

Support PlugIns and Watch

Will you support PlugIns and Watch when ipa have AppExtensions?

# 6. Remove Plugins/Watch (AppExtensions), To Simplify the Signing Process

echo "Removing AppExtensions"
rm -rf "$TARGET_APP_PATH/PlugIns" || true
rm -rf "$TARGET_APP_PATH/Watch" || true

Project path with white-spaces not working.

It seems that the script won't handle paths with white-spaces, any path with white-spaces will be split to two commands and lead to error.

Maybe adding IFS=$(echo -en "\n\b") to the start of patch.sh can help.

No such file or directory

fatal error: lipo: can't open input file: /Users/m/Downloads/IPAPatch-master/Temp/SignIn_armv7_with_symbol (No such file or directory)

这是什么问题

Patched app can't connect to network.

I have it all running on iOS10.3 however my app seems to connect to the internet on launch to get some data and it is reporting that it cannot connect when run inside IPAPatch, any ideas?

链接Dylib会出错

patch.sh这个文件中链接Dylib的代码应修改:

filename="${file%.*}"".dylib"
这样才能正确运行

Couldnt inject cycript.framework

Description

I downloaded the cycript.framework from your YouTube-demo.

1. Place cycript.framework on IPAPatch/Assets/Frameworks/cycript.framework

It could be successfully installed. But cant connect to it via cycript

➜  cycript_0.9.594 ./cycript -r 192.168.1.12:4567
*** _syscall(connect(socket_, info->ai_addr, info->ai_addrlen)):../Console.cpp(306):CYSocketRemote [errno=61]

NIN: Revealserver is working with this method.

2. Place cycript.framework on IPAPatch/IPAPatch/cycript.framework

It could build successfully. However, it couldnt install on my Jailed iPhone.
An error reads App Installation Failed - Could not inspect the application package.

Reproduction Steps of #2

  1. git clone https://github.com/Naituw/IPAPatch.git
  2. cd IPAPatch
  3. cp /path/to/youtube-demo/IPAPatch/Cycript.framework ./IPAPatch/
  4. Connect my iPhone to Mac, fix signing problems
  5. Click Run

Question

May I know where should I place cycript.framework?

facebook messenger app

Hi @Naituw i try facebook messenger app . like hacking facebook

And I can't open application.

2017-07-21 03:34:38.314 Messenger[646:154606] (2/2) ,
"<NSGlobalBlock: 0x30d1a0c>",
"",
"",
"[edge-mqtt-merge.facebook.com:graph.facebook.com]",
"<NSGlobalBlock: 0x30d1a30>",
(
"https://graph.facebook.com"
),
0,
0
)
E0721 03:34:38.827294 944861184 PersistentKeyValueStore.cpp:1448] Failed to reverse migrate directory: domain: FBStorageKitIoErrorErrorDomain; code: 2; description: Could not open directory: No such file or directory .
E0721 03:34:39.009958 944861184 PersistentKeyValueStore.cpp:1448] Failed to reverse migrate directory: domain: FBStorageKitIoErrorErrorDomain; code: 2; description: Could not open directory: No such file or directory .
2017-07-21 03:36:43.398 Messenger[646:155150] Check Pinnning Called: (
"<NSURLAuthenticationChallenge: 0x15e70240>"
)

crash !!!

image
i rename display name add replace ipa . click run bababababba waitting crash! 100%

使用自己砸壳的ipa文件安装成功后只显示启动界面

  1. 在越狱的iTouch5 iOS7.0.2环境下使用dumpcrypted进行的砸壳
  2. 所使用的ipa 二进制文件armv7 decrypted, arm64 crypted,运行IPAPatch安装成功后会一直显示启动画面,提示下面的日志:
    [Mach] exception: 0x%x, count: %d, code: 0x%llx 0x%llx
    [Mach] Forwarding exception: 0x%x, port: %d behavior: %d, flavor: %d)
  3. 不能使用thin ipa,因为会提示have no permission或者提示必须用fat file
  4. 同样的ipa通过iFunBox可以成功安装至越狱设备中,类似的工具MonkeyDev完全可以正常使用此ipa文件。

环境:
MacOS 10.12.5
Xcode 8.3.3
iPhone5c 10.3.3

It doesn't work in Facebook app.

Hi,
I am going to figure out the structure of Facebook with reveal, but unfortunately I don't have a jailbreak device.
Twitter and Youtube work fine. When it come to Facebook, it's not working. All decrypted ipa downloaded from phonecake. I have tried different version of Facebook that I got from phonecake. None of them could run normally.

I need some help, thx.

Code Injection and create IPA

Hey, this might be off topic but how does the file IPA PATCH ENTRY block a method being called from the app itself? Also how would I make an IPA from here?

__abort_with_payload

用最近的越狱包 运行报错 但是用之前的越狱包运行没有问题

dyld: Library not loaded: @executable_path/AdAppActive.framework/AdAppActive
  Referenced from: /var/containers/Bundle/Application/0A8CC763-9F52-4603-B986-DEE5062DC586/IPAPatch-DummyApp.app/SMZDM
  Reason: no suitable image found.  Did find:
	/var/containers/Bundle/Application/0A8CC763-9F52-4603-B986-DEE5062DC586/IPAPatch-DummyApp.app/AdAppActive.framework/AdAppActive: code signature invalid for '/var/containers/Bundle/Application/0A8CC763-9F52-4603-B986-DEE5062DC586/IPAPatch-DummyApp.app/AdAppActive.framework/AdAppActive'

	/private/var/containers/Bundle/Application/0A8CC763-9F52-4603-B986-DEE5062DC586/IPAPatch-DummyApp.app/AdAppActive.framework/AdAppActive: code signature invalid for '/private/var/containers/Bundle/Application/0A8CC763-9F52-4603-B986-DEE5062DC586/IPAPatch-DummyApp.app/AdAppActive.framework/AdAppActive'

Crashed after add Aspects

I'm get a crash After I add Aspects like :

dyld: Symbol not found: ___NSArray0__
  Referenced from: /private/var/mobile/Containers/Bundle/Application/8AA1CE34-3079-4827-BA18-27AA13F7AB0B/IPAPatch-DummyApp.app/Dylibs/IPAPatch (which was built for iOS 10.3)
  Expected in: /System/Library/Frameworks/CoreFoundation.framework/CoreFoundation
 in /private/var/mobile/Containers/Bundle/Application/8AA1CE34-3079-4827-BA18-27AA13F7AB0B/IPAPatch-DummyApp.app/Dylibs/IPAPatch

Aspects added under IAPPatch target, It work fine when I remove Aspects framework. anyone else happened on this?

无法archive出正确ipa

目前是否是无法打包为release包吗? 我是企业开发证书,archive之后,打包出来的ipa是ipa_patch那个.只有几十KB,这个是我姿势错了,还是没有做相关支持呢?

出现了未知错误

编译完成之后 build显示success
但是xcode提示未知错误 :

App installation failed

An unknown error has occurred.

一点error信息不报 这个是怎么回事呢?

以下是我的build 日志:

Showing Recent Messages

Build target IPAPatch-DummyApp of project IPAPatch with configuration Debug

Ld /Users/xinghao/Library/Developer/Xcode/DerivedData/IPAPatch-ecgwmuorwznvtacsvutrnwurigxq/Build/Products/Debug-iphoneos/IPAPatch-DummyApp.app/IPAPatch-DummyApp normal arm64
cd /Users/xinghao/Desktop/IPAPatch
export IPHONEOS_DEPLOYMENT_TARGET=8.0
export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin"
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang++ -arch arm64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.3.sdk -L/Users/xinghao/Library/Developer/Xcode/DerivedData/IPAPatch-ecgwmuorwznvtacsvutrnwurigxq/Build/Products/Debug-iphoneos -F/Users/xinghao/Library/Developer/Xcode/DerivedData/IPAPatch-ecgwmuorwznvtacsvutrnwurigxq/Build/Products/Debug-iphoneos -filelist /Users/xinghao/Library/Developer/Xcode/DerivedData/IPAPatch-ecgwmuorwznvtacsvutrnwurigxq/Build/Intermediates/IPAPatch.build/Debug-iphoneos/IPAPatch-DummyApp.build/Objects-normal/arm64/IPAPatch-DummyApp.LinkFileList -Xlinker -rpath -Xlinker @executable_path/Frameworks -miphoneos-version-min=8.0 -dead_strip -Xlinker -object_path_lto -Xlinker /Users/xinghao/Library/Developer/Xcode/DerivedData/IPAPatch-ecgwmuorwznvtacsvutrnwurigxq/Build/Intermediates/IPAPatch.build/Debug-iphoneos/IPAPatch-DummyApp.build/Objects-normal/arm64/IPAPatch-DummyApp_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -stdlib=libc++ -fobjc-arc -fobjc-link-runtime -Xlinker -dependency_info -Xlinker /Users/xinghao/Library/Developer/Xcode/DerivedData/IPAPatch-ecgwmuorwznvtacsvutrnwurigxq/Build/Intermediates/IPAPatch.build/Debug-iphoneos/IPAPatch-DummyApp.build/Objects-normal/arm64/IPAPatch-DummyApp_dependency_info.dat -o /Users/xinghao/Library/Developer/Xcode/DerivedData/IPAPatch-ecgwmuorwznvtacsvutrnwurigxq/Build/Products/Debug-iphoneos/IPAPatch-DummyApp.app/IPAPatch-DummyApp

CopyPlistFile /Users/xinghao/Library/Developer/Xcode/DerivedData/IPAPatch-ecgwmuorwznvtacsvutrnwurigxq/Build/Products/Debug-iphoneos/IPAPatch-DummyApp.app/options.plist Tools/options.plist
cd /Users/xinghao/Desktop/IPAPatch
export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin"
builtin-copyPlist --convert binary1 --outdir /Users/xinghao/Library/Developer/Xcode/DerivedData/IPAPatch-ecgwmuorwznvtacsvutrnwurigxq/Build/Products/Debug-iphoneos/IPAPatch-DummyApp.app -- Tools/options.plist

PhaseScriptExecution Run\ Script /Users/xinghao/Library/Developer/Xcode/DerivedData/IPAPatch-ecgwmuorwznvtacsvutrnwurigxq/Build/Intermediates/IPAPatch.build/Debug-iphoneos/IPAPatch-DummyApp.build/Script-C6B263631E7BD0B4009B4DEA.sh
cd /Users/xinghao/Desktop/IPAPatch
export ACTION=build
export AD_HOC_CODE_SIGNING_ALLOWED=NO
export ALTERNATE_GROUP=staff
export ALTERNATE_MODE=u+w,go-w,a+rX
export ALTERNATE_OWNER=xinghao
export ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES=NO
export ALWAYS_SEARCH_USER_PATHS=NO
export ALWAYS_USE_SEPARATE_HEADERMAPS=NO
export APPLE_INTERNAL_DEVELOPER_DIR=/AppleInternal/Developer
export APPLE_INTERNAL_DIR=/AppleInternal
export APPLE_INTERNAL_DOCUMENTATION_DIR=/AppleInternal/Documentation
export APPLE_INTERNAL_LIBRARY_DIR=/AppleInternal/Library
export APPLE_INTERNAL_TOOLS=/AppleInternal/Developer/Tools
export APPLICATION_EXTENSION_API_ONLY=NO
export APPLY_RULES_IN_COPY_FILES=NO
export ARCHS=arm64
export ARCHS_STANDARD="armv7 arm64"
export ARCHS_STANDARD_32_64_BIT="armv7 arm64"
export ARCHS_STANDARD_32_BIT=armv7
export ARCHS_STANDARD_64_BIT=arm64
export ARCHS_STANDARD_INCLUDING_64_BIT="armv7 arm64"
export ARCHS_UNIVERSAL_IPHONE_OS="armv7 arm64"
export AVAILABLE_PLATFORMS="appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator"
export BITCODE_GENERATION_MODE=marker
export BUILD_ACTIVE_RESOURCES_ONLY=YES
export BUILD_COMPONENTS="headers build"
export BUILD_DIR=/Users/xinghao/Library/Developer/Xcode/DerivedData/IPAPatch-ecgwmuorwznvtacsvutrnwurigxq/Build/Products
export BUILD_ROOT=/Users/xinghao/Library/Developer/Xcode/DerivedData/IPAPatch-ecgwmuorwznvtacsvutrnwurigxq/Build/Products
export BUILD_STYLE=
export BUILD_VARIANTS=normal
export BUILT_PRODUCTS_DIR=/Users/xinghao/Library/Developer/Xcode/DerivedData/IPAPatch-ecgwmuorwznvtacsvutrnwurigxq/Build/Products/Debug-iphoneos
export CACHE_ROOT=/var/folders/z_/3s43xsg530xgwt9gsjdjffph0000gn/C/com.apple.DeveloperTools/8.3.3-8E3004b/Xcode
export CCHROOT=/var/folders/z_/3s43xsg530xgwt9gsjdjffph0000gn/C/com.apple.DeveloperTools/8.3.3-8E3004b/Xcode
export CHMOD=/bin/chmod
export CHOWN=/usr/sbin/chown
export CLANG_ANALYZER_NONNULL=YES
export CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION=YES_AGGRESSIVE
export CLANG_CXX_LANGUAGE_STANDARD=c++14
export CLANG_CXX_LIBRARY=libc++
export CLANG_ENABLE_MODULES=YES
export CLANG_ENABLE_OBJC_ARC=YES
export CLANG_MODULES_BUILD_SESSION_FILE=/Users/xinghao/Library/Developer/Xcode/DerivedData/ModuleCache/Session.modulevalidation
export CLANG_WARN_BOOL_CONVERSION=YES
export CLANG_WARN_CONSTANT_CONVERSION=YES
export CLANG_WARN_DIRECT_OBJC_ISA_USAGE=YES_ERROR
export CLANG_WARN_DOCUMENTATION_COMMENTS=YES
export CLANG_WARN_EMPTY_BODY=YES
export CLANG_WARN_ENUM_CONVERSION=YES
export CLANG_WARN_INFINITE_RECURSION=YES
export CLANG_WARN_INT_CONVERSION=YES
export CLANG_WARN_OBJC_ROOT_CLASS=YES_ERROR
export CLANG_WARN_SUSPICIOUS_MOVE=YES
export CLANG_WARN_UNREACHABLE_CODE=YES
export CLANG_WARN__DUPLICATE_METHOD_MATCH=YES
export CLASS_FILE_DIR=/Users/xinghao/Library/Developer/Xcode/DerivedData/IPAPatch-ecgwmuorwznvtacsvutrnwurigxq/Build/Intermediates/IPAPatch.build/Debug-iphoneos/IPAPatch-DummyApp.build/JavaClasses
export CLEAN_PRECOMPS=YES
export CLONE_HEADERS=NO
export CODESIGNING_FOLDER_PATH=/Users/xinghao/Library/Developer/Xcode/DerivedData/IPAPatch-ecgwmuorwznvtacsvutrnwurigxq/Build/Products/Debug-iphoneos/IPAPatch-DummyApp.app
export CODE_SIGNING_ALLOWED=YES
export CODE_SIGNING_REQUIRED=YES
export CODE_SIGN_CONTEXT_CLASS=XCiPhoneOSCodeSignContext
export CODE_SIGN_IDENTITY="iPhone Developer"
export CODE_SIGN_STYLE=Automatic
export COLOR_DIAGNOSTICS=NO
export COMBINE_HIDPI_IMAGES=NO
export COMMAND_MODE=legacy
export COMPOSITE_SDK_DIRS=/Users/xinghao/Library/Developer/Xcode/DerivedData/IPAPatch-ecgwmuorwznvtacsvutrnwurigxq/Build/Intermediates/CompositeSDKs
export COMPRESS_PNG_FILES=YES
export CONFIGURATION=Debug
export CONFIGURATION_BUILD_DIR=/Users/xinghao/Library/Developer/Xcode/DerivedData/IPAPatch-ecgwmuorwznvtacsvutrnwurigxq/Build/Products/Debug-iphoneos
export CONFIGURATION_TEMP_DIR=/Users/xinghao/Library/Developer/Xcode/DerivedData/IPAPatch-ecgwmuorwznvtacsvutrnwurigxq/Build/Intermediates/IPAPatch.build/Debug-iphoneos
export CONTENTS_FOLDER_PATH=IPAPatch-DummyApp.app
export COPYING_PRESERVES_HFS_DATA=NO
export COPY_HEADERS_RUN_UNIFDEF=NO
export COPY_PHASE_STRIP=NO
export COPY_RESOURCES_FROM_STATIC_FRAMEWORKS=YES
export CORRESPONDING_SIMULATOR_PLATFORM_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform
export CORRESPONDING_SIMULATOR_PLATFORM_NAME=iphonesimulator
export CORRESPONDING_SIMULATOR_SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.3.sdk
export CORRESPONDING_SIMULATOR_SDK_NAME=iphonesimulator10.3
export CP=/bin/cp
export CREATE_INFOPLIST_SECTION_IN_BINARY=NO
export CURRENT_ARCH=arm64
export CURRENT_PROJECT_VERSION=1
export CURRENT_VARIANT=normal
export DEAD_CODE_STRIPPING=YES
export DEBUGGING_SYMBOLS=YES
export DEBUG_INFORMATION_FORMAT=dwarf
export DEFAULT_COMPILER=com.apple.compilers.llvm.clang.1_0
export DEFAULT_KEXT_INSTALL_PATH=/System/Library/Extensions
export DEFINES_MODULE=NO
export DEPLOYMENT_LOCATION=NO
export DEPLOYMENT_POSTPROCESSING=NO
export DEPLOYMENT_TARGET_CLANG_ENV_NAME=IPHONEOS_DEPLOYMENT_TARGET
export DEPLOYMENT_TARGET_CLANG_FLAG_NAME=miphoneos-version-min
export DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX=-miphoneos-version-min=
export DEPLOYMENT_TARGET_SETTING_NAME=IPHONEOS_DEPLOYMENT_TARGET
export DEPLOYMENT_TARGET_SUGGESTED_VALUES="8.0 8.1 8.2 8.3 8.4 9.0 9.1 9.2 9.3 10.0 10.1 10.2 10.3"
export DERIVED_FILES_DIR=/Users/xinghao/Library/Developer/Xcode/DerivedData/IPAPatch-ecgwmuorwznvtacsvutrnwurigxq/Build/Intermediates/IPAPatch.build/Debug-iphoneos/IPAPatch-DummyApp.build/DerivedSources
export DERIVED_FILE_DIR=/Users/xinghao/Library/Developer/Xcode/DerivedData/IPAPatch-ecgwmuorwznvtacsvutrnwurigxq/Build/Intermediates/IPAPatch.build/Debug-iphoneos/IPAPatch-DummyApp.build/DerivedSources
export DERIVED_SOURCES_DIR=/Users/xinghao/Library/Developer/Xcode/DerivedData/IPAPatch-ecgwmuorwznvtacsvutrnwurigxq/Build/Intermediates/IPAPatch.build/Debug-iphoneos/IPAPatch-DummyApp.build/DerivedSources
export DEVELOPER_APPLICATIONS_DIR=/Applications/Xcode.app/Contents/Developer/Applications
export DEVELOPER_BIN_DIR=/Applications/Xcode.app/Contents/Developer/usr/bin
export DEVELOPER_DIR=/Applications/Xcode.app/Contents/Developer
export DEVELOPER_FRAMEWORKS_DIR=/Applications/Xcode.app/Contents/Developer/Library/Frameworks
export DEVELOPER_FRAMEWORKS_DIR_QUOTED=/Applications/Xcode.app/Contents/Developer/Library/Frameworks
export DEVELOPER_LIBRARY_DIR=/Applications/Xcode.app/Contents/Developer/Library
export DEVELOPER_SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs
export DEVELOPER_TOOLS_DIR=/Applications/Xcode.app/Contents/Developer/Tools
export DEVELOPER_USR_DIR=/Applications/Xcode.app/Contents/Developer/usr
export DEVELOPMENT_LANGUAGE=English
export DEVELOPMENT_TEAM=4XQRJRP48E
export DOCUMENTATION_FOLDER_PATH=IPAPatch-DummyApp.app/English.lproj/Documentation
export DO_HEADER_SCANNING_IN_JAM=NO
export DSTROOT=/tmp/IPAPatch.dst
export DT_TOOLCHAIN_DIR=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
export DWARF_DSYM_FILE_NAME=IPAPatch-DummyApp.app.dSYM
export DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT=NO
export DWARF_DSYM_FOLDER_PATH=/Users/xinghao/Library/Developer/Xcode/DerivedData/IPAPatch-ecgwmuorwznvtacsvutrnwurigxq/Build/Products/Debug-iphoneos
export EFFECTIVE_PLATFORM_NAME=-iphoneos
export EMBEDDED_CONTENT_CONTAINS_SWIFT=NO
export EMBEDDED_PROFILE_NAME=embedded.mobileprovision
export EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE=NO
export ENABLE_BITCODE=NO
export ENABLE_DEFAULT_HEADER_SEARCH_PATHS=YES
export ENABLE_HEADER_DEPENDENCIES=YES
export ENABLE_ON_DEMAND_RESOURCES=YES
export ENABLE_STRICT_OBJC_MSGSEND=YES
export ENABLE_TESTABILITY=YES
export ENTITLEMENTS_ALLOWED=YES
export ENTITLEMENTS_REQUIRED=YES
export EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS=".DS_Store .svn .git .hg CVS"
export EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES="*.nib *.lproj *.framework *.gch .xcode .xcassets () .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj"
export EXECUTABLES_FOLDER_PATH=IPAPatch-DummyApp.app/Executables
export EXECUTABLE_FOLDER_PATH=IPAPatch-DummyApp.app
export EXECUTABLE_NAME=IPAPatch-DummyApp
export EXECUTABLE_PATH=IPAPatch-DummyApp.app/IPAPatch-DummyApp
export EXPANDED_CODE_SIGN_IDENTITY=28376EE1119397FB4E7C52AB11C433B01B8CF8C9
export EXPANDED_CODE_SIGN_IDENTITY_NAME="iPhone Developer: Ruijie Liu (G4WNNQZFP4)"
export EXPANDED_PROVISIONING_PROFILE=6c1abf62-be95-4d53-8ea1-4de4ba993639
export FILE_LIST=/Users/xinghao/Library/Developer/Xcode/DerivedData/IPAPatch-ecgwmuorwznvtacsvutrnwurigxq/Build/Intermediates/IPAPatch.build/Debug-iphoneos/IPAPatch-DummyApp.build/Objects/LinkFileList
export FIXED_FILES_DIR=/Users/xinghao/Library/Developer/Xcode/DerivedData/IPAPatch-ecgwmuorwznvtacsvutrnwurigxq/Build/Intermediates/IPAPatch.build/Debug-iphoneos/IPAPatch-DummyApp.build/FixedFiles
export FRAMEWORKS_FOLDER_PATH=IPAPatch-DummyApp.app/Frameworks
export FRAMEWORK_FLAG_PREFIX=-framework
export FRAMEWORK_SEARCH_PATHS="/Users/xinghao/Library/Developer/Xcode/DerivedData/IPAPatch-ecgwmuorwznvtacsvutrnwurigxq/Build/Products/Debug-iphoneos "
export FRAMEWORK_VERSION=A
export FULL_PRODUCT_NAME=IPAPatch-DummyApp.app
export GCC3_VERSION=3.3
export GCC_C_LANGUAGE_STANDARD=gnu99
export GCC_DYNAMIC_NO_PIC=NO
export GCC_INLINES_ARE_PRIVATE_EXTERN=YES
export GCC_NO_COMMON_BLOCKS=YES
export GCC_OPTIMIZATION_LEVEL=0
export GCC_PFE_FILE_C_DIALECTS="c objective-c c++ objective-c++"
export GCC_PREPROCESSOR_DEFINITIONS="DEBUG=1 DEBUG=1 TARGET_BUNDLE_ID=com.xiudou.xiudouiOSxx"
export GCC_SYMBOLS_PRIVATE_EXTERN=NO
export GCC_THUMB_SUPPORT=YES
export GCC_TREAT_WARNINGS_AS_ERRORS=NO
export GCC_VERSION=com.apple.compilers.llvm.clang.1_0
export GCC_VERSION_IDENTIFIER=com_apple_compilers_llvm_clang_1_0
export GCC_WARN_64_TO_32_BIT_CONVERSION=YES
export GCC_WARN_ABOUT_RETURN_TYPE=YES_ERROR
export GCC_WARN_UNDECLARED_SELECTOR=YES
export GCC_WARN_UNINITIALIZED_AUTOS=YES_AGGRESSIVE
export GCC_WARN_UNUSED_FUNCTION=YES
export GCC_WARN_UNUSED_VARIABLE=YES
export GENERATE_MASTER_OBJECT_FILE=NO
export GENERATE_PKGINFO_FILE=YES
export GENERATE_PROFILING_CODE=NO
export GENERATE_TEXT_BASED_STUBS=NO
export GID=20
export GROUP=staff
export HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT=YES
export HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES=YES
export HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS=YES
export HEADERMAP_INCLUDES_PROJECT_HEADERS=YES
export HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES=YES
export HEADERMAP_USES_VFS=NO
export HEADER_SEARCH_PATHS="/Users/xinghao/Library/Developer/Xcode/DerivedData/IPAPatch-ecgwmuorwznvtacsvutrnwurigxq/Build/Products/Debug-iphoneos/include "
export HIDE_BITCODE_SYMBOLS=YES
export HOME=/Users/xinghao
export ICONV=/usr/bin/iconv
export INFOPLIST_EXPAND_BUILD_SETTINGS=YES
export INFOPLIST_FILE=IPAPatch-DummyApp/Info.plist
export INFOPLIST_OUTPUT_FORMAT=binary
export INFOPLIST_PATH=IPAPatch-DummyApp.app/Info.plist
export INFOPLIST_PREPROCESS=NO
export INFOSTRINGS_PATH=IPAPatch-DummyApp.app/English.lproj/InfoPlist.strings
export INLINE_PRIVATE_FRAMEWORKS=NO
export INSTALLHDRS_COPY_PHASE=NO
export INSTALLHDRS_SCRIPT_PHASE=NO
export INSTALL_DIR=/tmp/IPAPatch.dst/Applications
export INSTALL_GROUP=staff
export INSTALL_MODE_FLAG=u+w,go-w,a+rX
export INSTALL_OWNER=xinghao
export INSTALL_PATH=/Applications
export INSTALL_ROOT=/tmp/IPAPatch.dst
export IPHONEOS_DEPLOYMENT_TARGET=8.0
export JAVAC_DEFAULT_FLAGS="-J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8"
export JAVA_APP_STUB=/System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub
export JAVA_ARCHIVE_CLASSES=YES
export JAVA_ARCHIVE_TYPE=JAR
export JAVA_COMPILER=/usr/bin/javac
export JAVA_FOLDER_PATH=IPAPatch-DummyApp.app/Java
export JAVA_FRAMEWORK_RESOURCES_DIRS=Resources
export JAVA_JAR_FLAGS=cv
export JAVA_SOURCE_SUBDIR=.
export JAVA_USE_DEPENDENCIES=YES
export JAVA_ZIP_FLAGS=-urg
export JIKES_DEFAULT_FLAGS="+E +OLDCSO"
export KEEP_PRIVATE_EXTERNS=NO
export LD_DEPENDENCY_INFO_FILE=/Users/xinghao/Library/Developer/Xcode/DerivedData/IPAPatch-ecgwmuorwznvtacsvutrnwurigxq/Build/Intermediates/IPAPatch.build/Debug-iphoneos/IPAPatch-DummyApp.build/Objects-normal/arm64/IPAPatch-DummyApp_dependency_info.dat
export LD_GENERATE_MAP_FILE=NO
export LD_MAP_FILE_PATH=/Users/xinghao/Library/Developer/Xcode/DerivedData/IPAPatch-ecgwmuorwznvtacsvutrnwurigxq/Build/Intermediates/IPAPatch.build/Debug-iphoneos/IPAPatch-DummyApp.build/IPAPatch-DummyApp-LinkMap-normal-arm64.txt
export LD_NO_PIE=NO
export LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER=YES
export LD_RUNPATH_SEARCH_PATHS=" @executable_path/Frameworks"
export LEGACY_DEVELOPER_DIR=/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer
export LEX=lex
export LIBRARY_FLAG_NOSPACE=YES
export LIBRARY_FLAG_PREFIX=-l
export LIBRARY_KEXT_INSTALL_PATH=/Library/Extensions
export LIBRARY_SEARCH_PATHS="/Users/xinghao/Library/Developer/Xcode/DerivedData/IPAPatch-ecgwmuorwznvtacsvutrnwurigxq/Build/Products/Debug-iphoneos "
export LINKER_DISPLAYS_MANGLED_NAMES=NO
export LINK_FILE_LIST_normal_arm64=/Users/xinghao/Library/Developer/Xcode/DerivedData/IPAPatch-ecgwmuorwznvtacsvutrnwurigxq/Build/Intermediates/IPAPatch.build/Debug-iphoneos/IPAPatch-DummyApp.build/Objects-normal/arm64/IPAPatch-DummyApp.LinkFileList
export LINK_WITH_STANDARD_LIBRARIES=YES
export LOCALIZABLE_CONTENT_DIR=
export LOCALIZED_RESOURCES_FOLDER_PATH=IPAPatch-DummyApp.app/English.lproj
export LOCAL_ADMIN_APPS_DIR=/Applications/Utilities
export LOCAL_APPS_DIR=/Applications
export LOCAL_DEVELOPER_DIR=/Library/Developer
export LOCAL_LIBRARY_DIR=/Library
export LOCROOT=
export LOCSYMROOT=
export MACH_O_TYPE=mh_execute
export MAC_OS_X_PRODUCT_BUILD_VERSION=16G29
export MAC_OS_X_VERSION_ACTUAL=101206
export MAC_OS_X_VERSION_MAJOR=101200
export MAC_OS_X_VERSION_MINOR=1206
export METAL_LIBRARY_FILE_BASE=default
export METAL_LIBRARY_OUTPUT_DIR=/Users/xinghao/Library/Developer/Xcode/DerivedData/IPAPatch-ecgwmuorwznvtacsvutrnwurigxq/Build/Products/Debug-iphoneos/IPAPatch-DummyApp.app
export MODULE_CACHE_DIR=/Users/xinghao/Library/Developer/Xcode/DerivedData/ModuleCache
export MTL_ENABLE_DEBUG_INFO=YES
export NATIVE_ARCH=armv7
export NATIVE_ARCH_32_BIT=i386
export NATIVE_ARCH_64_BIT=x86_64
export NATIVE_ARCH_ACTUAL=x86_64
export NO_COMMON=YES
export OBJECT_FILE_DIR=/Users/xinghao/Library/Developer/Xcode/DerivedData/IPAPatch-ecgwmuorwznvtacsvutrnwurigxq/Build/Intermediates/IPAPatch.build/Debug-iphoneos/IPAPatch-DummyApp.build/Objects
export OBJECT_FILE_DIR_normal=/Users/xinghao/Library/Developer/Xcode/DerivedData/IPAPatch-ecgwmuorwznvtacsvutrnwurigxq/Build/Intermediates/IPAPatch.build/Debug-iphoneos/IPAPatch-DummyApp.build/Objects-normal
export OBJROOT=/Users/xinghao/Library/Developer/Xcode/DerivedData/IPAPatch-ecgwmuorwznvtacsvutrnwurigxq/Build/Intermediates
export ONLY_ACTIVE_ARCH=YES
export OS=MACOS
export OSAC=/usr/bin/osacompile
export PACKAGE_TYPE=com.apple.package-type.wrapper.application
export PASCAL_STRINGS=YES
export PATH="/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/local/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Tools:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin"
export PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES="/usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode.app/Contents/Developer/Headers /Applications/Xcode.app/Contents/Developer/SDKs /Applications/Xcode.app/Contents/Developer/Platforms"
export PBDEVELOPMENTPLIST_PATH=IPAPatch-DummyApp.app/pbdevelopment.plist
export PFE_FILE_C_DIALECTS="objective-c c++"
export PKGINFO_FILE_PATH=/Users/xinghao/Library/Developer/Xcode/DerivedData/IPAPatch-ecgwmuorwznvtacsvutrnwurigxq/Build/Intermediates/IPAPatch.build/Debug-iphoneos/IPAPatch-DummyApp.build/PkgInfo
export PKGINFO_PATH=IPAPatch-DummyApp.app/PkgInfo
export PLATFORM_DEVELOPER_APPLICATIONS_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Applications
export PLATFORM_DEVELOPER_BIN_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin
export PLATFORM_DEVELOPER_LIBRARY_DIR=/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer/Library
export PLATFORM_DEVELOPER_SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs
export PLATFORM_DEVELOPER_TOOLS_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Tools
export PLATFORM_DEVELOPER_USR_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr
export PLATFORM_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform
export PLATFORM_DISPLAY_NAME=iOS
export PLATFORM_NAME=iphoneos
export PLATFORM_PREFERRED_ARCH=arm64
export PLATFORM_PRODUCT_BUILD_VERSION=14E8301
export PLIST_FILE_OUTPUT_FORMAT=binary
export PLUGINS_FOLDER_PATH=IPAPatch-DummyApp.app/PlugIns
export PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR=YES
export PRECOMP_DESTINATION_DIR=/Users/xinghao/Library/Developer/Xcode/DerivedData/IPAPatch-ecgwmuorwznvtacsvutrnwurigxq/Build/Intermediates/IPAPatch.build/Debug-iphoneos/IPAPatch-DummyApp.build/PrefixHeaders
export PRESERVE_DEAD_CODE_INITS_AND_TERMS=NO
export PRIVATE_HEADERS_FOLDER_PATH=IPAPatch-DummyApp.app/PrivateHeaders
export PRODUCT_BUNDLE_IDENTIFIER=com.xiudou.xiudouiOSxx
export PRODUCT_MODULE_NAME=IPAPatch_DummyApp
export PRODUCT_NAME=IPAPatch-DummyApp
export PRODUCT_SETTINGS_PATH=/Users/xinghao/Desktop/IPAPatch/IPAPatch-DummyApp/Info.plist
export PRODUCT_TYPE=com.apple.product-type.application
export PROFILING_CODE=NO
export PROJECT=IPAPatch
export PROJECT_DERIVED_FILE_DIR=/Users/xinghao/Library/Developer/Xcode/DerivedData/IPAPatch-ecgwmuorwznvtacsvutrnwurigxq/Build/Intermediates/IPAPatch.build/DerivedSources
export PROJECT_DIR=/Users/xinghao/Desktop/IPAPatch
export PROJECT_FILE_PATH=/Users/xinghao/Desktop/IPAPatch/IPAPatch.xcodeproj
export PROJECT_NAME=IPAPatch
export PROJECT_TEMP_DIR=/Users/xinghao/Library/Developer/Xcode/DerivedData/IPAPatch-ecgwmuorwznvtacsvutrnwurigxq/Build/Intermediates/IPAPatch.build
export PROJECT_TEMP_ROOT=/Users/xinghao/Library/Developer/Xcode/DerivedData/IPAPatch-ecgwmuorwznvtacsvutrnwurigxq/Build/Intermediates
export PROVISIONING_PROFILE_REQUIRED=YES
export PUBLIC_HEADERS_FOLDER_PATH=IPAPatch-DummyApp.app/Headers
export RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS=YES
export REMOVE_CVS_FROM_RESOURCES=YES
export REMOVE_GIT_FROM_RESOURCES=YES
export REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES=YES
export REMOVE_HG_FROM_RESOURCES=YES
export REMOVE_SVN_FROM_RESOURCES=YES
export RESOURCE_RULES_REQUIRED=YES
export REZ_COLLECTOR_DIR=/Users/xinghao/Library/Developer/Xcode/DerivedData/IPAPatch-ecgwmuorwznvtacsvutrnwurigxq/Build/Intermediates/IPAPatch.build/Debug-iphoneos/IPAPatch-DummyApp.build/ResourceManagerResources
export REZ_OBJECTS_DIR=/Users/xinghao/Library/Developer/Xcode/DerivedData/IPAPatch-ecgwmuorwznvtacsvutrnwurigxq/Build/Intermediates/IPAPatch.build/Debug-iphoneos/IPAPatch-DummyApp.build/ResourceManagerResources/Objects
export REZ_SEARCH_PATHS="/Users/xinghao/Library/Developer/Xcode/DerivedData/IPAPatch-ecgwmuorwznvtacsvutrnwurigxq/Build/Products/Debug-iphoneos "
export SCAN_ALL_SOURCE_FILES_FOR_INCLUDES=NO
export SCRIPTS_FOLDER_PATH=IPAPatch-DummyApp.app/Scripts
export SCRIPT_INPUT_FILE_COUNT=0
export SCRIPT_OUTPUT_FILE_COUNT=0
export SDKROOT=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.3.sdk
export SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.3.sdk
export SDK_DIR_iphoneos10_3=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.3.sdk
export SDK_NAME=iphoneos10.3
export SDK_NAMES=iphoneos10.3
export SDK_PRODUCT_BUILD_VERSION=14E8301
export SDK_VERSION=10.3
export SDK_VERSION_ACTUAL=100300
export SDK_VERSION_MAJOR=100000
export SDK_VERSION_MINOR=300
export SED=/usr/bin/sed
export SEPARATE_STRIP=NO
export SEPARATE_SYMBOL_EDIT=NO
export SET_DIR_MODE_OWNER_GROUP=YES
export SET_FILE_MODE_OWNER_GROUP=NO
export SHALLOW_BUNDLE=YES
export SHARED_DERIVED_FILE_DIR=/Users/xinghao/Library/Developer/Xcode/DerivedData/IPAPatch-ecgwmuorwznvtacsvutrnwurigxq/Build/Products/Debug-iphoneos/DerivedSources
export SHARED_FRAMEWORKS_FOLDER_PATH=IPAPatch-DummyApp.app/SharedFrameworks
export SHARED_PRECOMPS_DIR=/Users/xinghao/Library/Developer/Xcode/DerivedData/IPAPatch-ecgwmuorwznvtacsvutrnwurigxq/Build/Intermediates/PrecompiledHeaders
export SHARED_SUPPORT_FOLDER_PATH=IPAPatch-DummyApp.app/SharedSupport
export SKIP_INSTALL=NO
export SOURCE_ROOT=/Users/xinghao/Desktop/IPAPatch
export SRCROOT=/Users/xinghao/Desktop/IPAPatch
export STRINGS_FILE_OUTPUT_ENCODING=binary
export STRIP_BITCODE_FROM_COPIED_FILES=YES
export STRIP_INSTALLED_PRODUCT=YES
export STRIP_STYLE=all
export SUPPORTED_DEVICE_FAMILIES=1,2
export SUPPORTED_PLATFORMS="iphonesimulator iphoneos"
export SUPPORTS_TEXT_BASED_API=NO
export SWIFT_PLATFORM_TARGET_PREFIX=ios
export SYMROOT=/Users/xinghao/Library/Developer/Xcode/DerivedData/IPAPatch-ecgwmuorwznvtacsvutrnwurigxq/Build/Products
export SYSTEM_ADMIN_APPS_DIR=/Applications/Utilities
export SYSTEM_APPS_DIR=/Applications
export SYSTEM_CORE_SERVICES_DIR=/System/Library/CoreServices
export SYSTEM_DEMOS_DIR=/Applications/Extras
export SYSTEM_DEVELOPER_APPS_DIR=/Applications/Xcode.app/Contents/Developer/Applications
export SYSTEM_DEVELOPER_BIN_DIR=/Applications/Xcode.app/Contents/Developer/usr/bin
export SYSTEM_DEVELOPER_DEMOS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples"
export SYSTEM_DEVELOPER_DIR=/Applications/Xcode.app/Contents/Developer
export SYSTEM_DEVELOPER_DOC_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library"
export SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools"
export SYSTEM_DEVELOPER_JAVA_TOOLS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Java Tools"
export SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Performance Tools"
export SYSTEM_DEVELOPER_RELEASENOTES_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes"
export SYSTEM_DEVELOPER_TOOLS=/Applications/Xcode.app/Contents/Developer/Tools
export SYSTEM_DEVELOPER_TOOLS_DOC_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools"
export SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools"
export SYSTEM_DEVELOPER_USR_DIR=/Applications/Xcode.app/Contents/Developer/usr
export SYSTEM_DEVELOPER_UTILITIES_DIR=/Applications/Xcode.app/Contents/Developer/Applications/Utilities
export SYSTEM_DOCUMENTATION_DIR=/Library/Documentation
export SYSTEM_KEXT_INSTALL_PATH=/System/Library/Extensions
export SYSTEM_LIBRARY_DIR=/System/Library
export TAPI_VERIFY_MODE=ErrorsOnly
export TARGETED_DEVICE_FAMILY=1,2
export TARGETNAME=IPAPatch-DummyApp
export TARGET_BUILD_DIR=/Users/xinghao/Library/Developer/Xcode/DerivedData/IPAPatch-ecgwmuorwznvtacsvutrnwurigxq/Build/Products/Debug-iphoneos
export TARGET_DEVICE_IDENTIFIER=3f0a37caddb332e85edbff0a47b2c8ef52f57fcb
export TARGET_DEVICE_MODEL=iPhone8,2
export TARGET_DEVICE_OS_VERSION=10.3.2
export TARGET_NAME=IPAPatch-DummyApp
export TARGET_TEMP_DIR=/Users/xinghao/Library/Developer/Xcode/DerivedData/IPAPatch-ecgwmuorwznvtacsvutrnwurigxq/Build/Intermediates/IPAPatch.build/Debug-iphoneos/IPAPatch-DummyApp.build
export TEMP_DIR=/Users/xinghao/Library/Developer/Xcode/DerivedData/IPAPatch-ecgwmuorwznvtacsvutrnwurigxq/Build/Intermediates/IPAPatch.build/Debug-iphoneos/IPAPatch-DummyApp.build
export TEMP_FILES_DIR=/Users/xinghao/Library/Developer/Xcode/DerivedData/IPAPatch-ecgwmuorwznvtacsvutrnwurigxq/Build/Intermediates/IPAPatch.build/Debug-iphoneos/IPAPatch-DummyApp.build
export TEMP_FILE_DIR=/Users/xinghao/Library/Developer/Xcode/DerivedData/IPAPatch-ecgwmuorwznvtacsvutrnwurigxq/Build/Intermediates/IPAPatch.build/Debug-iphoneos/IPAPatch-DummyApp.build
export TEMP_ROOT=/Users/xinghao/Library/Developer/Xcode/DerivedData/IPAPatch-ecgwmuorwznvtacsvutrnwurigxq/Build/Intermediates
export TOOLCHAINS=com.apple.dt.toolchain.XcodeDefault
export TOOLCHAIN_DIR=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
export TREAT_MISSING_BASELINES_AS_TEST_FAILURES=NO
export UID=501
export UNLOCALIZED_RESOURCES_FOLDER_PATH=IPAPatch-DummyApp.app
export UNSTRIPPED_PRODUCT=NO
export USER=xinghao
export USER_APPS_DIR=/Users/xinghao/Applications
export USER_LIBRARY_DIR=/Users/xinghao/Library
export USE_DYNAMIC_NO_PIC=YES
export USE_HEADERMAP=YES
export USE_HEADER_SYMLINKS=NO
export VALIDATE_PRODUCT=NO
export VALID_ARCHS="arm64 armv7 armv7s"
export VERBOSE_PBXCP=NO
export VERSIONING_SYSTEM=apple-generic
export VERSIONPLIST_PATH=IPAPatch-DummyApp.app/version.plist
export VERSION_INFO_BUILDER=xinghao
export VERSION_INFO_FILE=IPAPatch-DummyApp_vers.c
export VERSION_INFO_STRING=""@(#)PROGRAM:IPAPatch-DummyApp PROJECT:IPAPatch-1""
export WRAPPER_EXTENSION=app
export WRAPPER_NAME=IPAPatch-DummyApp.app
export WRAPPER_SUFFIX=.app
export WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES=NO
export XCODE_APP_SUPPORT_DIR=/Applications/Xcode.app/Contents/Developer/Library/Xcode
export XCODE_PRODUCT_BUILD_VERSION=8E3004b
export XCODE_VERSION_ACTUAL=0833
export XCODE_VERSION_MAJOR=0800
export XCODE_VERSION_MINOR=0830
export XPCSERVICES_FOLDER_PATH=IPAPatch-DummyApp.app/XPCServices
export YACC=yacc
export arch=arm64
export variant=normal
/bin/sh -c /Users/xinghao/Library/Developer/Xcode/DerivedData/IPAPatch-ecgwmuorwznvtacsvutrnwurigxq/Build/Intermediates/IPAPatch.build/Debug-iphoneos/IPAPatch-DummyApp.build/Script-C6B263631E7BD0B4009B4DEA.sh

DUMMY_DISPLAY_NAME: 啦啦
RESTORE_SYMBOLS: true
CREATE_IPA_FILE:
TARGET_BUNDLE_ID: com.xiudou.xiudouiOSxx
TEMP_APP_PATH: /Users/xinghao/Desktop/IPAPatch/Temp/Payload/秀兜.app
MACH_O_FILE_PATH: /Users/xinghao/Desktop/IPAPatch/Temp/Payload/秀兜.app/秀兜
=========== Start =============
Scan OC method in mach-o-file.
2017-08-30 19:05:48.555 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, countDownTimeStatusString
2017-08-30 19:05:48.555 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, countDownTimeLabelText
2017-08-30 19:05:48.555 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, statusImageView.storage
2017-08-30 19:05:48.555 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, countDownTimeLabel.storage
2017-08-30 19:05:48.555 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, collectionView.storage
2017-08-30 19:05:48.555 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, emojiModels.storage
2017-08-30 19:05:48.555 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, commentInputView
2017-08-30 19:05:48.555 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, placeHolderView
2017-08-30 19:05:48.555 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, inputViewType
2017-08-30 19:05:48.555 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, targetUser
2017-08-30 19:05:48.555 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, targetCommentID
2017-08-30 19:05:48.555 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, targetNormalID
2017-08-30 19:05:48.556 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, targetRootID
2017-08-30 19:05:48.556 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, isCommentType
2017-08-30 19:05:48.556 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, sendButton.storage
2017-08-30 19:05:48.556 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, imageModel
2017-08-30 19:05:48.556 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, productImage.storage
2017-08-30 19:05:48.556 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, tableView
2017-08-30 19:05:48.556 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, imageArray
2017-08-30 19:05:48.556 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, titleArray
2017-08-30 19:05:48.556 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, statusArray
2017-08-30 19:05:48.557 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, authCellIdentifier
2017-08-30 19:05:48.557 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, COLLECTION_CELL_HEIGHT
2017-08-30 19:05:48.557 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, containerView
2017-08-30 19:05:48.557 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, user
2017-08-30 19:05:48.557 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, titleLbl
2017-08-30 19:05:48.557 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, successView
2017-08-30 19:05:48.557 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, alertView
2017-08-30 19:05:48.557 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, sureBtn
2017-08-30 19:05:48.557 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, needUpdateCallback
2017-08-30 19:05:48.557 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, backgroundView
2017-08-30 19:05:48.557 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, pickView
2017-08-30 19:05:48.557 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, myPicker
2017-08-30 19:05:48.557 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, identityImageBtn
2017-08-30 19:05:48.558 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, identityInfoLabel
2017-08-30 19:05:48.558 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, spikeModelFrameList.storage
2017-08-30 19:05:48.558 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, sessionDataTask
2017-08-30 19:05:48.558 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, linkDatas
2017-08-30 19:05:48.558 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, forwardUserID
2017-08-30 19:05:48.558 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, cellIdentifier
2017-08-30 19:05:48.558 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, tableView.storage
2017-08-30 19:05:48.558 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, ImageView.storage
2017-08-30 19:05:48.558 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, bottomView.storage
2017-08-30 19:05:48.558 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, iconView.storage
2017-08-30 19:05:48.558 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, nameLabel.storage
2017-08-30 19:05:48.558 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, genderImageView.storage
2017-08-30 19:05:48.558 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, fenAndAttentLabel.storage
2017-08-30 19:05:48.558 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, attentButton.storage
2017-08-30 19:05:48.558 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, collectioView.storage
2017-08-30 19:05:48.558 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, attentionModel
2017-08-30 19:05:48.559 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, comment
2017-08-30 19:05:48.559 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, commentsuper
2017-08-30 19:05:48.559 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, lineView.storage
2017-08-30 19:05:48.559 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, titleLabel
2017-08-30 19:05:48.559 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, gotoBtn
2017-08-30 19:05:48.559 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, delegate
2017-08-30 19:05:48.559 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, selectedBtn
2017-08-30 19:05:48.559 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, productOrNormal
2017-08-30 19:05:48.559 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, segmentType
2017-08-30 19:05:48.559 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, commentCount
2017-08-30 19:05:48.559 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, leftButton.storage
2017-08-30 19:05:48.559 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, rightButton.storage
2017-08-30 19:05:48.559 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, lineView.storage
2017-08-30 19:05:48.559 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, bottomLine.storage
2017-08-30 19:05:48.560 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, margin
2017-08-30 19:05:48.560 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, pushProduct
2017-08-30 19:05:48.560 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, tableView.storage
2017-08-30 19:05:48.560 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, modelArray.storage
2017-08-30 19:05:48.560 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, user
2017-08-30 19:05:48.560 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, itemButton.storage
2017-08-30 19:05:48.560 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, upDataUI
2017-08-30 19:05:48.560 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, selectedButton
2017-08-30 19:05:48.560 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, productDetailButton.storage
2017-08-30 19:05:48.560 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, buyShowButton.storage
2017-08-30 19:05:48.560 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, lineView.storage
2017-08-30 19:05:48.560 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, bottomLineView.storage
2017-08-30 19:05:48.560 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, image
2017-08-30 19:05:48.560 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, showIamgeView.storage
2017-08-30 19:05:48.560 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, playIamgeView.storage
2017-08-30 19:05:48.561 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, spikeModelFrame
2017-08-30 19:05:48.561 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, data
2017-08-30 19:05:48.561 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, forwardUserView
2017-08-30 19:05:48.561 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, isNormal
2017-08-30 19:05:48.561 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, margin
2017-08-30 19:05:48.561 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, videoID
2017-08-30 19:05:48.561 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, content
2017-08-30 19:05:48.561 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, topicVc
2017-08-30 19:05:48.561 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, spikeTimer
2017-08-30 19:05:48.561 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, spikeStatus
2017-08-30 19:05:48.561 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, presentView.storage
2017-08-30 19:05:48.561 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, titleLabel.storage
2017-08-30 19:05:48.561 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, myTextView.storage
2017-08-30 19:05:48.561 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, oldPriceLabel.storage
2017-08-30 19:05:48.561 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, spikePriceLabel.storage
2017-08-30 19:05:48.561 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, deleteLineView.storage
2017-08-30 19:05:48.561 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, pinkageLabel.storage
2017-08-30 19:05:48.561 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, surplusLbl.storage
2017-08-30 19:05:48.561 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, union.storage
2017-08-30 19:05:48.561 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, playCountLabel.storage
2017-08-30 19:05:48.561 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, toolView.storage
2017-08-30 19:05:48.561 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, forwardUserVC.storage
2017-08-30 19:05:48.562 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, recordIdentifier
2017-08-30 19:05:48.562 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, tableView
2017-08-30 19:05:48.562 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, datas
2017-08-30 19:05:48.562 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, orderID
2017-08-30 19:05:48.562 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, numberOfSection
2017-08-30 19:05:48.562 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, tableView
2017-08-30 19:05:48.563 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, footerView
2017-08-30 19:05:48.563 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, footerViewHieght
2017-08-30 19:05:48.563 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, basicInfoArray
2017-08-30 19:05:48.563 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, bankInforArray
2017-08-30 19:05:48.563 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, basicCellIdentifier
2017-08-30 19:05:48.563 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, bankCellIdentifier
2017-08-30 19:05:48.563 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, arrayOfValuesSec0
2017-08-30 19:05:48.563 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, arrayOfValuesSec1
2017-08-30 19:05:48.563 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, idCardFrontBtn
2017-08-30 19:05:48.563 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, idCardBackBtn
2017-08-30 19:05:48.563 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, idCardFrontSetImg
2017-08-30 19:05:48.563 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, idCardBackSetImg
2017-08-30 19:05:48.563 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, TAIL_IMG_WIDTH
2017-08-30 19:05:48.563 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, TAIL_IMG_HEIGHT
2017-08-30 19:05:48.563 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, imgPicker
2017-08-30 19:05:48.563 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, setFrontOrBackImg
2017-08-30 19:05:48.563 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, authInfo
2017-08-30 19:05:48.563 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, authType
2017-08-30 19:05:48.563 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, authEditType
2017-08-30 19:05:48.563 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, isOffical
2017-08-30 19:05:48.563 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, uploaderArray
2017-08-30 19:05:48.563 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, rightBtn
2017-08-30 19:05:48.564 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, parentView
2017-08-30 19:05:48.564 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, detailsUrl
2017-08-30 19:05:48.564 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, reportType
2017-08-30 19:05:48.564 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, detailView
2017-08-30 19:05:48.564 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, product
2017-08-30 19:05:48.564 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, isSharing
2017-08-30 19:05:48.564 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, needUpdateUI
2017-08-30 19:05:48.564 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, tempImageView
2017-08-30 19:05:48.564 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, data
2017-08-30 19:05:48.564 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, downloadBtn.storage
2017-08-30 19:05:48.564 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, favoritesBtn.storage
2017-08-30 19:05:48.564 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, shareBtn.storage
2017-08-30 19:05:48.564 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, playCountLabel.storage
2017-08-30 19:05:48.564 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, moreBtn.storage
2017-08-30 19:05:48.564 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, showingVc
2017-08-30 19:05:48.564 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, segmentView.storage
2017-08-30 19:05:48.564 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, linkProductsListVC.storage
2017-08-30 19:05:48.564 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, commenVC.storage
2017-08-30 19:05:48.565 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, margin
2017-08-30 19:05:48.565 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, videoID
2017-08-30 19:05:48.565 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, product
2017-08-30 19:05:48.565 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, linkImageView.storage
2017-08-30 19:05:48.565 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, linkTitleLabel.storage
2017-08-30 19:05:48.565 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, priceLabel.storage
2017-08-30 19:05:48.565 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, lineView.storage
2017-08-30 19:05:48.565 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, margin
2017-08-30 19:05:48.565 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, topMargin
2017-08-30 19:05:48.565 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, NormalCommentCellIconWH
2017-08-30 19:05:48.565 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, otherAttriName
2017-08-30 19:05:48.565 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, heightConstraint
2017-08-30 19:05:48.565 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, videoID
2017-08-30 19:05:48.565 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, delegate
2017-08-30 19:05:48.565 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, notClickSpecialValue
2017-08-30 19:05:48.565 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, userIcon.storage
2017-08-30 19:05:48.565 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, titleLabel.storage
2017-08-30 19:05:48.565 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, sexImageView.storage
2017-08-30 19:05:48.565 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, zanButton.storage
2017-08-30 19:05:48.565 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, zanCountLabel.storage
2017-08-30 19:05:48.565 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, commentImage.storage
2017-08-30 19:05:48.565 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, locationLabel.storage
2017-08-30 19:05:48.565 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, contentTextView.storage
2017-08-30 19:05:48.565 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, bestCommentLabel.storage
2017-08-30 19:05:48.566 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, bottomLineView.storage
2017-08-30 19:05:48.566 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, commentFrame
2017-08-30 19:05:48.566 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, cacheNameArray
2017-08-30 19:05:48.566 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, showImageView.storage
2017-08-30 19:05:48.566 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, coverView.storage
2017-08-30 19:05:48.566 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, playTimeLabel.storage
2017-08-30 19:05:48.566 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, spritLabel.storage
2017-08-30 19:05:48.566 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, playCountLabel.storage
2017-08-30 19:05:48.566 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, spritTwoLabel.storage
2017-08-30 19:05:48.566 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, cacheLabel.storage
2017-08-30 19:05:48.566 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, titleLabel.storage
2017-08-30 19:05:48.566 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, priceLabelBackGround.storage
2017-08-30 19:05:48.566 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, priceLabel.storage
2017-08-30 19:05:48.566 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, forwardBackGround.storage
2017-08-30 19:05:48.566 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, forwardLabel.storage
2017-08-30 19:05:48.566 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, attentionProductModel
2017-08-30 19:05:48.566 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, uploadImgCount
2017-08-30 19:05:48.566 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, setImageNum
2017-08-30 19:05:48.566 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, btnTitleArray
2017-08-30 19:05:48.567 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, imagePathArray
2017-08-30 19:05:48.567 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, imgArray
2017-08-30 19:05:48.567 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, ifImgUploadedArray
2017-08-30 19:05:48.567 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, currentBtn
2017-08-30 19:05:48.567 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, arrayOfImgBtns
2017-08-30 19:05:48.567 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, arrayOfImgTitles
2017-08-30 19:05:48.567 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, imageModel
2017-08-30 19:05:48.567 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, priductImage.storage
2017-08-30 19:05:48.567 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, myFavList.storage
2017-08-30 19:05:48.567 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, myFavTopicList.storage
2017-08-30 19:05:48.567 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, order
2017-08-30 19:05:48.567 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, countdownType
2017-08-30 19:05:48.567 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, timer
2017-08-30 19:05:48.567 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, countdownView
2017-08-30 19:05:48.567 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, imageView.storage
2017-08-30 19:05:48.567 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, emojiModel
2017-08-30 19:05:48.568 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, videoBtn
2017-08-30 19:05:48.568 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, imageBtn
2017-08-30 19:05:48.568 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, returnReasonLabel
2017-08-30 19:05:48.568 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, returnPriceLabel
2017-08-30 19:05:48.568 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, returnApplyTimeLabel
2017-08-30 19:05:48.568 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, orderID
2017-08-30 19:05:48.568 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, basicView
2017-08-30 19:05:48.568 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, playIconV
2017-08-30 19:05:48.568 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, data
2017-08-30 19:05:48.568 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, player
2017-08-30 19:05:48.568 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, commentTitleType
2017-08-30 19:05:48.568 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, bottomConstraint
2017-08-30 19:05:48.569 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, locationManager
2017-08-30 19:05:48.569 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, completionBlock
2017-08-30 19:05:48.569 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, localImage
2017-08-30 19:05:48.569 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, cityWidth
2017-08-30 19:05:48.569 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, cityString
2017-08-30 19:05:48.569 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, provinceSritn
2017-08-30 19:05:48.569 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, topicName
2017-08-30 19:05:48.569 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, location
2017-08-30 19:05:48.569 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, poi
2017-08-30 19:05:48.569 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, delegate
2017-08-30 19:05:48.569 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, sendImageView.storage
2017-08-30 19:05:48.569 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, topicNames.storage
2017-08-30 19:05:48.569 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, textView.storage
2017-08-30 19:05:48.569 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, sendButton.storage
2017-08-30 19:05:48.569 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, toolBarView.storage
2017-08-30 19:05:48.569 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, locationButton.storage
2017-08-30 19:05:48.569 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, topicButton.storage
2017-08-30 19:05:48.570 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, returnReasonContentLabel
2017-08-30 19:05:48.570 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, returnPriceContentView
2017-08-30 19:05:48.570 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, logisticsInfoView
2017-08-30 19:05:48.570 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, tableView
2017-08-30 19:05:48.570 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, order
2017-08-30 19:05:48.570 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, totalSection
2017-08-30 19:05:48.570 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, currentSelectReturnType
2017-08-30 19:05:48.570 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, currentLogisticsID
2017-08-30 19:05:48.570 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, currentReturnReasonKey
2017-08-30 19:05:48.570 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, logisticsNumberView
2017-08-30 19:05:48.570 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, logisticCompanyField
2017-08-30 19:05:48.570 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, logisticsArray
2017-08-30 19:05:48.570 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, returnReasonDictionary
2017-08-30 19:05:48.570 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, uploadPictureBtn
2017-08-30 19:05:48.570 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, uploadVideoBtn
2017-08-30 19:05:48.570 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, hasLogisticsBtn
2017-08-30 19:05:48.570 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, noLogisticsBtn
2017-08-30 19:05:48.570 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, submitBtn
2017-08-30 19:05:48.570 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, logisticsNumberCellIdentifier
2017-08-30 19:05:48.571 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, logisticsNameCellIdentifier
2017-08-30 19:05:48.571 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, uzysVCControl
2017-08-30 19:05:48.571 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, qnUploader
2017-08-30 19:05:48.571 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, qiniuReturnVideoUrl
2017-08-30 19:05:48.571 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, qiniuReturnVideoHeaderImageUrl
2017-08-30 19:05:48.571 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, qiniuReturnPictureUrl
2017-08-30 19:05:48.571 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, uploadVideoStatus
2017-08-30 19:05:48.571 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, uploadPictureStatus
2017-08-30 19:05:48.571 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, isUploadVideoOrPicture
2017-08-30 19:05:48.571 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, headerImageView
2017-08-30 19:05:48.571 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, nameLabel
2017-08-30 19:05:48.571 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, timeLabel
2017-08-30 19:05:48.571 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, contentLabel
2017-08-30 19:05:48.571 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, moreBtn
2017-08-30 19:05:48.571 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, topImageView
2017-08-30 19:05:48.571 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, subCommentsView
2017-08-30 19:05:48.571 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, subCommentHeight
2017-08-30 19:05:48.572 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, showSubView
2017-08-30 19:05:48.572 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, firstMaxSubCommentCount
2017-08-30 19:05:48.572 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, contentFontSize
2017-08-30 19:05:48.572 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, line
2017-08-30 19:05:48.572 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, reportType
2017-08-30 19:05:48.572 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, comment
2017-08-30 19:05:48.572 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, lineView.storage
2017-08-30 19:05:48.572 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, zanBtn.storage
2017-08-30 19:05:48.572 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, productID
2017-08-30 19:05:48.572 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, isSpikeProduct
2017-08-30 19:05:48.572 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, product
2017-08-30 19:05:48.572 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, sectionHeaderViewHeight
2017-08-30 19:05:48.572 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, currentSKU
2017-08-30 19:05:48.572 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, reportType
2017-08-30 19:05:48.572 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, animator
2017-08-30 19:05:48.572 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, productOrNormalToolView
2017-08-30 19:05:48.572 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, forwardUserID
2017-08-30 19:05:48.573 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, segmentIndex
2017-08-30 19:05:48.573 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, dataArray
2017-08-30 19:05:48.573 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, selectedCommentModel
2017-08-30 19:05:48.573 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, carchHeight
2017-08-30 19:05:48.573 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, cacheVideo
2017-08-30 19:05:48.573 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, netWork
2017-08-30 19:05:48.573 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, tableView.storage
2017-08-30 19:05:48.573 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, detailView.storage
2017-08-30 19:05:48.573 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, selectSkuVC.storage
2017-08-30 19:05:48.573 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, bottomBar.storage
2017-08-30 19:05:48.573 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, segmentView.storage
2017-08-30 19:05:48.573 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, cacheProducts.storage
2017-08-30 19:05:48.573 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, delegate
2017-08-30 19:05:48.573 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, items
2017-08-30 19:05:48.573 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, emojiModel
2017-08-30 19:05:48.574 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, backGroundView
2017-08-30 19:05:48.574 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, titleLabel
2017-08-30 19:05:48.574 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, detailLabel
2017-08-30 19:05:48.574 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, textField
2017-08-30 19:05:48.574 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, tailImgView
2017-08-30 19:05:48.574 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, lineLabel1
2017-08-30 19:05:48.574 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, IDTitleLabel
2017-08-30 19:05:48.574 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, IDDetailLabel
2017-08-30 19:05:48.574 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, IDTextField
2017-08-30 19:05:48.574 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, IDTailImgView
2017-08-30 19:05:48.574 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, lineLabel2
2017-08-30 19:05:48.574 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, phoneTitleLabel
2017-08-30 19:05:48.574 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, phoneDetailLabel
2017-08-30 19:05:48.574 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, phoneTextField
2017-08-30 19:05:48.574 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, phoneTailImgView
2017-08-30 19:05:48.574 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, lineLabel3
2017-08-30 19:05:48.574 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, weChatTitleLabel
2017-08-30 19:05:48.574 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, weChatDetailLabel
2017-08-30 19:05:48.574 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, weChatTextField
2017-08-30 19:05:48.574 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, weChatTailImgView
2017-08-30 19:05:48.574 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, lineLabel4
2017-08-30 19:05:48.574 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, TAIL_IMG_WIDTH
2017-08-30 19:05:48.574 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, TAIL_IMG_HEIGHT
2017-08-30 19:05:48.574 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, TITLE_LABEL_WIDTH
2017-08-30 19:05:48.575 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, titleLabel
2017-08-30 19:05:48.575 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, contentLabel
2017-08-30 19:05:48.575 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, data
2017-08-30 19:05:48.575 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, delegate
2017-08-30 19:05:48.575 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, productHeadImage
2017-08-30 19:05:48.575 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, productName
2017-08-30 19:05:48.575 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, minPriceLable
2017-08-30 19:05:48.575 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, blackCoverImgView
2017-08-30 19:05:48.575 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, LABEL_HEIGHT
2017-08-30 19:05:48.575 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, whiteCoverView
2017-08-30 19:05:48.575 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, favButton
2017-08-30 19:05:48.575 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, product
2017-08-30 19:05:48.575 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, typeImage.storage
2017-08-30 19:05:48.575 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, attentionList.storage
2017-08-30 19:05:48.576 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, normalVideo.storage
2017-08-30 19:05:48.576 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, linkProductArray.storage
2017-08-30 19:05:48.576 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, hotCommentArray.storage
2017-08-30 19:05:48.576 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, freshCommentArray.storage
2017-08-30 19:05:48.576 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, totalArray.storage
2017-08-30 19:05:48.576 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, countdownCellIdentifier
2017-08-30 19:05:48.576 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, receiverCellIdentifier
2017-08-30 19:05:48.576 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, remarkCellIdentifier
2017-08-30 19:05:48.576 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, productHeaderCellIdentifier
2017-08-30 19:05:48.576 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, productBodyCellIdentifier
2017-08-30 19:05:48.576 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, productFooterCellIdentifier
2017-08-30 19:05:48.576 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, voucherCellIdentifier
2017-08-30 19:05:48.576 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, orderInfoCellIdentifier
2017-08-30 19:05:48.576 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, orderID
2017-08-30 19:05:48.576 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, order
2017-08-30 19:05:48.577 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, returnPackageReasionType
2017-08-30 19:05:48.577 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, payMethodLabel
2017-08-30 19:05:48.577 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, showArray
2017-08-30 19:05:48.577 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, bottomBar
2017-08-30 19:05:48.577 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, tableView
2017-08-30 19:05:48.577 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, tableFooterView
2017-08-30 19:05:48.577 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, countdownDelegate
2017-08-30 19:05:48.577 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, textView
2017-08-30 19:05:48.577 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, remarkString
2017-08-30 19:05:48.577 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, idCardFrontBtn
2017-08-30 19:05:48.577 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, idCardBackBtn
2017-08-30 19:05:48.577 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, presentInforImageView.storage
2017-08-30 19:05:48.577 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, headImageView.storage
2017-08-30 19:05:48.578 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, coverView.storage
2017-08-30 19:05:48.578 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, statuButton.storage
2017-08-30 19:05:48.578 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, countDownTimeLabel.storage
2017-08-30 19:05:48.578 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, titleNameLabel.storage
2017-08-30 19:05:48.578 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, oldPriceLabel.storage
2017-08-30 19:05:48.578 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, oldPriceLabelLineView.storage
2017-08-30 19:05:48.578 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, nowPriceLabel.storage
2017-08-30 19:05:48.578 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, actionTimeLabel.storage
2017-08-30 19:05:48.578 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, oneLineLabel.storage
2017-08-30 19:05:48.578 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, residueProductLabel.storage
2017-08-30 19:05:48.578 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, joinPopulationLabel.storage
2017-08-30 19:05:48.578 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, quickBuyLabel.storage
2017-08-30 19:05:48.578 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, spikeModelFrame
2017-08-30 19:05:48.578 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, scale
2017-08-30 19:05:48.578 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, textView
2017-08-30 19:05:48.578 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, remarkString
2017-08-30 19:05:48.579 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, titleString
2017-08-30 19:05:48.579 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, commentString
2017-08-30 19:05:48.579 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, titleLabel.storage
2017-08-30 19:05:48.579 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, delegate
2017-08-30 19:05:48.579 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, normal
2017-08-30 19:05:48.579 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, commentInputView
2017-08-30 19:05:48.579 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, commentType
2017-08-30 19:05:48.580 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, videoID
2017-08-30 19:05:48.580 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, titleStr
2017-08-30 19:05:48.580 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, multiPage
2017-08-30 19:05:48.580 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, tableView
2017-08-30 19:05:48.580 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, selectedComment
2017-08-30 19:05:48.580 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, reportType
2017-08-30 19:05:48.580 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, cellIdentifier
2017-08-30 19:05:48.580 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, isFirstEnter
2017-08-30 19:05:48.580 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, product_userID
2017-08-30 19:05:48.580 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, productImageView.storage
2017-08-30 19:05:48.580 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, normalImageView.storage
2017-08-30 19:05:48.580 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, favVM.storage
2017-08-30 19:05:48.580 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, showImageView.storage
2017-08-30 19:05:48.580 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, playTimeLabel.storage
2017-08-30 19:05:48.580 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, spritLabel.storage
2017-08-30 19:05:48.580 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, playCountLabel.storage
2017-08-30 19:05:48.580 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, titleLabel.storage
2017-08-30 19:05:48.580 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, priceLabelBackGround.storage
2017-08-30 19:05:48.580 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, priceLabel.storage
2017-08-30 19:05:48.580 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, forwardBackGround.storage
2017-08-30 19:05:48.580 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, forwardLabel.storage
2017-08-30 19:05:48.580 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, coverBackGround.storage
2017-08-30 19:05:48.580 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, favModel
2017-08-30 19:05:48.581 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, commentView
2017-08-30 19:05:48.581 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, comment
2017-08-30 19:05:48.581 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, headImage.storage
2017-08-30 19:05:48.581 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, titleNameLabel.storage
2017-08-30 19:05:48.581 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, topicDescriptionLabel.storage
2017-08-30 19:05:48.581 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, zuHeLabel.storage
2017-08-30 19:05:48.581 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, coverView.storage
2017-08-30 19:05:48.581 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, topicModelFrame
2017-08-30 19:05:48.581 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, timer
2017-08-30 19:05:48.581 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, returnDetailType
2017-08-30 19:05:48.581 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, frontString
2017-08-30 19:05:48.581 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, behindString
2017-08-30 19:05:48.581 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, data
2017-08-30 19:05:48.581 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, contentLabel
2017-08-30 19:05:48.581 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, connectServiceBtn
2017-08-30 19:05:48.581 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, timeInterval
2017-08-30 19:05:48.581 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, time
2017-08-30 19:05:48.582 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, videoID
2017-08-30 19:05:48.582 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, topConstraint
2017-08-30 19:05:48.582 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, comment
2017-08-30 19:05:48.582 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, iconButton.storage
2017-08-30 19:05:48.582 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, titleLabel.storage
2017-08-30 19:05:48.582 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, locationLabel.storage
2017-08-30 19:05:48.582 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, contentTextView.storage
2017-08-30 19:05:48.582 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, specLabel.storage
2017-08-30 19:05:48.582 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, priceLabel.storage
2017-08-30 19:05:48.582 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, collectionView.storage
2017-08-30 19:05:48.582 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, bottomLineView.storage
2017-08-30 19:05:48.582 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, currentPage_Video
2017-08-30 19:05:48.582 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, currentPage_Topic
2017-08-30 19:05:48.582 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, currentType
2017-08-30 19:05:48.582 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, isNetWorkCallBackDatas
2017-08-30 19:05:48.582 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, favVM.storage
2017-08-30 19:05:48.582 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, navigationImageView.storage
2017-08-30 19:05:48.582 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, placeHoldImage.storage
2017-08-30 19:05:48.582 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, segmentView.storage
2017-08-30 19:05:48.582 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, tableView.storage
2017-08-30 19:05:48.583 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, data
2017-08-30 19:05:48.583 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, forwardUserView
2017-08-30 19:05:48.583 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, isNormal
2017-08-30 19:05:48.583 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, margin
2017-08-30 19:05:48.583 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, videoID
2017-08-30 19:05:48.583 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, content
2017-08-30 19:05:48.583 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, topicVc
2017-08-30 19:05:48.583 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, presentView.storage
2017-08-30 19:05:48.583 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, titleLabel.storage
2017-08-30 19:05:48.583 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, topicView.storage
2017-08-30 19:05:48.583 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, myTextView.storage
2017-08-30 19:05:48.583 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, oldPriceLabel.storage
2017-08-30 19:05:48.583 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, spikePriceLabel.storage
2017-08-30 19:05:48.583 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, deleteLineView.storage
2017-08-30 19:05:48.583 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, forwardLabel.storage
2017-08-30 19:05:48.583 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, pinkageLabel.storage
2017-08-30 19:05:48.583 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, forwardBackGround.storage
2017-08-30 19:05:48.583 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, forwardAwardLabel.storage
2017-08-30 19:05:48.583 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, playCountLabel.storage
2017-08-30 19:05:48.583 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, toolView.storage
2017-08-30 19:05:48.583 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, forwardUserVC.storage
2017-08-30 19:05:48.584 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, delegate
2017-08-30 19:05:48.584 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, backgroundView
2017-08-30 19:05:48.584 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, pickView
2017-08-30 19:05:48.584 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, myPicker
2017-08-30 19:05:48.584 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, accountTypeArray
2017-08-30 19:05:48.584 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, arrayIndex
2017-08-30 19:05:48.584 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, titleLabel
2017-08-30 19:05:48.584 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, btnsView
2017-08-30 19:05:48.585 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, submitBtn
2017-08-30 19:05:48.585 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, mainView
2017-08-30 19:05:48.585 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, messageLabel
2017-08-30 19:05:48.585 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, contentInputView
2017-08-30 19:05:48.585 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, title
2017-08-30 19:05:48.585 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, alertType
2017-08-30 19:05:48.585 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, delegate
2017-08-30 19:05:48.585 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, setImageNum
2017-08-30 19:05:48.585 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, arrayOfValuesSec2
2017-08-30 19:05:48.585 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, arrayOfImg
2017-08-30 19:05:48.585 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, uploadImgCount
2017-08-30 19:05:48.585 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, authUploadImgCellView
2017-08-30 19:05:48.585 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, imagePathArray
2017-08-30 19:05:48.585 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, currentPage
2017-08-30 19:05:48.585 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, spikeVM.storage
2017-08-30 19:05:48.585 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, collectionView.storage
2017-08-30 19:05:48.585 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, imageWH
2017-08-30 19:05:48.585 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, margin
2017-08-30 19:05:48.586 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, authenticationModel
2017-08-30 19:05:48.586 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, iconImageView.storage
2017-08-30 19:05:48.586 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, title.storage
2017-08-30 19:05:48.586 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, subtitle.storage
2017-08-30 19:05:48.586 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, originPriceLabel.storage
2017-08-30 19:05:48.586 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, spikePriceLabel.storage
2017-08-30 19:05:48.586 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, lineView.storage
2017-08-30 19:05:48.586 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, normalVideoID
2017-08-30 19:05:48.586 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, normal
2017-08-30 19:05:48.586 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, firstRequest
2017-08-30 19:05:48.586 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, datasArray
2017-08-30 19:05:48.586 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, selectedComment
2017-08-30 19:05:48.586 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, reportType
2017-08-30 19:05:48.586 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, cacheVideo
2017-08-30 19:05:48.586 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, cacheDatas
2017-08-30 19:05:48.587 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, newWork
2017-08-30 19:05:48.587 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, totalCount
2017-08-30 19:05:48.587 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, hotCommentCount
2017-08-30 19:05:48.587 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, tableView.storage
2017-08-30 19:05:48.587 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, backgroundTableHeadView.storage
2017-08-30 19:05:48.587 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, bottomCommentView.storage
2017-08-30 19:05:48.587 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, commentBtn.storage
2017-08-30 19:05:48.587 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, LineView.storage
2017-08-30 19:05:48.587 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, detailView.storage
2017-08-30 19:05:48.587 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, normalSegmentView.storage
2017-08-30 19:05:48.587 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, totleHeight
2017-08-30 19:05:48.587 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, delegate
2017-08-30 19:05:48.587 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, productImagesCellIndetifier
2017-08-30 19:05:48.587 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, datas
2017-08-30 19:05:48.587 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, product
2017-08-30 19:05:48.587 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, tableView.storage
2017-08-30 19:05:48.587 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, imagesDatas.storage
2017-08-30 19:05:48.588 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, titleIdentifier
2017-08-30 19:05:48.588 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, infoIdentifier
2017-08-30 19:05:48.588 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, checkDetailIdentifier
2017-08-30 19:05:48.588 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, reasonIdentifier
2017-08-30 19:05:48.588 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, returnDetailType
2017-08-30 19:05:48.588 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, order
2017-08-30 19:05:48.588 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, data
2017-08-30 19:05:48.588 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, tableView
2017-08-30 19:05:48.588 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, tableFooterView
2017-08-30 19:05:48.588 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, bottomBar
2017-08-30 19:05:48.588 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, countdownDelegate
2017-08-30 19:05:48.588 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, needUpdateUI
2017-08-30 19:05:48.588 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, textFile
2017-08-30 19:05:48.588 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, collectionView.storage
2017-08-30 19:05:48.588 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, attentionVM.storage
2017-08-30 19:05:48.588 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, currentPage
2017-08-30 19:05:48.588 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, delegate
2017-08-30 19:05:48.589 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, removeShopIcon
2017-08-30 19:05:48.589 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, normalBackBtn
2017-08-30 19:05:48.589 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, normalShopBtn
2017-08-30 19:05:48.589 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, darkBackgroundView
2017-08-30 19:05:48.589 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, imageString
2017-08-30 19:05:48.589 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, showIamgeView.storage
2017-08-30 19:05:48.589 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, delegate
2017-08-30 19:05:48.589 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, normalVideoHeadImage
2017-08-30 19:05:48.589 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, normalVideoTitle
2017-08-30 19:05:48.589 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, publishDate
2017-08-30 19:05:48.589 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, blackCoverImgView
2017-08-30 19:05:48.589 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, LABEL_HEIGHT
2017-08-30 19:05:48.589 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, whiteCoverView
2017-08-30 19:05:48.589 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, favButton
2017-08-30 19:05:48.589 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, normalVideo
2017-08-30 19:05:48.589 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, playCountImage.storage
2017-08-30 19:05:48.589 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, playCountLabel.storage
2017-08-30 19:05:48.589 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, typeImage.storage
2017-08-30 19:05:48.590 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, indexp
2017-08-30 19:05:48.590 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, hebdomad
2017-08-30 19:05:48.590 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, isSpike
2017-08-30 19:05:48.590 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, isForward
2017-08-30 19:05:48.590 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, data
2017-08-30 19:05:48.590 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, authenticationImageView.storage
2017-08-30 19:05:48.590 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, spickImageView.storage
2017-08-30 19:05:48.590 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, forwardImageView.storage
2017-08-30 19:05:48.590 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, agreementImageView.storage
2017-08-30 19:05:48.590 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, shopCouponImageView.storage
2017-08-30 19:05:48.590 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, subControlArray.storage
2017-08-30 19:05:48.590 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, authenticationView.storage
2017-08-30 19:05:48.590 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, multiPage.storage
2017-08-30 19:05:48.590 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, collectionVeiw.storage
2017-08-30 19:05:48.590 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, uploadImgCount
2017-08-30 19:05:48.590 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, imagePathArray
2017-08-30 19:05:48.591 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, data
2017-08-30 19:05:48.591 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, videoPlayerHolderView
2017-08-30 19:05:48.591 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, basicView
2017-08-30 19:05:48.591 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, spikeBasicView
2017-08-30 19:05:48.591 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, userInfoView
2017-08-30 19:05:48.591 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, userHeaderBtn
2017-08-30 19:05:48.591 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, authenticationView
2017-08-30 19:05:48.591 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, userNameView
2017-08-30 19:05:48.591 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, userFansOrFavView
2017-08-30 19:05:48.591 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, fansBtn
2017-08-30 19:05:48.591 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, attentionBtn
2017-08-30 19:05:48.591 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, attestationImg
2017-08-30 19:05:48.591 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, grender
2017-08-30 19:05:48.591 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, favBtn
2017-08-30 19:05:48.591 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, line
2017-08-30 19:05:48.592 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, videoID
2017-08-30 19:05:48.592 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, player
2017-08-30 19:05:48.592 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, isSpikeProduct
2017-08-30 19:05:48.592 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, spikeModelFrame
2017-08-30 19:05:48.592 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, productAuthenticationView.storage
2017-08-30 19:05:48.592 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, topLineView.storage
2017-08-30 19:05:48.592 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, bottomLineView.storage
2017-08-30 19:05:48.592 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, videoImage
2017-08-30 19:05:48.592 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, videoCount
2017-08-30 19:05:48.592 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, photoVC
2017-08-30 19:05:48.592 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, videoID
2017-08-30 19:05:48.592 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, collectionView.storage
2017-08-30 19:05:48.592 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, comment
2017-08-30 19:05:48.593 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, countdownCellIdentifier
2017-08-30 19:05:48.593 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, receiverCellIdentifier
2017-08-30 19:05:48.593 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, remarkCellIdentifier
2017-08-30 19:05:48.593 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, payMethodCellIdentifier
2017-08-30 19:05:48.593 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, productHeaderCellIdentifier
2017-08-30 19:05:48.593 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, productBodyCellIdentifier
2017-08-30 19:05:48.593 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, productFooterCellIdentifier
2017-08-30 19:05:48.593 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, orderInfoCellIdentifier
2017-08-30 19:05:48.593 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, kMode_Formal
2017-08-30 19:05:48.593 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, margin
2017-08-30 19:05:48.593 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, orderID
2017-08-30 19:05:48.593 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, order
2017-08-30 19:05:48.593 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, payMethodStatus
2017-08-30 19:05:48.593 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, returnPackageReasionType
2017-08-30 19:05:48.593 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, payMethodLabel
2017-08-30 19:05:48.593 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, bottomBar
2017-08-30 19:05:48.593 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, tableView
2017-08-30 19:05:48.593 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, tableFooterView
2017-08-30 19:05:48.593 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, countdownDelegate
2017-08-30 19:05:48.593 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, commentString
2017-08-30 19:05:48.593 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, isVisable
2017-08-30 19:05:48.593 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, showArray.storage
2017-08-30 19:05:48.593 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, videoArray
2017-08-30 19:05:48.593 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, cacheVideoNameArray.storage
2017-08-30 19:05:48.594 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, textFile
2017-08-30 19:05:48.594 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, lineView
2017-08-30 19:05:48.594 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, authenticationModel
2017-08-30 19:05:48.594 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, iconImageView.storage
2017-08-30 19:05:48.594 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, titleLabel
2017-08-30 19:05:48.594 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, tailImgView
2017-08-30 19:05:48.594 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, TAIL_IMG_WIDTH
2017-08-30 19:05:48.594 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, TAIL_IMG_HEIGHT
2017-08-30 19:05:48.594 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, TITLE_LABEL_WIDTH
2017-08-30 19:05:48.595 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, delegate
2017-08-30 19:05:48.595 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, backgroundView
2017-08-30 19:05:48.595 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, pickView
2017-08-30 19:05:48.595 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, myPicker
2017-08-30 19:05:48.595 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, bankListArray
2017-08-30 19:05:48.595 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, arrayIndex
2017-08-30 19:05:48.596 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, parentView
2017-08-30 19:05:48.596 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, detailsUrl
2017-08-30 19:05:48.596 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, reportType
2017-08-30 19:05:48.596 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, detailView
2017-08-30 19:05:48.596 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, product
2017-08-30 19:05:48.596 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, isSharing
2017-08-30 19:05:48.596 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, needUpdateUI
2017-08-30 19:05:48.596 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, tempImageView
2017-08-30 19:05:48.596 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, data
2017-08-30 19:05:48.596 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, downloadBtn.storage
2017-08-30 19:05:48.596 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, favoritesBtn.storage
2017-08-30 19:05:48.596 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, shareBtn.storage
2017-08-30 19:05:48.596 restore-symbol[14823:470457] Warning: Parsing instance variable type failed, moreBtn.storage
Scan OC method finish.
=========== Finish ============
TARGET_APP_PATH: /Users/xinghao/Library/Developer/Xcode/DerivedData/IPAPatch-ecgwmuorwznvtacsvutrnwurigxq/Build/Products/Debug-iphoneos/IPAPatch-DummyApp.app
Install Load: IPAPatchFramework -> @executable_path/Dylibs/IPAPatchFramework
Found FAT Header
Found thin header...
Inserting a LC_LOAD_DYLIB command for architecture: arm
Successfully inserted a LC_LOAD_DYLIB command for arm
Writing executable to /Users/xinghao/Library/Developer/Xcode/DerivedData/IPAPatch-ecgwmuorwznvtacsvutrnwurigxq/Build/Products/Debug-iphoneos/IPAPatch-DummyApp.app/秀兜...
Injecting Frameworks from /Users/xinghao/Desktop/IPAPatch/Assets/Frameworks
RevealServer.framework 's extension is framework
building file list ... done
RevealServer.framework/
RevealServer.framework/Info.plist
RevealServer.framework/RevealServer
RevealServer.framework/Headers/
RevealServer.framework/Headers/RevealServer.h
RevealServer.framework/Modules/
RevealServer.framework/Modules/module.modulemap
RevealServer.framework/Scripts/
RevealServer.framework/Scripts/copy_and_codesign_revealserver.sh
RevealServer.framework/_CodeSignature/
RevealServer.framework/_CodeSignature/CodeResources

sent 9326243 bytes received 182 bytes 18652850.00 bytes/sec
total size is 9324411 speedup is 1.00
Install Load: RevealServer.framework -> @executable_path/Frameworks/RevealServer.framework/RevealServer
Found FAT Header
Found thin header...
Inserting a LC_LOAD_DYLIB command for architecture: arm
Successfully inserted a LC_LOAD_DYLIB command for arm
Writing executable to /Users/xinghao/Library/Developer/Xcode/DerivedData/IPAPatch-ecgwmuorwznvtacsvutrnwurigxq/Build/Products/Debug-iphoneos/IPAPatch-DummyApp.app/秀兜...
Injecting Dylibs from /Users/xinghao/Desktop/IPAPatch/Assets/Dylibs
Injecting Resources from /Users/xinghao/Desktop/IPAPatch/Assets/Resources
building file list ... done
./

sent 80 bytes received 26 bytes 212.00 bytes/sec
total size is 0 speedup is 0.00
Removing AppExtensions
Updating BundleID:com.xiudou.xiudouiOSxx, DisplayName:
Code Signing Dylibs
Code Signing Frameworks
/Users/xinghao/Library/Developer/Xcode/DerivedData/IPAPatch-ecgwmuorwznvtacsvutrnwurigxq/Build/Products/Debug-iphoneos/IPAPatch-DummyApp.app/Frameworks/RevealServer.framework: replacing existing signature
/Users/xinghao/Library/Developer/Xcode/DerivedData/IPAPatch-ecgwmuorwznvtacsvutrnwurigxq/Build/Products/Debug-iphoneos/IPAPatch-DummyApp.app/Frameworks/SnapKit.framework: replacing existing signature
/Users/xinghao/Library/Developer/Xcode/DerivedData/IPAPatch-ecgwmuorwznvtacsvutrnwurigxq/Build/Products/Debug-iphoneos/IPAPatch-DummyApp.app/Frameworks/SnapKit.framework: object file format unrecognized, invalid, or unsuitable
/Users/xinghao/Library/Developer/Xcode/DerivedData/IPAPatch-ecgwmuorwznvtacsvutrnwurigxq/Build/Products/Debug-iphoneos/IPAPatch-DummyApp.app/Frameworks/libswiftAVFoundation.dylib: replacing existing signature
/Users/xinghao/Library/Developer/Xcode/DerivedData/IPAPatch-ecgwmuorwznvtacsvutrnwurigxq/Build/Products/Debug-iphoneos/IPAPatch-DummyApp.app/Frameworks/libswiftAssetsLibrary.dylib: replacing existing signature
/Users/xinghao/Library/Developer/Xcode/DerivedData/IPAPatch-ecgwmuorwznvtacsvutrnwurigxq/Build/Products/Debug-iphoneos/IPAPatch-DummyApp.app/Frameworks/libswiftCore.dylib: replacing existing signature
/Users/xinghao/Library/Developer/Xcode/DerivedData/IPAPatch-ecgwmuorwznvtacsvutrnwurigxq/Build/Products/Debug-iphoneos/IPAPatch-DummyApp.app/Frameworks/libswiftCoreAudio.dylib: replacing existing signature
/Users/xinghao/Library/Developer/Xcode/DerivedData/IPAPatch-ecgwmuorwznvtacsvutrnwurigxq/Build/Products/Debug-iphoneos/IPAPatch-DummyApp.app/Frameworks/libswiftCoreGraphics.dylib: replacing existing signature
/Users/xinghao/Library/Developer/Xcode/DerivedData/IPAPatch-ecgwmuorwznvtacsvutrnwurigxq/Build/Products/Debug-iphoneos/IPAPatch-DummyApp.app/Frameworks/libswiftCoreImage.dylib: replacing existing signature
/Users/xinghao/Library/Developer/Xcode/DerivedData/IPAPatch-ecgwmuorwznvtacsvutrnwurigxq/Build/Products/Debug-iphoneos/IPAPatch-DummyApp.app/Frameworks/libswiftCoreLocation.dylib: replacing existing signature
/Users/xinghao/Library/Developer/Xcode/DerivedData/IPAPatch-ecgwmuorwznvtacsvutrnwurigxq/Build/Products/Debug-iphoneos/IPAPatch-DummyApp.app/Frameworks/libswiftCoreMedia.dylib: replacing existing signature
/Users/xinghao/Library/Developer/Xcode/DerivedData/IPAPatch-ecgwmuorwznvtacsvutrnwurigxq/Build/Products/Debug-iphoneos/IPAPatch-DummyApp.app/Frameworks/libswiftDarwin.dylib: replacing existing signature
/Users/xinghao/Library/Developer/Xcode/DerivedData/IPAPatch-ecgwmuorwznvtacsvutrnwurigxq/Build/Products/Debug-iphoneos/IPAPatch-DummyApp.app/Frameworks/libswiftDispatch.dylib: replacing existing signature
/Users/xinghao/Library/Developer/Xcode/DerivedData/IPAPatch-ecgwmuorwznvtacsvutrnwurigxq/Build/Products/Debug-iphoneos/IPAPatch-DummyApp.app/Frameworks/libswiftFoundation.dylib: replacing existing signature
/Users/xinghao/Library/Developer/Xcode/DerivedData/IPAPatch-ecgwmuorwznvtacsvutrnwurigxq/Build/Products/Debug-iphoneos/IPAPatch-DummyApp.app/Frameworks/libswiftMapKit.dylib: replacing existing signature
/Users/xinghao/Library/Developer/Xcode/DerivedData/IPAPatch-ecgwmuorwznvtacsvutrnwurigxq/Build/Products/Debug-iphoneos/IPAPatch-DummyApp.app/Frameworks/libswiftObjectiveC.dylib: replacing existing signature
/Users/xinghao/Library/Developer/Xcode/DerivedData/IPAPatch-ecgwmuorwznvtacsvutrnwurigxq/Build/Products/Debug-iphoneos/IPAPatch-DummyApp.app/Frameworks/libswiftQuartzCore.dylib: replacing existing signature
/Users/xinghao/Library/Developer/Xcode/DerivedData/IPAPatch-ecgwmuorwznvtacsvutrnwurigxq/Build/Products/Debug-iphoneos/IPAPatch-DummyApp.app/Frameworks/libswiftUIKit.dylib: replacing existing signature
Code Signing App Binary
/Users/xinghao/Library/Developer/Xcode/DerivedData/IPAPatch-ecgwmuorwznvtacsvutrnwurigxq/Build/Products/Debug-iphoneos/IPAPatch-DummyApp.app/秀兜: replacing existing signature
Done

ProcessProductPackaging /Users/xinghao/Library/MobileDevice/Provisioning\ Profiles/6c1abf62-be95-4d53-8ea1-4de4ba993639.mobileprovision /Users/xinghao/Library/Developer/Xcode/DerivedData/IPAPatch-ecgwmuorwznvtacsvutrnwurigxq/Build/Products/Debug-iphoneos/IPAPatch-DummyApp.app/embedded.mobileprovision
cd /Users/xinghao/Desktop/IPAPatch
export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin"
builtin-productPackagingUtility /Users/xinghao/Library/MobileDevice/Provisioning\ Profiles/6c1abf62-be95-4d53-8ea1-4de4ba993639.mobileprovision -o /Users/xinghao/Library/Developer/Xcode/DerivedData/IPAPatch-ecgwmuorwznvtacsvutrnwurigxq/Build/Products/Debug-iphoneos/IPAPatch-DummyApp.app/embedded.mobileprovision

Touch /Users/xinghao/Library/Developer/Xcode/DerivedData/IPAPatch-ecgwmuorwznvtacsvutrnwurigxq/Build/Products/Debug-iphoneos/IPAPatch-DummyApp.app
cd /Users/xinghao/Desktop/IPAPatch
export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin"
/usr/bin/touch -c /Users/xinghao/Library/Developer/Xcode/DerivedData/IPAPatch-ecgwmuorwznvtacsvutrnwurigxq/Build/Products/Debug-iphoneos/IPAPatch-DummyApp.app

CodeSign /Users/xinghao/Library/Developer/Xcode/DerivedData/IPAPatch-ecgwmuorwznvtacsvutrnwurigxq/Build/Products/Debug-iphoneos/IPAPatch-DummyApp.app
cd /Users/xinghao/Desktop/IPAPatch
export CODESIGN_ALLOCATE=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/codesign_allocate
export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin"

Signing Identity: "iPhone Developer: Ruijie Liu (G4WNNQZFP4)"
Provisioning Profile: "iOS Team Provisioning Profile: *"
(6c1abf62-be95-4d53-8ea1-4de4ba993639)

/usr/bin/codesign --force --sign 28376EE1119397FB4E7C52AB11C433B01B8CF8C9 --entitlements /Users/xinghao/Library/Developer/Xcode/DerivedData/IPAPatch-ecgwmuorwznvtacsvutrnwurigxq/Build/Intermediates/IPAPatch.build/Debug-iphoneos/IPAPatch-DummyApp.build/IPAPatch-DummyApp.app.xcent --timestamp=none /Users/xinghao/Library/Developer/Xcode/DerivedData/IPAPatch-ecgwmuorwznvtacsvutrnwurigxq/Build/Products/Debug-iphoneos/IPAPatch-DummyApp.app

/Users/xinghao/Library/Developer/Xcode/DerivedData/IPAPatch-ecgwmuorwznvtacsvutrnwurigxq/Build/Products/Debug-iphoneos/IPAPatch-DummyApp.app: replacing existing signature

Validate /Users/xinghao/Library/Developer/Xcode/DerivedData/IPAPatch-ecgwmuorwznvtacsvutrnwurigxq/Build/Products/Debug-iphoneos/IPAPatch-DummyApp.app
cd /Users/xinghao/Desktop/IPAPatch
export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin"
export PRODUCT_TYPE=com.apple.product-type.application
builtin-validationUtility /Users/xinghao/Library/Developer/Xcode/DerivedData/IPAPatch-ecgwmuorwznvtacsvutrnwurigxq/Build/Products/Debug-iphoneos/IPAPatch-DummyApp.app

The file "IPAPatch-DummyApp" couldn't be opened because you don't hav permission to view it

DUMMY_DISPLAY_NAME: patchipa
TARGET_BUNDLE_ID: com.banxi1988.patchipa.example
[/Users/banxi/Downloads/IPAPatch-master/Assets/app.ipa]
  End-of-central-directory signature not found.  Either this file is not
  a zipfile, or it constitutes one disk of a multi-part archive.  In the
  latter case the central directory and zipfile comment will be found on
  the last disk(s) of this archive.
note:  /Users/banxi/Downloads/IPAPatch-master/Assets/app.ipa may be a plain executable, not an archive
unzip:  cannot find zipfile directory in one of /Users/banxi/Downloads/IPAPatch-master/Assets/app.ipa or
        /Users/banxi/Downloads/IPAPatch-master/Assets/app.ipa.zip, and cannot find /Users/banxi/Downloads/IPAPatch-master/Assets/app.ipa.ZIP, period.
TEMP_APP_PATH: /Users/banxi/Downloads/IPAPatch-master/Temp/Payload/*.app
TARGET_APP_PATH: /Users/banxi/Library/Developer/Xcode/DerivedData/IPAPatch-dbsrhhdnnabmuwagytercnrouncz/Build/Products/Debug-iphoneos/IPAPatch-DummyApp.app
cp: /Users/banxi/Downloads/IPAPatch-master/Temp/Payload/*.app/: No such file or directory
     Install Load: IPAPatch -> @executable_path/Dylibs/IPAPatch
Injecting Frameworks from /Users/banxi/Downloads/IPAPatch-master/Assets/Frameworks
Print: Entry, "CFBundleDisplayName", Does Not Exist
Set: Entry, ":CFBundleIdentifier", Does Not Exist
File Doesn't Exist, Will Create: /Users/banxi/Library/Developer/Xcode/DerivedData/IPAPatch-dbsrhhdnnabmuwagytercnrouncz/Build/Products/Debug-iphoneos/IPAPatch-DummyApp.app/Info.plist
Parse Error: Unclosed Quotes
Value Required for Set Command
Command /bin/sh emitted errors but did not return a nonzero exit code to indicate failure

after app installed, xcode stop running the app.

安装app后可以直接在手机打开app, 弹出默认添加的alert, reveal的framework也可以这场使用.
但是xcode里的应用已经退出了, 不像demo中的youtube, 还可以运行.
after app installed, xcode stop running the app, but i can run the app in my phone with method in IPAPatchEntry available.

xcode: 8.2.1
osx: 10.12.3
iOS: 10.2.1
app: https://pan.baidu.com/s/1jH8jJwU password: s43i

crash

dyld: Library not loaded: @executable_path/Dylibs/IPAPatch
Referenced from: /var/containers/Bundle/Application/DFA4D68A-13FB-4460-B5EE-3625ED932EFF/IPAPatch-DummyApp.app/Autohome
Reason: no suitable image found. Did find:
/var/containers/Bundle/Application/DFA4D68A-13FB-4460-B5EE-3625ED932EFF/IPAPatch-DummyApp.app/Dylibs/IPAPatch: mach-o, but wrong architecture
/private/var/containers/Bundle/Application/DFA4D68A-13FB-4460-B5EE-3625ED932EFF/IPAPatch-DummyApp.app/Dylibs/IPAPatch: mach-o, but wrong architecture

需要更新 restore-symbol

非常Cool 的工具!
Tools 里的 restore-symbol 需要更新下, 原restore-symbol 依赖的class-dump 不支持 swift,但现在越来越多的App都会包含一些swift代码。

process launch failed: Disabled

error: failed to launch '/private/var/containers/Bundle/Application/C43DE802-DB41-490A-948F-2142CA6CA826/IPAPatch-DummyApp.app' -- process launch failed: Disabled

The Youtube Demo is crashed

dyld: Library not loaded: @executable_path/Dylibs/IPAPatch
  Referenced from: /var/containers/Bundle/Application/E86E6BF1-6254-42ED-A54D-CA7088A76FC4/IPAPatch-DummyApp.app/YouTube
  Reason: no suitable image found.  Did find:
	/var/containers/Bundle/Application/E86E6BF1-6254-42ED-A54D-CA7088A76FC4/IPAPatch-DummyApp.app/Dylibs/IPAPatch: code signing blocked mmap() of '/var/containers/Bundle/Application/E86E6BF1-6254-42ED-A54D-CA7088A76FC4/IPAPatch-DummyApp.app/Dylibs/IPAPatch'
	/private/var/containers/Bundle/Application/E86E6BF1-6254-42ED-A54D-CA7088A76FC4/IPAPatch-DummyApp.app/Dylibs/IPAPatch: code signing blocked mmap() of '/private/var/containers/Bundle/Application/E86E6BF1-6254-42ED-A54D-CA7088A76FC4/IPAPatch-DummyApp.app/Dylibs/IPAPatch'

how can i fix it wrong archtecture

dyld: Library not loaded: @executable_path/Dylibs/IPAPatch
Referenced from: /var/containers/Bundle/Application/4F807B9E-55B9-4443-939A-EC229F154E87/IPAPatch-DummyApp.app/Busuu-ja
Reason: no suitable image found. Did find:
/var/containers/Bundle/Application/4F807B9E-55B9-4443-939A-EC229F154E87/IPAPatch-DummyApp.app/Dylibs/IPAPatch: mach-o, but wrong architecture
/private/var/containers/Bundle/Application/4F807B9E-55B9-4443-939A-EC229F154E87/IPAPatch-DummyApp.app/Dylibs/IPAPatch: mach-o, but wrong architecture

WatchKit app with an invalid bundle identifier

When I replace Wechat.ipa to app.ipa, and build, xcode says:

This app contains a WatchKit app with an invalid bundle identifier. The bundle identifier of a WatchKit app must have a prefix consisting of the companion app's bundle identifier, followed by a '.'.

Mac App Support

如果有了mac版的ipapatch, 像微信mac版插件之类的开发会舒服很多.

有一个比较好的建议

可否类似reveal加载动态库的方法 集成一个 Cycript
然后设置端口号 在真机运行之后可以 ./cycipt -r 192.168.1.101:8888
就可以在命令行用 cycipt 了

Find a reliable way to disable sysctl debugger detection

The current way to disable sysctl debugger detection technique located at IPAPatchBypassAntiDebugging.m: disable_sysctl_debugger_checking(), works only if initial (*arg2).kp_proc.p_flag doesn't contains P_TRACED, which is a temporary workaround for WeChat freezing issue (discussed at #15).

We need to find a reliable way for this, make disable_sysctl_debugger_checking works on all situations...

You don’t have permission.

The file “IPAPatch-DummyApp.app” couldn’t be opened because you don’t have permission to view it.
总是出现这个问题,按照网上的说法,修改plist 也不行

Show black screen when running in latest version

and touch the iPhone screen, below log is printed:
2017-09-01 18:46:36.642 11[9777:1868054] unexpected nil window in _UIApplicationHandleEventFromQueueEvent, _windowServerHitTestWindow: <UIClassicWindow: 0x126628440; frame = (0 0; 375 667); userInteractionEnabled = NO; gestureRecognizers = <NSArray: 0x126549db0>; layer = <UIWindowLayer: 0x126623be0>>

But if I download the youtube demo and run it, all is well! And replace youtube ipa file with my target ipa file, it also runs well!

Just don't know why.

The latest version also has a problem: One alert view with content of "Could not inspect the application package" is presented by Xcode after installing app to device successfully. My solution is changing product name to simple "11” in "IPAPatch-DummyApp" target.

Xcode version: Version 8.3.3
iPhone6, iOS 9.2

Using Swift

Hello,
I want to use Swift instead of Objective-C. I have tried enabling the objective-c interface header, but when using #import "IPAPatch_DummyApp-Swift.h the header is not found. I enabled DEFINES MODULE, but the error still occurred. Do you know how to make this work?
Thanks

click pause button in Xcode 8.3.1 while app running, the lldb hangs or the app can't continue

What a nice project!

I was trying the Youtube + cycript demo on iPhone 7, but when I was running the app, for example, the youtube home page, and when you click the pause button on xcode debugger:
image
The lldb will prompt, but when you type in any command, lldb just hangs, and when you click continue, the lldb and app both hangs, seems dead.

Another issue is,

If you add a breakpoint in for_example_showAlert() e.g. at UIViewController * controller = [UIApplication sharedApplication].keyWindow.rootViewController;, the lldb will give output for my command, but when you continue the app, youtube hangs then, can't get the app continue to run.

Can you verify my issues on my side, and what's the solution?

how to add admob in the patch

iam really tired of searching everywhere i tried many times to find solution to add admob in patched file but not working can you guide?

想请教下该项目下如何用aspect啊

我新建的UIViewController的分类都会报错啊[UIViewController aspect_hookSelector:withOptions:usingBlock:error:]: unrecognized selector sent to class 0x1affacf50

error: memory read failed for 0x0

When i try to run the facebook ipa (different versions). Everything works fine, except when i try to open a company (example restaurant) page in facebook. Then i get the error:

error: memory read failed for 0x0, Thread 1: EXC_BAD_ACCESS (code=1, address=0x0)

This is without any custom code injection. I also tried different phones and different IOs versions.

couldn’t be opened because you don’t have permission to view it. Even though i have placed my app decrypted with clutch and named it app.ipa

in the errors it says:

fatal error: lipo: input file (/Users/tomershemesh/Desktop/IPAPatch-master/Temp/Payload/hq-viewer.app/hq-viewer) must be a fat file when the -thin option is specified
fatal error: lipo: input file (/Users/tomershemesh/Desktop/IPAPatch-master/Temp/Payload/hq-viewer.app/hq-viewer) must be a fat file when the -thin option is specified
Error: Input file doesn't exist!
Error: Input file doesn't exist!
fatal error: lipo: can't open input file: /Users/tomershemesh/Desktop/IPAPatch-master/Temp/hq-viewer_armv7_with_symbol (No such file or directory)
cp: /Users/tomershemesh/Desktop/IPAPatch-master/Temp/hq-viewer_with_symbol: No such file or directory
TARGET_APP_PATH: /Users/tomershemesh/Library/Developer/Xcode/DerivedData/IPAPatch-cvroycbarnteuxerldacbblocvzi/Build/Products/Debug-iphoneos/IPAPatch-DummyApp.app
Install Load: IPAPatchFramework -> @executable_path/Dylibs/IPAPatchFramework
chmod: /Users/tomershemesh/Library/Developer/Xcode/DerivedData/IPAPatch-cvroycbarnteuxerldacbblocvzi/Build/Products/Debug-iphoneos/IPAPatch-DummyApp.app/hq-viewer: No such file or directory

I think the app is fine though because i can install it just fine with cydia impactor

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.