├── .gitignore ├── .travis.yml ├── EventTracing-iOS ├── Assets │ └── .gitkeep └── Classes │ ├── .gitkeep │ ├── AOP │ ├── EventObserver │ │ └── NEEventTracingClickMonitor.m │ ├── NEEventTracingAOPManager.h │ ├── NEEventTracingAOPManager.m │ ├── NEEventTracingAOPProtocol.h │ ├── NEEventTracingDelegateChain.h │ ├── NEEventTracingDelegateChain.m │ └── ui │ │ ├── NEEventTracingAppLicycleAOP.h │ │ ├── NEEventTracingAppLicycleAOP.m │ │ ├── NEEventTracingUIAlertControllerAOP.h │ │ ├── NEEventTracingUIAlertControllerAOP.m │ │ ├── NEEventTracingUIControlAOP.h │ │ ├── NEEventTracingUIControlAOP.m │ │ ├── NEEventTracingUIScrollViewAOP.h │ │ ├── NEEventTracingUIScrollViewAOP.m │ │ ├── NEEventTracingUITabbarAOP.h │ │ ├── NEEventTracingUITabbarAOP.m │ │ ├── NEEventTracingUIViewAOP.h │ │ ├── NEEventTracingUIViewAOP.m │ │ ├── NEEventTracingUIViewControllerAOP.h │ │ └── NEEventTracingUIViewControllerAOP.m │ ├── Categorys │ ├── NEEventTracingEventActionConfig+Private.h │ ├── NEEventTracingReferFuncs.m │ ├── Props │ │ ├── NEEventTracingAssociatedPros.h │ │ ├── NEEventTracingAssociatedPros.m │ │ ├── NEEventTracingWeakObjectContainer.h │ │ └── NEEventTracingWeakObjectContainer.m │ ├── UIAlertAction+EventTracing.m │ ├── UIAlertController+EventTracing.m │ ├── UIView+EventTracing.m │ ├── UIView+EventTracingPipEvent.m │ ├── UIView+EventTracingPrivate.h │ ├── UIView+EventTracingRefer.m │ ├── UIView+EventTracingReuse.m │ └── UIView+EventTracingVTree.m │ ├── Core │ ├── BILogBuilder │ │ ├── NEEventTracingBuilder.m │ │ └── NEEventTracingMultiReferPatch.m │ ├── NEEventTracingContext+Private.h │ ├── NEEventTracingContext.m │ ├── NEEventTracingEngine+Action.h │ ├── NEEventTracingEngine+Action.m │ ├── NEEventTracingEngine+Private.h │ ├── NEEventTracingEngine+TraverseAction.h │ ├── NEEventTracingEngine+TraverseAction.m │ └── NEEventTracingEngine.m │ ├── Diff │ ├── NEEventTracingDiff.h │ ├── NEEventTracingDiff.mm │ └── NEEventTracingDiffable.h │ ├── Exceptions │ └── NEEventTracingExceptionDelegate.h │ ├── Log │ ├── NEEventTracingInternalLog.h │ └── NEEventTracingInternalLog.m │ ├── Output │ ├── NEEventTracingEventOutput.h │ ├── NEEventTracingEventOutput.m │ ├── NEEventTracingEventOutputChannel.h │ ├── NEEventTracingOutputFlattenFormatter.h │ ├── NEEventTracingOutputFlattenFormatter.m │ ├── NEEventTracingReferNodeSCMDefaultFormatter.h │ ├── NEEventTracingReferNodeSCMDefaultFormatter.m │ └── Private │ │ └── NEEventTracingEventOutput+Private.h │ ├── ParamGuard │ ├── NEEventTracingParamGuardConfiguration.h │ └── Private │ │ ├── NEEventTracingParamGuardExector.h │ │ └── NEEventTracingParamGuardExector.m │ ├── Public │ ├── BILogBuilder │ │ ├── NEEventTracingBuilder.h │ │ └── NEEventTracingMultiReferPatch.h │ ├── NEEventTracing.h │ ├── NEEventTracingAppLifecycleProcotol.h │ ├── NEEventTracingClickMonitor.h │ ├── NEEventTracingContext.h │ ├── NEEventTracingDefines.h │ ├── NEEventTracingEngine.h │ ├── NEEventTracingEventActionConfig.h │ ├── NEEventTracingInternalLogOutputInterface.h │ ├── NEEventTracingOutputFormatter.h │ ├── NEEventTracingReferFuncs.h │ ├── NEEventTracingReferObserver.h │ ├── NEEventTracingVTreeNodeExtraConfigProtocol.h │ ├── UIAlertController+EventTracingParams.h │ ├── UIScrollView+EventTracingES.h │ ├── UIView+EventTracing.h │ ├── UIView+EventTracingNodeImpressObserver.h │ └── UIView+EventTracingPipEvent.h │ ├── Refer │ ├── NEEventTracingEventRefer.h │ ├── NEEventTracingFormattedRefer.h │ └── Private │ │ ├── NEEventTracingEventRefer+Private.h │ │ ├── NEEventTracingEventRefer.m │ │ ├── NEEventTracingEventReferCollector.h │ │ ├── NEEventTracingEventReferCollector.m │ │ ├── NEEventTracingEventReferQueue+Query.h │ │ ├── NEEventTracingEventReferQueue+Query.m │ │ ├── NEEventTracingEventReferQueue.h │ │ ├── NEEventTracingEventReferQueue.m │ │ ├── NEEventTracingFormattedReferBuilder.h │ │ └── NEEventTracingFormattedReferBuilder.m │ ├── Throttle │ ├── NEEventTracingTraversalRunnerDurationThrottle.h │ ├── NEEventTracingTraversalRunnerDurationThrottle.m │ ├── NEEventTracingTraversalRunnerScrollViewOffsetThrottle.h │ ├── NEEventTracingTraversalRunnerScrollViewOffsetThrottle.m │ └── NEEventTracingTraversalRunnerThrottle.h │ ├── Traverser │ ├── NEEventTracingEventAction.h │ ├── NEEventTracingEventAction.m │ ├── NEEventTracingEventEmitter.h │ ├── NEEventTracingEventEmitter.m │ ├── NEEventTracingTraversalRunner.h │ ├── NEEventTracingTraversalRunner.m │ ├── NEEventTracingTraverser.h │ └── NEEventTracingTraverser.mm │ ├── Utils │ ├── NSArray+ETEnumerator.h │ ├── NSArray+ETEnumerator.mm │ └── Private │ │ ├── EventTracingConfuseMacro.h │ │ ├── NEEventTracingConstData.h │ │ ├── NEEventTracingConstData.m │ │ ├── NEEventTracingDefines.m │ │ ├── NEEventTracingSentinel.h │ │ ├── NEEventTracingSentinel.m │ │ ├── NSString+EventTracingUtil.h │ │ └── NSString+EventTracingUtil.m │ └── VTree │ ├── NEEventTracingVTree.h │ ├── NEEventTracingVTree.m │ ├── NEEventTracingVTreeNode.h │ ├── NEEventTracingVTreeNode.m │ ├── Private │ ├── NEEventTracingVTree+Private.h │ └── NEEventTracingVTreeNode+Private.h │ ├── Sync │ ├── NEEventTracingVTree+Sync.h │ └── NEEventTracingVTree+Sync.mm │ └── Visible │ ├── NEEventTracingVTree+Visible.h │ ├── NEEventTracingVTree+Visible.m │ ├── NEEventTracingVTreeNode+Visible.h │ └── NEEventTracingVTreeNode+Visible.m ├── EventTracing.podspec ├── Example ├── EventTracing-iOS.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── NMTest-Example.xcscheme ├── EventTracing-iOS │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── ETCommonDefines.h │ ├── ETTabBarViewController.h │ ├── ETTabBarViewController.m │ ├── EventTracing-iOS-Info.plist │ ├── EventTracing-iOS-Prefix.pch │ ├── H5 │ │ ├── ETH5ViewController.h │ │ ├── ETH5ViewController.m │ │ ├── ETJSBEventTracing.m │ │ ├── Jsb │ │ │ ├── ETJSBInternalBridgeAvaiable.m │ │ │ ├── ETWebUtility.h │ │ │ ├── ETWebUtility.m │ │ │ ├── ETWebView.h │ │ │ ├── ETWebView.m │ │ │ ├── ETWebViewBridge.h │ │ │ ├── ETWebViewBridge.m │ │ │ ├── ETWebViewBridgeManager.h │ │ │ ├── ETWebViewBridgeManager.m │ │ │ ├── ETWebViewBridgeModuleContext.h │ │ │ ├── Message │ │ │ │ ├── ETWebViewBridgeMessage.h │ │ │ │ └── ETWebViewBridgeMessage.m │ │ │ ├── NSError+ETWebViewBridge.h │ │ │ ├── NSError+ETWebViewBridge.m │ │ │ ├── inject.js │ │ │ └── smulate_click.js │ │ └── h5.html │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ └── close.imageset │ │ │ ├── Contents.json │ │ │ └── close@3x.png │ ├── NEAppDelegate.h │ ├── NEAppDelegate.m │ ├── Native │ │ ├── Base │ │ │ ├── ETBaseViewController.h │ │ │ └── ETBaseViewController.m │ │ ├── Tip │ │ │ ├── ETTipViewController.h │ │ │ └── ETTipViewController.m │ │ ├── categories │ │ │ ├── UICollectionView+ETDemo.h │ │ │ ├── UICollectionView+ETDemo.m │ │ │ ├── UIColor+ET.h │ │ │ ├── UIColor+ET.m │ │ │ ├── UITableView+ETDemo.h │ │ │ └── UITableView+ETDemo.m │ │ ├── tab_page_1 │ │ │ ├── Alert │ │ │ │ ├── ETAlertViewController.h │ │ │ │ └── ETAlertViewController.m │ │ │ ├── Cell │ │ │ │ ├── ETMainTestCell.h │ │ │ │ ├── ETMainTestCell.m │ │ │ │ ├── ETMainTestCellItem.h │ │ │ │ ├── ETMainTestCellItem.m │ │ │ │ ├── ETMainTestInputCell.h │ │ │ │ └── ETMainTestInputCell.m │ │ │ ├── ETHomeTableViewController.h │ │ │ ├── ETHomeTableViewController.m │ │ │ ├── ETTestLogicMountViewController.h │ │ │ ├── ETTestLogicMountViewController.m │ │ │ ├── ETTestLoginViewController.h │ │ │ ├── ETTestLoginViewController.m │ │ │ ├── Event │ │ │ │ ├── ETEventViewController.h │ │ │ │ └── ETEventViewController.m │ │ │ ├── Impress │ │ │ │ ├── ETAutoImpressController.h │ │ │ │ └── ETAutoImpressController.m │ │ │ ├── Logout │ │ │ │ ├── ETLogoutViewController.h │ │ │ │ └── ETLogoutViewController.m │ │ │ ├── Mount │ │ │ │ ├── ETMountViewController.h │ │ │ │ └── ETMountViewController.m │ │ │ ├── Params │ │ │ │ ├── ETHomeParamsViewController.h │ │ │ │ └── ETHomeParamsViewController.m │ │ │ ├── QRCode │ │ │ │ ├── ETQRCodeScanViewController.h │ │ │ │ └── ETQRCodeScanViewController.m │ │ │ ├── Refer │ │ │ │ ├── ETBridgeViewController.h │ │ │ │ ├── ETBridgeViewController.m │ │ │ │ ├── ETReferViewController.h │ │ │ │ └── ETReferViewController.m │ │ │ └── Visible │ │ │ │ ├── ETVisibleViewController.h │ │ │ │ └── ETVisibleViewController.m │ │ └── tab_page_2 │ │ │ ├── ETHomeCollectionViewCell.h │ │ │ ├── ETHomeCollectionViewCell.m │ │ │ ├── ETHomeCollectionViewController.h │ │ │ └── ETHomeCollectionViewController.m │ ├── TestUtils │ │ ├── EventTracingTestLogComing.h │ │ └── EventTracingTestLogComing.m │ ├── en.lproj │ │ └── InfoPlist.strings │ └── main.m ├── Gemfile ├── Gemfile.lock ├── Podfile └── Tests │ ├── ETAlertTests.m │ ├── ETAutoImpressTests.m │ ├── ETDiffTests.m │ ├── ETEventTests.m │ ├── ETH5Tests.m │ ├── ETMountTests.m │ ├── ETParamsTests.m │ ├── ETReferTests.m │ ├── ETVisibleTests.m │ ├── EventTracingDefines.h │ ├── EventTracingTestUsefullFuncs.h │ ├── EventTracingTestUsefullFuncs.m │ ├── KIFUITestActor+ET_Extra.h │ ├── KIFUITestActor+ET_Extra.m │ ├── NSMutableArray+ET_Extra.h │ ├── NSMutableArray+ET_Extra.m │ ├── Tests-Info.plist │ ├── Tests-Prefix.pch │ └── en.lproj │ └── InfoPlist.strings ├── LICENSE ├── README.md └── _Pods.xcodeproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/.travis.yml -------------------------------------------------------------------------------- /EventTracing-iOS/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/AOP/EventObserver/NEEventTracingClickMonitor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/AOP/EventObserver/NEEventTracingClickMonitor.m -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/AOP/NEEventTracingAOPManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/AOP/NEEventTracingAOPManager.h -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/AOP/NEEventTracingAOPManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/AOP/NEEventTracingAOPManager.m -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/AOP/NEEventTracingAOPProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/AOP/NEEventTracingAOPProtocol.h -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/AOP/NEEventTracingDelegateChain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/AOP/NEEventTracingDelegateChain.h -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/AOP/NEEventTracingDelegateChain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/AOP/NEEventTracingDelegateChain.m -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/AOP/ui/NEEventTracingAppLicycleAOP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/AOP/ui/NEEventTracingAppLicycleAOP.h -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/AOP/ui/NEEventTracingAppLicycleAOP.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/AOP/ui/NEEventTracingAppLicycleAOP.m -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/AOP/ui/NEEventTracingUIAlertControllerAOP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/AOP/ui/NEEventTracingUIAlertControllerAOP.h -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/AOP/ui/NEEventTracingUIAlertControllerAOP.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/AOP/ui/NEEventTracingUIAlertControllerAOP.m -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/AOP/ui/NEEventTracingUIControlAOP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/AOP/ui/NEEventTracingUIControlAOP.h -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/AOP/ui/NEEventTracingUIControlAOP.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/AOP/ui/NEEventTracingUIControlAOP.m -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/AOP/ui/NEEventTracingUIScrollViewAOP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/AOP/ui/NEEventTracingUIScrollViewAOP.h -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/AOP/ui/NEEventTracingUIScrollViewAOP.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/AOP/ui/NEEventTracingUIScrollViewAOP.m -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/AOP/ui/NEEventTracingUITabbarAOP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/AOP/ui/NEEventTracingUITabbarAOP.h -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/AOP/ui/NEEventTracingUITabbarAOP.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/AOP/ui/NEEventTracingUITabbarAOP.m -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/AOP/ui/NEEventTracingUIViewAOP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/AOP/ui/NEEventTracingUIViewAOP.h -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/AOP/ui/NEEventTracingUIViewAOP.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/AOP/ui/NEEventTracingUIViewAOP.m -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/AOP/ui/NEEventTracingUIViewControllerAOP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/AOP/ui/NEEventTracingUIViewControllerAOP.h -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/AOP/ui/NEEventTracingUIViewControllerAOP.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/AOP/ui/NEEventTracingUIViewControllerAOP.m -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/Categorys/NEEventTracingEventActionConfig+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/Categorys/NEEventTracingEventActionConfig+Private.h -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/Categorys/NEEventTracingReferFuncs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/Categorys/NEEventTracingReferFuncs.m -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/Categorys/Props/NEEventTracingAssociatedPros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/Categorys/Props/NEEventTracingAssociatedPros.h -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/Categorys/Props/NEEventTracingAssociatedPros.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/Categorys/Props/NEEventTracingAssociatedPros.m -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/Categorys/Props/NEEventTracingWeakObjectContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/Categorys/Props/NEEventTracingWeakObjectContainer.h -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/Categorys/Props/NEEventTracingWeakObjectContainer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/Categorys/Props/NEEventTracingWeakObjectContainer.m -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/Categorys/UIAlertAction+EventTracing.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/Categorys/UIAlertAction+EventTracing.m -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/Categorys/UIAlertController+EventTracing.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/Categorys/UIAlertController+EventTracing.m -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/Categorys/UIView+EventTracing.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/Categorys/UIView+EventTracing.m -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/Categorys/UIView+EventTracingPipEvent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/Categorys/UIView+EventTracingPipEvent.m -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/Categorys/UIView+EventTracingPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/Categorys/UIView+EventTracingPrivate.h -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/Categorys/UIView+EventTracingRefer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/Categorys/UIView+EventTracingRefer.m -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/Categorys/UIView+EventTracingReuse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/Categorys/UIView+EventTracingReuse.m -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/Categorys/UIView+EventTracingVTree.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/Categorys/UIView+EventTracingVTree.m -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/Core/BILogBuilder/NEEventTracingBuilder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/Core/BILogBuilder/NEEventTracingBuilder.m -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/Core/BILogBuilder/NEEventTracingMultiReferPatch.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/Core/BILogBuilder/NEEventTracingMultiReferPatch.m -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/Core/NEEventTracingContext+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/Core/NEEventTracingContext+Private.h -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/Core/NEEventTracingContext.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/Core/NEEventTracingContext.m -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/Core/NEEventTracingEngine+Action.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/Core/NEEventTracingEngine+Action.h -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/Core/NEEventTracingEngine+Action.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/Core/NEEventTracingEngine+Action.m -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/Core/NEEventTracingEngine+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/Core/NEEventTracingEngine+Private.h -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/Core/NEEventTracingEngine+TraverseAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/Core/NEEventTracingEngine+TraverseAction.h -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/Core/NEEventTracingEngine+TraverseAction.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/Core/NEEventTracingEngine+TraverseAction.m -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/Core/NEEventTracingEngine.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/Core/NEEventTracingEngine.m -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/Diff/NEEventTracingDiff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/Diff/NEEventTracingDiff.h -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/Diff/NEEventTracingDiff.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/Diff/NEEventTracingDiff.mm -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/Diff/NEEventTracingDiffable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/Diff/NEEventTracingDiffable.h -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/Exceptions/NEEventTracingExceptionDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/Exceptions/NEEventTracingExceptionDelegate.h -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/Log/NEEventTracingInternalLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/Log/NEEventTracingInternalLog.h -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/Log/NEEventTracingInternalLog.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/Log/NEEventTracingInternalLog.m -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/Output/NEEventTracingEventOutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/Output/NEEventTracingEventOutput.h -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/Output/NEEventTracingEventOutput.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/Output/NEEventTracingEventOutput.m -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/Output/NEEventTracingEventOutputChannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/Output/NEEventTracingEventOutputChannel.h -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/Output/NEEventTracingOutputFlattenFormatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/Output/NEEventTracingOutputFlattenFormatter.h -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/Output/NEEventTracingOutputFlattenFormatter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/Output/NEEventTracingOutputFlattenFormatter.m -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/Output/NEEventTracingReferNodeSCMDefaultFormatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/Output/NEEventTracingReferNodeSCMDefaultFormatter.h -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/Output/NEEventTracingReferNodeSCMDefaultFormatter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/Output/NEEventTracingReferNodeSCMDefaultFormatter.m -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/Output/Private/NEEventTracingEventOutput+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/Output/Private/NEEventTracingEventOutput+Private.h -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/ParamGuard/NEEventTracingParamGuardConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/ParamGuard/NEEventTracingParamGuardConfiguration.h -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/ParamGuard/Private/NEEventTracingParamGuardExector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/ParamGuard/Private/NEEventTracingParamGuardExector.h -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/ParamGuard/Private/NEEventTracingParamGuardExector.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/ParamGuard/Private/NEEventTracingParamGuardExector.m -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/Public/BILogBuilder/NEEventTracingBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/Public/BILogBuilder/NEEventTracingBuilder.h -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/Public/BILogBuilder/NEEventTracingMultiReferPatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/Public/BILogBuilder/NEEventTracingMultiReferPatch.h -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/Public/NEEventTracing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/Public/NEEventTracing.h -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/Public/NEEventTracingAppLifecycleProcotol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/Public/NEEventTracingAppLifecycleProcotol.h -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/Public/NEEventTracingClickMonitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/Public/NEEventTracingClickMonitor.h -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/Public/NEEventTracingContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/Public/NEEventTracingContext.h -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/Public/NEEventTracingDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/Public/NEEventTracingDefines.h -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/Public/NEEventTracingEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/Public/NEEventTracingEngine.h -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/Public/NEEventTracingEventActionConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/Public/NEEventTracingEventActionConfig.h -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/Public/NEEventTracingInternalLogOutputInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/Public/NEEventTracingInternalLogOutputInterface.h -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/Public/NEEventTracingOutputFormatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/Public/NEEventTracingOutputFormatter.h -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/Public/NEEventTracingReferFuncs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/Public/NEEventTracingReferFuncs.h -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/Public/NEEventTracingReferObserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/Public/NEEventTracingReferObserver.h -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/Public/NEEventTracingVTreeNodeExtraConfigProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/Public/NEEventTracingVTreeNodeExtraConfigProtocol.h -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/Public/UIAlertController+EventTracingParams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/Public/UIAlertController+EventTracingParams.h -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/Public/UIScrollView+EventTracingES.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/Public/UIScrollView+EventTracingES.h -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/Public/UIView+EventTracing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/Public/UIView+EventTracing.h -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/Public/UIView+EventTracingNodeImpressObserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/Public/UIView+EventTracingNodeImpressObserver.h -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/Public/UIView+EventTracingPipEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/Public/UIView+EventTracingPipEvent.h -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/Refer/NEEventTracingEventRefer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/Refer/NEEventTracingEventRefer.h -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/Refer/NEEventTracingFormattedRefer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/Refer/NEEventTracingFormattedRefer.h -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/Refer/Private/NEEventTracingEventRefer+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/Refer/Private/NEEventTracingEventRefer+Private.h -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/Refer/Private/NEEventTracingEventRefer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/Refer/Private/NEEventTracingEventRefer.m -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/Refer/Private/NEEventTracingEventReferCollector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/Refer/Private/NEEventTracingEventReferCollector.h -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/Refer/Private/NEEventTracingEventReferCollector.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/Refer/Private/NEEventTracingEventReferCollector.m -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/Refer/Private/NEEventTracingEventReferQueue+Query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/Refer/Private/NEEventTracingEventReferQueue+Query.h -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/Refer/Private/NEEventTracingEventReferQueue+Query.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/Refer/Private/NEEventTracingEventReferQueue+Query.m -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/Refer/Private/NEEventTracingEventReferQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/Refer/Private/NEEventTracingEventReferQueue.h -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/Refer/Private/NEEventTracingEventReferQueue.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/Refer/Private/NEEventTracingEventReferQueue.m -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/Refer/Private/NEEventTracingFormattedReferBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/Refer/Private/NEEventTracingFormattedReferBuilder.h -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/Refer/Private/NEEventTracingFormattedReferBuilder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/Refer/Private/NEEventTracingFormattedReferBuilder.m -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/Throttle/NEEventTracingTraversalRunnerDurationThrottle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/Throttle/NEEventTracingTraversalRunnerDurationThrottle.h -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/Throttle/NEEventTracingTraversalRunnerDurationThrottle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/Throttle/NEEventTracingTraversalRunnerDurationThrottle.m -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/Throttle/NEEventTracingTraversalRunnerScrollViewOffsetThrottle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/Throttle/NEEventTracingTraversalRunnerScrollViewOffsetThrottle.h -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/Throttle/NEEventTracingTraversalRunnerScrollViewOffsetThrottle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/Throttle/NEEventTracingTraversalRunnerScrollViewOffsetThrottle.m -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/Throttle/NEEventTracingTraversalRunnerThrottle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/Throttle/NEEventTracingTraversalRunnerThrottle.h -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/Traverser/NEEventTracingEventAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/Traverser/NEEventTracingEventAction.h -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/Traverser/NEEventTracingEventAction.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/Traverser/NEEventTracingEventAction.m -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/Traverser/NEEventTracingEventEmitter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/Traverser/NEEventTracingEventEmitter.h -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/Traverser/NEEventTracingEventEmitter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/Traverser/NEEventTracingEventEmitter.m -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/Traverser/NEEventTracingTraversalRunner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/Traverser/NEEventTracingTraversalRunner.h -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/Traverser/NEEventTracingTraversalRunner.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/Traverser/NEEventTracingTraversalRunner.m -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/Traverser/NEEventTracingTraverser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/Traverser/NEEventTracingTraverser.h -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/Traverser/NEEventTracingTraverser.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/Traverser/NEEventTracingTraverser.mm -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/Utils/NSArray+ETEnumerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/Utils/NSArray+ETEnumerator.h -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/Utils/NSArray+ETEnumerator.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/Utils/NSArray+ETEnumerator.mm -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/Utils/Private/EventTracingConfuseMacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/Utils/Private/EventTracingConfuseMacro.h -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/Utils/Private/NEEventTracingConstData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/Utils/Private/NEEventTracingConstData.h -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/Utils/Private/NEEventTracingConstData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/Utils/Private/NEEventTracingConstData.m -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/Utils/Private/NEEventTracingDefines.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/Utils/Private/NEEventTracingDefines.m -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/Utils/Private/NEEventTracingSentinel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/Utils/Private/NEEventTracingSentinel.h -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/Utils/Private/NEEventTracingSentinel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/Utils/Private/NEEventTracingSentinel.m -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/Utils/Private/NSString+EventTracingUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/Utils/Private/NSString+EventTracingUtil.h -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/Utils/Private/NSString+EventTracingUtil.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/Utils/Private/NSString+EventTracingUtil.m -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/VTree/NEEventTracingVTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/VTree/NEEventTracingVTree.h -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/VTree/NEEventTracingVTree.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/VTree/NEEventTracingVTree.m -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/VTree/NEEventTracingVTreeNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/VTree/NEEventTracingVTreeNode.h -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/VTree/NEEventTracingVTreeNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/VTree/NEEventTracingVTreeNode.m -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/VTree/Private/NEEventTracingVTree+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/VTree/Private/NEEventTracingVTree+Private.h -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/VTree/Private/NEEventTracingVTreeNode+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/VTree/Private/NEEventTracingVTreeNode+Private.h -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/VTree/Sync/NEEventTracingVTree+Sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/VTree/Sync/NEEventTracingVTree+Sync.h -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/VTree/Sync/NEEventTracingVTree+Sync.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/VTree/Sync/NEEventTracingVTree+Sync.mm -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/VTree/Visible/NEEventTracingVTree+Visible.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/VTree/Visible/NEEventTracingVTree+Visible.h -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/VTree/Visible/NEEventTracingVTree+Visible.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/VTree/Visible/NEEventTracingVTree+Visible.m -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/VTree/Visible/NEEventTracingVTreeNode+Visible.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/VTree/Visible/NEEventTracingVTreeNode+Visible.h -------------------------------------------------------------------------------- /EventTracing-iOS/Classes/VTree/Visible/NEEventTracingVTreeNode+Visible.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing-iOS/Classes/VTree/Visible/NEEventTracingVTreeNode+Visible.m -------------------------------------------------------------------------------- /EventTracing.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/EventTracing.podspec -------------------------------------------------------------------------------- /Example/EventTracing-iOS.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/Example/EventTracing-iOS.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/EventTracing-iOS.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/Example/EventTracing-iOS.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/EventTracing-iOS.xcodeproj/xcshareddata/xcschemes/NMTest-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/Example/EventTracing-iOS.xcodeproj/xcshareddata/xcschemes/NMTest-Example.xcscheme -------------------------------------------------------------------------------- /Example/EventTracing-iOS/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/Example/EventTracing-iOS/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Example/EventTracing-iOS/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/Example/EventTracing-iOS/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/EventTracing-iOS/ETCommonDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/Example/EventTracing-iOS/ETCommonDefines.h -------------------------------------------------------------------------------- /Example/EventTracing-iOS/ETTabBarViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/Example/EventTracing-iOS/ETTabBarViewController.h -------------------------------------------------------------------------------- /Example/EventTracing-iOS/ETTabBarViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/Example/EventTracing-iOS/ETTabBarViewController.m -------------------------------------------------------------------------------- /Example/EventTracing-iOS/EventTracing-iOS-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/Example/EventTracing-iOS/EventTracing-iOS-Info.plist -------------------------------------------------------------------------------- /Example/EventTracing-iOS/EventTracing-iOS-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/Example/EventTracing-iOS/EventTracing-iOS-Prefix.pch -------------------------------------------------------------------------------- /Example/EventTracing-iOS/H5/ETH5ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/Example/EventTracing-iOS/H5/ETH5ViewController.h -------------------------------------------------------------------------------- /Example/EventTracing-iOS/H5/ETH5ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/Example/EventTracing-iOS/H5/ETH5ViewController.m -------------------------------------------------------------------------------- /Example/EventTracing-iOS/H5/ETJSBEventTracing.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/Example/EventTracing-iOS/H5/ETJSBEventTracing.m -------------------------------------------------------------------------------- /Example/EventTracing-iOS/H5/Jsb/ETJSBInternalBridgeAvaiable.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/Example/EventTracing-iOS/H5/Jsb/ETJSBInternalBridgeAvaiable.m -------------------------------------------------------------------------------- /Example/EventTracing-iOS/H5/Jsb/ETWebUtility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/Example/EventTracing-iOS/H5/Jsb/ETWebUtility.h -------------------------------------------------------------------------------- /Example/EventTracing-iOS/H5/Jsb/ETWebUtility.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/Example/EventTracing-iOS/H5/Jsb/ETWebUtility.m -------------------------------------------------------------------------------- /Example/EventTracing-iOS/H5/Jsb/ETWebView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/Example/EventTracing-iOS/H5/Jsb/ETWebView.h -------------------------------------------------------------------------------- /Example/EventTracing-iOS/H5/Jsb/ETWebView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/Example/EventTracing-iOS/H5/Jsb/ETWebView.m -------------------------------------------------------------------------------- /Example/EventTracing-iOS/H5/Jsb/ETWebViewBridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/Example/EventTracing-iOS/H5/Jsb/ETWebViewBridge.h -------------------------------------------------------------------------------- /Example/EventTracing-iOS/H5/Jsb/ETWebViewBridge.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/Example/EventTracing-iOS/H5/Jsb/ETWebViewBridge.m -------------------------------------------------------------------------------- /Example/EventTracing-iOS/H5/Jsb/ETWebViewBridgeManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/Example/EventTracing-iOS/H5/Jsb/ETWebViewBridgeManager.h -------------------------------------------------------------------------------- /Example/EventTracing-iOS/H5/Jsb/ETWebViewBridgeManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/Example/EventTracing-iOS/H5/Jsb/ETWebViewBridgeManager.m -------------------------------------------------------------------------------- /Example/EventTracing-iOS/H5/Jsb/ETWebViewBridgeModuleContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/Example/EventTracing-iOS/H5/Jsb/ETWebViewBridgeModuleContext.h -------------------------------------------------------------------------------- /Example/EventTracing-iOS/H5/Jsb/Message/ETWebViewBridgeMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/Example/EventTracing-iOS/H5/Jsb/Message/ETWebViewBridgeMessage.h -------------------------------------------------------------------------------- /Example/EventTracing-iOS/H5/Jsb/Message/ETWebViewBridgeMessage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/Example/EventTracing-iOS/H5/Jsb/Message/ETWebViewBridgeMessage.m -------------------------------------------------------------------------------- /Example/EventTracing-iOS/H5/Jsb/NSError+ETWebViewBridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/Example/EventTracing-iOS/H5/Jsb/NSError+ETWebViewBridge.h -------------------------------------------------------------------------------- /Example/EventTracing-iOS/H5/Jsb/NSError+ETWebViewBridge.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/Example/EventTracing-iOS/H5/Jsb/NSError+ETWebViewBridge.m -------------------------------------------------------------------------------- /Example/EventTracing-iOS/H5/Jsb/inject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/Example/EventTracing-iOS/H5/Jsb/inject.js -------------------------------------------------------------------------------- /Example/EventTracing-iOS/H5/Jsb/smulate_click.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/Example/EventTracing-iOS/H5/Jsb/smulate_click.js -------------------------------------------------------------------------------- /Example/EventTracing-iOS/H5/h5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/Example/EventTracing-iOS/H5/h5.html -------------------------------------------------------------------------------- /Example/EventTracing-iOS/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/Example/EventTracing-iOS/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/EventTracing-iOS/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/Example/EventTracing-iOS/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/EventTracing-iOS/Images.xcassets/close.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/Example/EventTracing-iOS/Images.xcassets/close.imageset/Contents.json -------------------------------------------------------------------------------- /Example/EventTracing-iOS/Images.xcassets/close.imageset/close@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/Example/EventTracing-iOS/Images.xcassets/close.imageset/close@3x.png -------------------------------------------------------------------------------- /Example/EventTracing-iOS/NEAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/Example/EventTracing-iOS/NEAppDelegate.h -------------------------------------------------------------------------------- /Example/EventTracing-iOS/NEAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/Example/EventTracing-iOS/NEAppDelegate.m -------------------------------------------------------------------------------- /Example/EventTracing-iOS/Native/Base/ETBaseViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/Example/EventTracing-iOS/Native/Base/ETBaseViewController.h -------------------------------------------------------------------------------- /Example/EventTracing-iOS/Native/Base/ETBaseViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/Example/EventTracing-iOS/Native/Base/ETBaseViewController.m -------------------------------------------------------------------------------- /Example/EventTracing-iOS/Native/Tip/ETTipViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/Example/EventTracing-iOS/Native/Tip/ETTipViewController.h -------------------------------------------------------------------------------- /Example/EventTracing-iOS/Native/Tip/ETTipViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/Example/EventTracing-iOS/Native/Tip/ETTipViewController.m -------------------------------------------------------------------------------- /Example/EventTracing-iOS/Native/categories/UICollectionView+ETDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/Example/EventTracing-iOS/Native/categories/UICollectionView+ETDemo.h -------------------------------------------------------------------------------- /Example/EventTracing-iOS/Native/categories/UICollectionView+ETDemo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/Example/EventTracing-iOS/Native/categories/UICollectionView+ETDemo.m -------------------------------------------------------------------------------- /Example/EventTracing-iOS/Native/categories/UIColor+ET.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/Example/EventTracing-iOS/Native/categories/UIColor+ET.h -------------------------------------------------------------------------------- /Example/EventTracing-iOS/Native/categories/UIColor+ET.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/Example/EventTracing-iOS/Native/categories/UIColor+ET.m -------------------------------------------------------------------------------- /Example/EventTracing-iOS/Native/categories/UITableView+ETDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/Example/EventTracing-iOS/Native/categories/UITableView+ETDemo.h -------------------------------------------------------------------------------- /Example/EventTracing-iOS/Native/categories/UITableView+ETDemo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/Example/EventTracing-iOS/Native/categories/UITableView+ETDemo.m -------------------------------------------------------------------------------- /Example/EventTracing-iOS/Native/tab_page_1/Alert/ETAlertViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/Example/EventTracing-iOS/Native/tab_page_1/Alert/ETAlertViewController.h -------------------------------------------------------------------------------- /Example/EventTracing-iOS/Native/tab_page_1/Alert/ETAlertViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/Example/EventTracing-iOS/Native/tab_page_1/Alert/ETAlertViewController.m -------------------------------------------------------------------------------- /Example/EventTracing-iOS/Native/tab_page_1/Cell/ETMainTestCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/Example/EventTracing-iOS/Native/tab_page_1/Cell/ETMainTestCell.h -------------------------------------------------------------------------------- /Example/EventTracing-iOS/Native/tab_page_1/Cell/ETMainTestCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/Example/EventTracing-iOS/Native/tab_page_1/Cell/ETMainTestCell.m -------------------------------------------------------------------------------- /Example/EventTracing-iOS/Native/tab_page_1/Cell/ETMainTestCellItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/Example/EventTracing-iOS/Native/tab_page_1/Cell/ETMainTestCellItem.h -------------------------------------------------------------------------------- /Example/EventTracing-iOS/Native/tab_page_1/Cell/ETMainTestCellItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/Example/EventTracing-iOS/Native/tab_page_1/Cell/ETMainTestCellItem.m -------------------------------------------------------------------------------- /Example/EventTracing-iOS/Native/tab_page_1/Cell/ETMainTestInputCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/Example/EventTracing-iOS/Native/tab_page_1/Cell/ETMainTestInputCell.h -------------------------------------------------------------------------------- /Example/EventTracing-iOS/Native/tab_page_1/Cell/ETMainTestInputCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/Example/EventTracing-iOS/Native/tab_page_1/Cell/ETMainTestInputCell.m -------------------------------------------------------------------------------- /Example/EventTracing-iOS/Native/tab_page_1/ETHomeTableViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/Example/EventTracing-iOS/Native/tab_page_1/ETHomeTableViewController.h -------------------------------------------------------------------------------- /Example/EventTracing-iOS/Native/tab_page_1/ETHomeTableViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/Example/EventTracing-iOS/Native/tab_page_1/ETHomeTableViewController.m -------------------------------------------------------------------------------- /Example/EventTracing-iOS/Native/tab_page_1/ETTestLogicMountViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/Example/EventTracing-iOS/Native/tab_page_1/ETTestLogicMountViewController.h -------------------------------------------------------------------------------- /Example/EventTracing-iOS/Native/tab_page_1/ETTestLogicMountViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/Example/EventTracing-iOS/Native/tab_page_1/ETTestLogicMountViewController.m -------------------------------------------------------------------------------- /Example/EventTracing-iOS/Native/tab_page_1/ETTestLoginViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/Example/EventTracing-iOS/Native/tab_page_1/ETTestLoginViewController.h -------------------------------------------------------------------------------- /Example/EventTracing-iOS/Native/tab_page_1/ETTestLoginViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/Example/EventTracing-iOS/Native/tab_page_1/ETTestLoginViewController.m -------------------------------------------------------------------------------- /Example/EventTracing-iOS/Native/tab_page_1/Event/ETEventViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/Example/EventTracing-iOS/Native/tab_page_1/Event/ETEventViewController.h -------------------------------------------------------------------------------- /Example/EventTracing-iOS/Native/tab_page_1/Event/ETEventViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/Example/EventTracing-iOS/Native/tab_page_1/Event/ETEventViewController.m -------------------------------------------------------------------------------- /Example/EventTracing-iOS/Native/tab_page_1/Impress/ETAutoImpressController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/Example/EventTracing-iOS/Native/tab_page_1/Impress/ETAutoImpressController.h -------------------------------------------------------------------------------- /Example/EventTracing-iOS/Native/tab_page_1/Impress/ETAutoImpressController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/Example/EventTracing-iOS/Native/tab_page_1/Impress/ETAutoImpressController.m -------------------------------------------------------------------------------- /Example/EventTracing-iOS/Native/tab_page_1/Logout/ETLogoutViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/Example/EventTracing-iOS/Native/tab_page_1/Logout/ETLogoutViewController.h -------------------------------------------------------------------------------- /Example/EventTracing-iOS/Native/tab_page_1/Logout/ETLogoutViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/Example/EventTracing-iOS/Native/tab_page_1/Logout/ETLogoutViewController.m -------------------------------------------------------------------------------- /Example/EventTracing-iOS/Native/tab_page_1/Mount/ETMountViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/Example/EventTracing-iOS/Native/tab_page_1/Mount/ETMountViewController.h -------------------------------------------------------------------------------- /Example/EventTracing-iOS/Native/tab_page_1/Mount/ETMountViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/Example/EventTracing-iOS/Native/tab_page_1/Mount/ETMountViewController.m -------------------------------------------------------------------------------- /Example/EventTracing-iOS/Native/tab_page_1/Params/ETHomeParamsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/Example/EventTracing-iOS/Native/tab_page_1/Params/ETHomeParamsViewController.h -------------------------------------------------------------------------------- /Example/EventTracing-iOS/Native/tab_page_1/Params/ETHomeParamsViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/Example/EventTracing-iOS/Native/tab_page_1/Params/ETHomeParamsViewController.m -------------------------------------------------------------------------------- /Example/EventTracing-iOS/Native/tab_page_1/QRCode/ETQRCodeScanViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/Example/EventTracing-iOS/Native/tab_page_1/QRCode/ETQRCodeScanViewController.h -------------------------------------------------------------------------------- /Example/EventTracing-iOS/Native/tab_page_1/QRCode/ETQRCodeScanViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/Example/EventTracing-iOS/Native/tab_page_1/QRCode/ETQRCodeScanViewController.m -------------------------------------------------------------------------------- /Example/EventTracing-iOS/Native/tab_page_1/Refer/ETBridgeViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/Example/EventTracing-iOS/Native/tab_page_1/Refer/ETBridgeViewController.h -------------------------------------------------------------------------------- /Example/EventTracing-iOS/Native/tab_page_1/Refer/ETBridgeViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/Example/EventTracing-iOS/Native/tab_page_1/Refer/ETBridgeViewController.m -------------------------------------------------------------------------------- /Example/EventTracing-iOS/Native/tab_page_1/Refer/ETReferViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/Example/EventTracing-iOS/Native/tab_page_1/Refer/ETReferViewController.h -------------------------------------------------------------------------------- /Example/EventTracing-iOS/Native/tab_page_1/Refer/ETReferViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/Example/EventTracing-iOS/Native/tab_page_1/Refer/ETReferViewController.m -------------------------------------------------------------------------------- /Example/EventTracing-iOS/Native/tab_page_1/Visible/ETVisibleViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/Example/EventTracing-iOS/Native/tab_page_1/Visible/ETVisibleViewController.h -------------------------------------------------------------------------------- /Example/EventTracing-iOS/Native/tab_page_1/Visible/ETVisibleViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/Example/EventTracing-iOS/Native/tab_page_1/Visible/ETVisibleViewController.m -------------------------------------------------------------------------------- /Example/EventTracing-iOS/Native/tab_page_2/ETHomeCollectionViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/Example/EventTracing-iOS/Native/tab_page_2/ETHomeCollectionViewCell.h -------------------------------------------------------------------------------- /Example/EventTracing-iOS/Native/tab_page_2/ETHomeCollectionViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/Example/EventTracing-iOS/Native/tab_page_2/ETHomeCollectionViewCell.m -------------------------------------------------------------------------------- /Example/EventTracing-iOS/Native/tab_page_2/ETHomeCollectionViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/Example/EventTracing-iOS/Native/tab_page_2/ETHomeCollectionViewController.h -------------------------------------------------------------------------------- /Example/EventTracing-iOS/Native/tab_page_2/ETHomeCollectionViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/Example/EventTracing-iOS/Native/tab_page_2/ETHomeCollectionViewController.m -------------------------------------------------------------------------------- /Example/EventTracing-iOS/TestUtils/EventTracingTestLogComing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/Example/EventTracing-iOS/TestUtils/EventTracingTestLogComing.h -------------------------------------------------------------------------------- /Example/EventTracing-iOS/TestUtils/EventTracingTestLogComing.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/Example/EventTracing-iOS/TestUtils/EventTracingTestLogComing.m -------------------------------------------------------------------------------- /Example/EventTracing-iOS/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/EventTracing-iOS/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/Example/EventTracing-iOS/main.m -------------------------------------------------------------------------------- /Example/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/Example/Gemfile -------------------------------------------------------------------------------- /Example/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/Example/Gemfile.lock -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Tests/ETAlertTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/Example/Tests/ETAlertTests.m -------------------------------------------------------------------------------- /Example/Tests/ETAutoImpressTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/Example/Tests/ETAutoImpressTests.m -------------------------------------------------------------------------------- /Example/Tests/ETDiffTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/Example/Tests/ETDiffTests.m -------------------------------------------------------------------------------- /Example/Tests/ETEventTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/Example/Tests/ETEventTests.m -------------------------------------------------------------------------------- /Example/Tests/ETH5Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/Example/Tests/ETH5Tests.m -------------------------------------------------------------------------------- /Example/Tests/ETMountTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/Example/Tests/ETMountTests.m -------------------------------------------------------------------------------- /Example/Tests/ETParamsTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/Example/Tests/ETParamsTests.m -------------------------------------------------------------------------------- /Example/Tests/ETReferTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/Example/Tests/ETReferTests.m -------------------------------------------------------------------------------- /Example/Tests/ETVisibleTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/Example/Tests/ETVisibleTests.m -------------------------------------------------------------------------------- /Example/Tests/EventTracingDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/Example/Tests/EventTracingDefines.h -------------------------------------------------------------------------------- /Example/Tests/EventTracingTestUsefullFuncs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/Example/Tests/EventTracingTestUsefullFuncs.h -------------------------------------------------------------------------------- /Example/Tests/EventTracingTestUsefullFuncs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/Example/Tests/EventTracingTestUsefullFuncs.m -------------------------------------------------------------------------------- /Example/Tests/KIFUITestActor+ET_Extra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/Example/Tests/KIFUITestActor+ET_Extra.h -------------------------------------------------------------------------------- /Example/Tests/KIFUITestActor+ET_Extra.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/Example/Tests/KIFUITestActor+ET_Extra.m -------------------------------------------------------------------------------- /Example/Tests/NSMutableArray+ET_Extra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/Example/Tests/NSMutableArray+ET_Extra.h -------------------------------------------------------------------------------- /Example/Tests/NSMutableArray+ET_Extra.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/Example/Tests/NSMutableArray+ET_Extra.m -------------------------------------------------------------------------------- /Example/Tests/Tests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/Example/Tests/Tests-Info.plist -------------------------------------------------------------------------------- /Example/Tests/Tests-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/Example/Tests/Tests-Prefix.pch -------------------------------------------------------------------------------- /Example/Tests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventtracing/EventTracing-iOS/HEAD/README.md -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj --------------------------------------------------------------------------------