├── .gitignore
├── FormTableDemo
├── FormTableDemo.xcodeproj
│ ├── project.pbxproj
│ └── project.xcworkspace
│ │ └── contents.xcworkspacedata
├── FormTableDemo.xcworkspace
│ ├── contents.xcworkspacedata
│ └── xcshareddata
│ │ └── IDEWorkspaceChecks.plist
├── FormTableDemo
│ ├── Supporting Files
│ │ ├── AppDelegate.h
│ │ ├── AppDelegate.m
│ │ ├── Entitlements.entitlements
│ │ ├── Info.plist
│ │ ├── Prefix.pch
│ │ ├── json.txt
│ │ └── main.m
│ ├── Xcconfig
│ │ ├── AS.xcconfig
│ │ ├── InsideConfig
│ │ │ ├── ASPrivate.xcconfig
│ │ │ ├── ProductionPrivate.xcconfig
│ │ │ └── StagingPrivate.xcconfig
│ │ ├── ProductionInhouse.xcconfig
│ │ └── Staging.xcconfig
│ ├── app
│ │ ├── controllers
│ │ │ ├── FTFormViewController.h
│ │ │ ├── FTFormViewController.m
│ │ │ ├── FTFormViewController.storyboard
│ │ │ ├── FTHomeViewController.h
│ │ │ ├── FTHomeViewController.m
│ │ │ └── FTHomeViewController.storyboard
│ │ ├── modules
│ │ │ └── common
│ │ │ │ ├── FTUtil.h
│ │ │ │ └── FTUtil.m
│ │ └── views
│ │ │ └── form
│ │ │ ├── FTFormItemCollectionViewCell.h
│ │ │ ├── FTFormItemCollectionViewCell.m
│ │ │ ├── FTFormModel.h
│ │ │ ├── FTFormModel.m
│ │ │ ├── FTFormTableViewCell.h
│ │ │ ├── FTFormTableViewCell.m
│ │ │ ├── FTFormView.h
│ │ │ └── FTFormView.m
│ ├── config
│ │ ├── APIAddress.h
│ │ └── AppConfig.h
│ ├── ext
│ │ ├── GGUtil.h
│ │ ├── GGUtil.m
│ │ ├── UIViewController+NavItem.h
│ │ └── UIViewController+NavItem.m
│ ├── images.xcassets
│ │ └── LaunchImage.launchimage
│ │ │ ├── 3.5.png
│ │ │ ├── 4.7.png
│ │ │ ├── 4.png
│ │ │ ├── 5.5.png
│ │ │ └── Contents.json
│ └── vendors
│ │ └── GGCommonKit
│ │ ├── Extensions
│ │ ├── NSObject+AutoDescription.h
│ │ ├── NSObject+AutoDescription.m
│ │ ├── UIActionSheet+Blocks.h
│ │ ├── UIActionSheet+Blocks.m
│ │ ├── UIAlertView+Blocks.h
│ │ ├── UIAlertView+Blocks.m
│ │ ├── UIButton+ActivityIndicatorView.h
│ │ ├── UIButton+ActivityIndicatorView.m
│ │ ├── UILabel+FormattedText.h
│ │ ├── UILabel+FormattedText.m
│ │ ├── UIStoryboard+Addition.h
│ │ ├── UIStoryboard+Addition.m
│ │ ├── UITableViewCell+Utils.h
│ │ ├── UITableViewCell+Utils.m
│ │ ├── UIView+Create.h
│ │ ├── UIView+Create.m
│ │ ├── UIView+LayoutConstraintHelper.h
│ │ ├── UIView+LayoutConstraintHelper.m
│ │ ├── UIView+Utils.h
│ │ ├── UIView+Utils.m
│ │ ├── UIViewController+Create.h
│ │ └── UIViewController+Create.m
│ │ ├── GGCommonKit.h
│ │ ├── GGCommonKitMacros
│ │ └── GGCommonKitMacros.h
│ │ └── Util
│ │ ├── ArrayUtils.h
│ │ ├── ArrayUtils.m
│ │ ├── AutorotateNavigationController.h
│ │ ├── AutorotateNavigationController.m
│ │ ├── GGDatePickerHelper.h
│ │ ├── GGDatePickerHelper.m
│ │ ├── GGImagePickerHelper.h
│ │ ├── GGImagePickerHelper.m
│ │ ├── GGNavigationController.h
│ │ ├── GGNavigationController.m
│ │ ├── PortraitNavigationController.h
│ │ └── PortraitNavigationController.m
├── Podfile
├── Podfile.lock
└── Pods
│ ├── AFNetworking
│ ├── AFNetworking
│ │ ├── AFHTTPSessionManager.h
│ │ ├── AFHTTPSessionManager.m
│ │ ├── AFNetworkReachabilityManager.h
│ │ ├── AFNetworkReachabilityManager.m
│ │ ├── AFNetworking.h
│ │ ├── AFSecurityPolicy.h
│ │ ├── AFSecurityPolicy.m
│ │ ├── AFURLRequestSerialization.h
│ │ ├── AFURLRequestSerialization.m
│ │ ├── AFURLResponseSerialization.h
│ │ ├── AFURLResponseSerialization.m
│ │ ├── AFURLSessionManager.h
│ │ └── AFURLSessionManager.m
│ ├── LICENSE
│ ├── README.md
│ └── UIKit+AFNetworking
│ │ ├── AFAutoPurgingImageCache.h
│ │ ├── AFAutoPurgingImageCache.m
│ │ ├── AFImageDownloader.h
│ │ ├── AFImageDownloader.m
│ │ ├── AFNetworkActivityIndicatorManager.h
│ │ ├── AFNetworkActivityIndicatorManager.m
│ │ ├── UIActivityIndicatorView+AFNetworking.h
│ │ ├── UIActivityIndicatorView+AFNetworking.m
│ │ ├── UIButton+AFNetworking.h
│ │ ├── UIButton+AFNetworking.m
│ │ ├── UIImage+AFNetworking.h
│ │ ├── UIImageView+AFNetworking.h
│ │ ├── UIImageView+AFNetworking.m
│ │ ├── UIKit+AFNetworking.h
│ │ ├── UIProgressView+AFNetworking.h
│ │ ├── UIProgressView+AFNetworking.m
│ │ ├── UIRefreshControl+AFNetworking.h
│ │ ├── UIRefreshControl+AFNetworking.m
│ │ ├── UIWebView+AFNetworking.h
│ │ └── UIWebView+AFNetworking.m
│ ├── FBRetainCycleDetector
│ ├── FBRetainCycleDetector
│ │ ├── Associations
│ │ │ ├── FBAssociationManager.h
│ │ │ ├── FBAssociationManager.mm
│ │ │ └── Internal
│ │ │ │ └── FBAssociationManager+Internal.h
│ │ ├── Detector
│ │ │ ├── FBNodeEnumerator.h
│ │ │ ├── FBNodeEnumerator.mm
│ │ │ ├── FBRetainCycleDetector+Internal.h
│ │ │ ├── FBRetainCycleDetector.h
│ │ │ └── FBRetainCycleDetector.mm
│ │ ├── FBRetainCycleUtils.h
│ │ ├── FBRetainCycleUtils.m
│ │ ├── Filtering
│ │ │ ├── FBStandardGraphEdgeFilters.h
│ │ │ └── FBStandardGraphEdgeFilters.mm
│ │ ├── Graph
│ │ │ ├── FBObjectGraphConfiguration.h
│ │ │ ├── FBObjectGraphConfiguration.m
│ │ │ ├── FBObjectiveCBlock.h
│ │ │ ├── FBObjectiveCBlock.m
│ │ │ ├── FBObjectiveCGraphElement.h
│ │ │ ├── FBObjectiveCGraphElement.mm
│ │ │ ├── FBObjectiveCObject.h
│ │ │ ├── FBObjectiveCObject.m
│ │ │ ├── Internal
│ │ │ │ └── FBObjectiveCGraphElement+Internal.h
│ │ │ └── Specialization
│ │ │ │ ├── FBObjectiveCNSCFTimer.h
│ │ │ │ └── FBObjectiveCNSCFTimer.mm
│ │ └── Layout
│ │ │ ├── Blocks
│ │ │ ├── FBBlockInterface.h
│ │ │ ├── FBBlockStrongLayout.h
│ │ │ ├── FBBlockStrongLayout.m
│ │ │ ├── FBBlockStrongRelationDetector.h
│ │ │ └── FBBlockStrongRelationDetector.m
│ │ │ └── Classes
│ │ │ ├── FBClassStrongLayout.h
│ │ │ ├── FBClassStrongLayout.mm
│ │ │ ├── FBClassStrongLayoutHelpers.h
│ │ │ ├── FBClassStrongLayoutHelpers.m
│ │ │ ├── Parser
│ │ │ ├── BaseType.h
│ │ │ ├── FBStructEncodingParser.h
│ │ │ ├── FBStructEncodingParser.mm
│ │ │ ├── Struct.h
│ │ │ ├── Struct.mm
│ │ │ └── Type.h
│ │ │ └── Reference
│ │ │ ├── FBIvarReference.h
│ │ │ ├── FBIvarReference.m
│ │ │ ├── FBObjectInStructReference.h
│ │ │ ├── FBObjectInStructReference.m
│ │ │ └── FBObjectReference.h
│ ├── LICENSE
│ ├── README.md
│ └── fishhook
│ │ ├── fishhook.c
│ │ └── fishhook.h
│ ├── FLEX
│ ├── Classes
│ │ ├── Editing
│ │ │ ├── ArgumentInputViews
│ │ │ │ ├── FLEXArgumentInputColorView.h
│ │ │ │ ├── FLEXArgumentInputColorView.m
│ │ │ │ ├── FLEXArgumentInputDateView.h
│ │ │ │ ├── FLEXArgumentInputDateView.m
│ │ │ │ ├── FLEXArgumentInputFontView.h
│ │ │ │ ├── FLEXArgumentInputFontView.m
│ │ │ │ ├── FLEXArgumentInputFontsPickerView.h
│ │ │ │ ├── FLEXArgumentInputFontsPickerView.m
│ │ │ │ ├── FLEXArgumentInputJSONObjectView.h
│ │ │ │ ├── FLEXArgumentInputJSONObjectView.m
│ │ │ │ ├── FLEXArgumentInputNotSupportedView.h
│ │ │ │ ├── FLEXArgumentInputNotSupportedView.m
│ │ │ │ ├── FLEXArgumentInputNumberView.h
│ │ │ │ ├── FLEXArgumentInputNumberView.m
│ │ │ │ ├── FLEXArgumentInputStringView.h
│ │ │ │ ├── FLEXArgumentInputStringView.m
│ │ │ │ ├── FLEXArgumentInputStructView.h
│ │ │ │ ├── FLEXArgumentInputStructView.m
│ │ │ │ ├── FLEXArgumentInputSwitchView.h
│ │ │ │ ├── FLEXArgumentInputSwitchView.m
│ │ │ │ ├── FLEXArgumentInputTextView.h
│ │ │ │ ├── FLEXArgumentInputTextView.m
│ │ │ │ ├── FLEXArgumentInputView.h
│ │ │ │ ├── FLEXArgumentInputView.m
│ │ │ │ ├── FLEXArgumentInputViewFactory.h
│ │ │ │ └── FLEXArgumentInputViewFactory.m
│ │ │ ├── FLEXDefaultEditorViewController.h
│ │ │ ├── FLEXDefaultEditorViewController.m
│ │ │ ├── FLEXFieldEditorView.h
│ │ │ ├── FLEXFieldEditorView.m
│ │ │ ├── FLEXFieldEditorViewController.h
│ │ │ ├── FLEXFieldEditorViewController.m
│ │ │ ├── FLEXIvarEditorViewController.h
│ │ │ ├── FLEXIvarEditorViewController.m
│ │ │ ├── FLEXMethodCallingViewController.h
│ │ │ ├── FLEXMethodCallingViewController.m
│ │ │ ├── FLEXPropertyEditorViewController.h
│ │ │ └── FLEXPropertyEditorViewController.m
│ │ ├── ExplorerInterface
│ │ │ ├── FLEXExplorerViewController.h
│ │ │ ├── FLEXExplorerViewController.m
│ │ │ ├── FLEXWindow.h
│ │ │ └── FLEXWindow.m
│ │ ├── FLEX.h
│ │ ├── FLEXManager.h
│ │ ├── GlobalStateExplorers
│ │ │ ├── DatabaseBrowser
│ │ │ │ ├── FLEXDatabaseManager.h
│ │ │ │ ├── FLEXMultiColumnTableView.h
│ │ │ │ ├── FLEXMultiColumnTableView.m
│ │ │ │ ├── FLEXRealmDatabaseManager.h
│ │ │ │ ├── FLEXRealmDatabaseManager.m
│ │ │ │ ├── FLEXRealmDefines.h
│ │ │ │ ├── FLEXSQLiteDatabaseManager.h
│ │ │ │ ├── FLEXSQLiteDatabaseManager.m
│ │ │ │ ├── FLEXTableColumnHeader.h
│ │ │ │ ├── FLEXTableColumnHeader.m
│ │ │ │ ├── FLEXTableContentCell.h
│ │ │ │ ├── FLEXTableContentCell.m
│ │ │ │ ├── FLEXTableContentViewController.h
│ │ │ │ ├── FLEXTableContentViewController.m
│ │ │ │ ├── FLEXTableLeftCell.h
│ │ │ │ ├── FLEXTableLeftCell.m
│ │ │ │ ├── FLEXTableListViewController.h
│ │ │ │ └── FLEXTableListViewController.m
│ │ │ ├── FLEXClassesTableViewController.h
│ │ │ ├── FLEXClassesTableViewController.m
│ │ │ ├── FLEXCookiesTableViewController.h
│ │ │ ├── FLEXCookiesTableViewController.m
│ │ │ ├── FLEXFileBrowserFileOperationController.h
│ │ │ ├── FLEXFileBrowserFileOperationController.m
│ │ │ ├── FLEXFileBrowserSearchOperation.h
│ │ │ ├── FLEXFileBrowserSearchOperation.m
│ │ │ ├── FLEXFileBrowserTableViewController.h
│ │ │ ├── FLEXFileBrowserTableViewController.m
│ │ │ ├── FLEXGlobalsTableViewController.h
│ │ │ ├── FLEXGlobalsTableViewController.m
│ │ │ ├── FLEXInstancesTableViewController.h
│ │ │ ├── FLEXInstancesTableViewController.m
│ │ │ ├── FLEXLibrariesTableViewController.h
│ │ │ ├── FLEXLibrariesTableViewController.m
│ │ │ ├── FLEXLiveObjectsTableViewController.h
│ │ │ ├── FLEXLiveObjectsTableViewController.m
│ │ │ ├── FLEXWebViewController.h
│ │ │ ├── FLEXWebViewController.m
│ │ │ └── SystemLog
│ │ │ │ ├── FLEXSystemLogMessage.h
│ │ │ │ ├── FLEXSystemLogMessage.m
│ │ │ │ ├── FLEXSystemLogTableViewCell.h
│ │ │ │ ├── FLEXSystemLogTableViewCell.m
│ │ │ │ ├── FLEXSystemLogTableViewController.h
│ │ │ │ └── FLEXSystemLogTableViewController.m
│ │ ├── Manager
│ │ │ ├── FLEXManager+Private.h
│ │ │ └── FLEXManager.m
│ │ ├── Network
│ │ │ ├── FLEXNetworkCurlLogger.h
│ │ │ ├── FLEXNetworkCurlLogger.m
│ │ │ ├── FLEXNetworkHistoryTableViewController.h
│ │ │ ├── FLEXNetworkHistoryTableViewController.m
│ │ │ ├── FLEXNetworkRecorder.h
│ │ │ ├── FLEXNetworkRecorder.m
│ │ │ ├── FLEXNetworkSettingsTableViewController.h
│ │ │ ├── FLEXNetworkSettingsTableViewController.m
│ │ │ ├── FLEXNetworkTransaction.h
│ │ │ ├── FLEXNetworkTransaction.m
│ │ │ ├── FLEXNetworkTransactionDetailTableViewController.h
│ │ │ ├── FLEXNetworkTransactionDetailTableViewController.m
│ │ │ ├── FLEXNetworkTransactionTableViewCell.h
│ │ │ ├── FLEXNetworkTransactionTableViewCell.m
│ │ │ └── PonyDebugger
│ │ │ │ ├── FLEXNetworkObserver.h
│ │ │ │ └── FLEXNetworkObserver.m
│ │ ├── ObjectExplorers
│ │ │ ├── FLEXArrayExplorerViewController.h
│ │ │ ├── FLEXArrayExplorerViewController.m
│ │ │ ├── FLEXClassExplorerViewController.h
│ │ │ ├── FLEXClassExplorerViewController.m
│ │ │ ├── FLEXDefaultsExplorerViewController.h
│ │ │ ├── FLEXDefaultsExplorerViewController.m
│ │ │ ├── FLEXDictionaryExplorerViewController.h
│ │ │ ├── FLEXDictionaryExplorerViewController.m
│ │ │ ├── FLEXGlobalsTableViewControllerEntry.h
│ │ │ ├── FLEXGlobalsTableViewControllerEntry.m
│ │ │ ├── FLEXImageExplorerViewController.h
│ │ │ ├── FLEXImageExplorerViewController.m
│ │ │ ├── FLEXLayerExplorerViewController.h
│ │ │ ├── FLEXLayerExplorerViewController.m
│ │ │ ├── FLEXObjectExplorerFactory.h
│ │ │ ├── FLEXObjectExplorerFactory.m
│ │ │ ├── FLEXObjectExplorerViewController.h
│ │ │ ├── FLEXObjectExplorerViewController.m
│ │ │ ├── FLEXSetExplorerViewController.h
│ │ │ ├── FLEXSetExplorerViewController.m
│ │ │ ├── FLEXViewControllerExplorerViewController.h
│ │ │ ├── FLEXViewControllerExplorerViewController.m
│ │ │ ├── FLEXViewExplorerViewController.h
│ │ │ └── FLEXViewExplorerViewController.m
│ │ ├── Toolbar
│ │ │ ├── FLEXExplorerToolbar.h
│ │ │ ├── FLEXExplorerToolbar.m
│ │ │ ├── FLEXToolbarItem.h
│ │ │ └── FLEXToolbarItem.m
│ │ ├── Utility
│ │ │ ├── FLEXHeapEnumerator.h
│ │ │ ├── FLEXHeapEnumerator.m
│ │ │ ├── FLEXKeyboardHelpViewController.h
│ │ │ ├── FLEXKeyboardHelpViewController.m
│ │ │ ├── FLEXKeyboardShortcutManager.h
│ │ │ ├── FLEXKeyboardShortcutManager.m
│ │ │ ├── FLEXMultilineTableViewCell.h
│ │ │ ├── FLEXMultilineTableViewCell.m
│ │ │ ├── FLEXResources.h
│ │ │ ├── FLEXResources.m
│ │ │ ├── FLEXRuntimeUtility.h
│ │ │ ├── FLEXRuntimeUtility.m
│ │ │ ├── FLEXUtility.h
│ │ │ └── FLEXUtility.m
│ │ └── ViewHierarchy
│ │ │ ├── FLEXHierarchyTableViewCell.h
│ │ │ ├── FLEXHierarchyTableViewCell.m
│ │ │ ├── FLEXHierarchyTableViewController.h
│ │ │ ├── FLEXHierarchyTableViewController.m
│ │ │ ├── FLEXImagePreviewViewController.h
│ │ │ └── FLEXImagePreviewViewController.m
│ ├── LICENSE
│ └── README.md
│ ├── Headers
│ ├── Private
│ │ ├── AFNetworking
│ │ │ ├── AFAutoPurgingImageCache.h
│ │ │ ├── AFHTTPSessionManager.h
│ │ │ ├── AFImageDownloader.h
│ │ │ ├── AFNetworkActivityIndicatorManager.h
│ │ │ ├── AFNetworkReachabilityManager.h
│ │ │ ├── AFNetworking.h
│ │ │ ├── AFSecurityPolicy.h
│ │ │ ├── AFURLRequestSerialization.h
│ │ │ ├── AFURLResponseSerialization.h
│ │ │ ├── AFURLSessionManager.h
│ │ │ ├── UIActivityIndicatorView+AFNetworking.h
│ │ │ ├── UIButton+AFNetworking.h
│ │ │ ├── UIImage+AFNetworking.h
│ │ │ ├── UIImageView+AFNetworking.h
│ │ │ ├── UIKit+AFNetworking.h
│ │ │ ├── UIProgressView+AFNetworking.h
│ │ │ ├── UIRefreshControl+AFNetworking.h
│ │ │ └── UIWebView+AFNetworking.h
│ │ ├── FBRetainCycleDetector
│ │ │ ├── BaseType.h
│ │ │ ├── FBAssociationManager+Internal.h
│ │ │ ├── FBAssociationManager.h
│ │ │ ├── FBBlockInterface.h
│ │ │ ├── FBBlockStrongLayout.h
│ │ │ ├── FBBlockStrongRelationDetector.h
│ │ │ ├── FBClassStrongLayout.h
│ │ │ ├── FBClassStrongLayoutHelpers.h
│ │ │ ├── FBIvarReference.h
│ │ │ ├── FBNodeEnumerator.h
│ │ │ ├── FBObjectGraphConfiguration.h
│ │ │ ├── FBObjectInStructReference.h
│ │ │ ├── FBObjectReference.h
│ │ │ ├── FBObjectiveCBlock.h
│ │ │ ├── FBObjectiveCGraphElement+Internal.h
│ │ │ ├── FBObjectiveCGraphElement.h
│ │ │ ├── FBObjectiveCNSCFTimer.h
│ │ │ ├── FBObjectiveCObject.h
│ │ │ ├── FBRetainCycleDetector+Internal.h
│ │ │ ├── FBRetainCycleDetector.h
│ │ │ ├── FBRetainCycleUtils.h
│ │ │ ├── FBStandardGraphEdgeFilters.h
│ │ │ ├── FBStructEncodingParser.h
│ │ │ ├── Struct.h
│ │ │ ├── Type.h
│ │ │ └── fishhook.h
│ │ ├── FLEX
│ │ │ ├── FLEX.h
│ │ │ ├── FLEXArgumentInputColorView.h
│ │ │ ├── FLEXArgumentInputDateView.h
│ │ │ ├── FLEXArgumentInputFontView.h
│ │ │ ├── FLEXArgumentInputFontsPickerView.h
│ │ │ ├── FLEXArgumentInputJSONObjectView.h
│ │ │ ├── FLEXArgumentInputNotSupportedView.h
│ │ │ ├── FLEXArgumentInputNumberView.h
│ │ │ ├── FLEXArgumentInputStringView.h
│ │ │ ├── FLEXArgumentInputStructView.h
│ │ │ ├── FLEXArgumentInputSwitchView.h
│ │ │ ├── FLEXArgumentInputTextView.h
│ │ │ ├── FLEXArgumentInputView.h
│ │ │ ├── FLEXArgumentInputViewFactory.h
│ │ │ ├── FLEXArrayExplorerViewController.h
│ │ │ ├── FLEXClassExplorerViewController.h
│ │ │ ├── FLEXClassesTableViewController.h
│ │ │ ├── FLEXCookiesTableViewController.h
│ │ │ ├── FLEXDatabaseManager.h
│ │ │ ├── FLEXDefaultEditorViewController.h
│ │ │ ├── FLEXDefaultsExplorerViewController.h
│ │ │ ├── FLEXDictionaryExplorerViewController.h
│ │ │ ├── FLEXExplorerToolbar.h
│ │ │ ├── FLEXExplorerViewController.h
│ │ │ ├── FLEXFieldEditorView.h
│ │ │ ├── FLEXFieldEditorViewController.h
│ │ │ ├── FLEXFileBrowserFileOperationController.h
│ │ │ ├── FLEXFileBrowserSearchOperation.h
│ │ │ ├── FLEXFileBrowserTableViewController.h
│ │ │ ├── FLEXGlobalsTableViewController.h
│ │ │ ├── FLEXGlobalsTableViewControllerEntry.h
│ │ │ ├── FLEXHeapEnumerator.h
│ │ │ ├── FLEXHierarchyTableViewCell.h
│ │ │ ├── FLEXHierarchyTableViewController.h
│ │ │ ├── FLEXImageExplorerViewController.h
│ │ │ ├── FLEXImagePreviewViewController.h
│ │ │ ├── FLEXInstancesTableViewController.h
│ │ │ ├── FLEXIvarEditorViewController.h
│ │ │ ├── FLEXKeyboardHelpViewController.h
│ │ │ ├── FLEXKeyboardShortcutManager.h
│ │ │ ├── FLEXLayerExplorerViewController.h
│ │ │ ├── FLEXLibrariesTableViewController.h
│ │ │ ├── FLEXLiveObjectsTableViewController.h
│ │ │ ├── FLEXManager+Private.h
│ │ │ ├── FLEXManager.h
│ │ │ ├── FLEXMethodCallingViewController.h
│ │ │ ├── FLEXMultiColumnTableView.h
│ │ │ ├── FLEXMultilineTableViewCell.h
│ │ │ ├── FLEXNetworkCurlLogger.h
│ │ │ ├── FLEXNetworkHistoryTableViewController.h
│ │ │ ├── FLEXNetworkObserver.h
│ │ │ ├── FLEXNetworkRecorder.h
│ │ │ ├── FLEXNetworkSettingsTableViewController.h
│ │ │ ├── FLEXNetworkTransaction.h
│ │ │ ├── FLEXNetworkTransactionDetailTableViewController.h
│ │ │ ├── FLEXNetworkTransactionTableViewCell.h
│ │ │ ├── FLEXObjectExplorerFactory.h
│ │ │ ├── FLEXObjectExplorerViewController.h
│ │ │ ├── FLEXPropertyEditorViewController.h
│ │ │ ├── FLEXRealmDatabaseManager.h
│ │ │ ├── FLEXRealmDefines.h
│ │ │ ├── FLEXResources.h
│ │ │ ├── FLEXRuntimeUtility.h
│ │ │ ├── FLEXSQLiteDatabaseManager.h
│ │ │ ├── FLEXSetExplorerViewController.h
│ │ │ ├── FLEXSystemLogMessage.h
│ │ │ ├── FLEXSystemLogTableViewCell.h
│ │ │ ├── FLEXSystemLogTableViewController.h
│ │ │ ├── FLEXTableColumnHeader.h
│ │ │ ├── FLEXTableContentCell.h
│ │ │ ├── FLEXTableContentViewController.h
│ │ │ ├── FLEXTableLeftCell.h
│ │ │ ├── FLEXTableListViewController.h
│ │ │ ├── FLEXToolbarItem.h
│ │ │ ├── FLEXUtility.h
│ │ │ ├── FLEXViewControllerExplorerViewController.h
│ │ │ ├── FLEXViewExplorerViewController.h
│ │ │ ├── FLEXWebViewController.h
│ │ │ └── FLEXWindow.h
│ │ ├── INTULocationManager
│ │ │ ├── INTUHeadingRequest.h
│ │ │ ├── INTULocationManager+Internal.h
│ │ │ ├── INTULocationManager.h
│ │ │ ├── INTULocationRequest.h
│ │ │ ├── INTULocationRequestDefines.h
│ │ │ └── INTURequestIDGenerator.h
│ │ ├── MBProgressHUD
│ │ │ └── MBProgressHUD.h
│ │ ├── MLeaksFinder
│ │ │ ├── MLeakedObjectProxy.h
│ │ │ ├── MLeaksFinder.h
│ │ │ ├── MLeaksMessenger.h
│ │ │ ├── NSObject+MemoryLeak.h
│ │ │ ├── UIApplication+MemoryLeak.h
│ │ │ ├── UINavigationController+MemoryLeak.h
│ │ │ ├── UIPageViewController+MemoryLeak.h
│ │ │ ├── UISplitViewController+MemoryLeak.h
│ │ │ ├── UITabBarController+MemoryLeak.h
│ │ │ ├── UITouch+MemoryLeak.h
│ │ │ ├── UIView+MemoryLeak.h
│ │ │ └── UIViewController+MemoryLeak.h
│ │ ├── NYXImagesKit
│ │ │ ├── NYXImagesHelper.h
│ │ │ ├── NYXImagesKit.h
│ │ │ ├── NYXProgressiveImageView.h
│ │ │ ├── UIImage+Blurring.h
│ │ │ ├── UIImage+Enhancing.h
│ │ │ ├── UIImage+Filtering.h
│ │ │ ├── UIImage+Masking.h
│ │ │ ├── UIImage+Reflection.h
│ │ │ ├── UIImage+Resizing.h
│ │ │ ├── UIImage+Rotating.h
│ │ │ ├── UIImage+Saving.h
│ │ │ ├── UIScrollView+Screenshot.h
│ │ │ └── UIView+Screenshot.h
│ │ ├── PureLayout
│ │ │ ├── ALView+PureLayout.h
│ │ │ ├── NSArray+PureLayout.h
│ │ │ ├── NSLayoutConstraint+PureLayout.h
│ │ │ ├── PureLayout+Internal.h
│ │ │ ├── PureLayout.h
│ │ │ └── PureLayoutDefines.h
│ │ ├── SDWebImage
│ │ │ ├── NSData+ImageContentType.h
│ │ │ ├── NSImage+WebCache.h
│ │ │ ├── SDImageCache.h
│ │ │ ├── SDImageCacheConfig.h
│ │ │ ├── SDWebImageCompat.h
│ │ │ ├── SDWebImageDecoder.h
│ │ │ ├── SDWebImageDownloader.h
│ │ │ ├── SDWebImageDownloaderOperation.h
│ │ │ ├── SDWebImageManager.h
│ │ │ ├── SDWebImageOperation.h
│ │ │ ├── SDWebImagePrefetcher.h
│ │ │ ├── UIButton+WebCache.h
│ │ │ ├── UIImage+GIF.h
│ │ │ ├── UIImage+MultiFormat.h
│ │ │ ├── UIImageView+HighlightedWebCache.h
│ │ │ ├── UIImageView+WebCache.h
│ │ │ ├── UIView+WebCache.h
│ │ │ └── UIView+WebCacheOperation.h
│ │ ├── YYKit
│ │ │ ├── CALayer+YYAdd.h
│ │ │ ├── CALayer+YYWebImage.h
│ │ │ ├── MKAnnotationView+YYWebImage.h
│ │ │ ├── NSArray+YYAdd.h
│ │ │ ├── NSAttributedString+YYText.h
│ │ │ ├── NSBundle+YYAdd.h
│ │ │ ├── NSData+YYAdd.h
│ │ │ ├── NSDate+YYAdd.h
│ │ │ ├── NSDictionary+YYAdd.h
│ │ │ ├── NSKeyedUnarchiver+YYAdd.h
│ │ │ ├── NSNotificationCenter+YYAdd.h
│ │ │ ├── NSNumber+YYAdd.h
│ │ │ ├── NSObject+YYAdd.h
│ │ │ ├── NSObject+YYAddForARC.h
│ │ │ ├── NSObject+YYAddForKVO.h
│ │ │ ├── NSObject+YYModel.h
│ │ │ ├── NSParagraphStyle+YYText.h
│ │ │ ├── NSString+YYAdd.h
│ │ │ ├── NSThread+YYAdd.h
│ │ │ ├── NSTimer+YYAdd.h
│ │ │ ├── UIApplication+YYAdd.h
│ │ │ ├── UIBarButtonItem+YYAdd.h
│ │ │ ├── UIBezierPath+YYAdd.h
│ │ │ ├── UIButton+YYWebImage.h
│ │ │ ├── UIColor+YYAdd.h
│ │ │ ├── UIControl+YYAdd.h
│ │ │ ├── UIDevice+YYAdd.h
│ │ │ ├── UIFont+YYAdd.h
│ │ │ ├── UIGestureRecognizer+YYAdd.h
│ │ │ ├── UIImage+YYAdd.h
│ │ │ ├── UIImageView+YYWebImage.h
│ │ │ ├── UIPasteboard+YYText.h
│ │ │ ├── UIScreen+YYAdd.h
│ │ │ ├── UIScrollView+YYAdd.h
│ │ │ ├── UITableView+YYAdd.h
│ │ │ ├── UITextField+YYAdd.h
│ │ │ ├── UIView+YYAdd.h
│ │ │ ├── YYAnimatedImageView.h
│ │ │ ├── YYAsyncLayer.h
│ │ │ ├── YYCGUtilities.h
│ │ │ ├── YYCache.h
│ │ │ ├── YYClassInfo.h
│ │ │ ├── YYDiskCache.h
│ │ │ ├── YYDispatchQueuePool.h
│ │ │ ├── YYFileHash.h
│ │ │ ├── YYFrameImage.h
│ │ │ ├── YYGestureRecognizer.h
│ │ │ ├── YYImage.h
│ │ │ ├── YYImageCache.h
│ │ │ ├── YYImageCoder.h
│ │ │ ├── YYKVStorage.h
│ │ │ ├── YYKeychain.h
│ │ │ ├── YYKit.h
│ │ │ ├── YYKitMacro.h
│ │ │ ├── YYLabel.h
│ │ │ ├── YYMemoryCache.h
│ │ │ ├── YYReachability.h
│ │ │ ├── YYSentinel.h
│ │ │ ├── YYSpriteSheetImage.h
│ │ │ ├── YYTextArchiver.h
│ │ │ ├── YYTextAttribute.h
│ │ │ ├── YYTextContainerView.h
│ │ │ ├── YYTextDebugOption.h
│ │ │ ├── YYTextEffectWindow.h
│ │ │ ├── YYTextInput.h
│ │ │ ├── YYTextKeyboardManager.h
│ │ │ ├── YYTextLayout.h
│ │ │ ├── YYTextLine.h
│ │ │ ├── YYTextMagnifier.h
│ │ │ ├── YYTextParser.h
│ │ │ ├── YYTextRubyAnnotation.h
│ │ │ ├── YYTextRunDelegate.h
│ │ │ ├── YYTextSelectionView.h
│ │ │ ├── YYTextUtilities.h
│ │ │ ├── YYTextView.h
│ │ │ ├── YYThreadSafeArray.h
│ │ │ ├── YYThreadSafeDictionary.h
│ │ │ ├── YYTimer.h
│ │ │ ├── YYTransaction.h
│ │ │ ├── YYWeakProxy.h
│ │ │ ├── YYWebImageManager.h
│ │ │ ├── YYWebImageOperation.h
│ │ │ └── _YYWebImageSetter.h
│ │ └── uicontrol-blocks
│ │ │ └── UIControl+Blocks.h
│ └── Public
│ │ ├── AFNetworking
│ │ ├── AFAutoPurgingImageCache.h
│ │ ├── AFHTTPSessionManager.h
│ │ ├── AFImageDownloader.h
│ │ ├── AFNetworkActivityIndicatorManager.h
│ │ ├── AFNetworkReachabilityManager.h
│ │ ├── AFNetworking.h
│ │ ├── AFSecurityPolicy.h
│ │ ├── AFURLRequestSerialization.h
│ │ ├── AFURLResponseSerialization.h
│ │ ├── AFURLSessionManager.h
│ │ ├── UIActivityIndicatorView+AFNetworking.h
│ │ ├── UIButton+AFNetworking.h
│ │ ├── UIImage+AFNetworking.h
│ │ ├── UIImageView+AFNetworking.h
│ │ ├── UIKit+AFNetworking.h
│ │ ├── UIProgressView+AFNetworking.h
│ │ ├── UIRefreshControl+AFNetworking.h
│ │ └── UIWebView+AFNetworking.h
│ │ ├── FBRetainCycleDetector
│ │ ├── FBAssociationManager.h
│ │ ├── FBObjectGraphConfiguration.h
│ │ ├── FBObjectiveCBlock.h
│ │ ├── FBObjectiveCGraphElement.h
│ │ ├── FBObjectiveCNSCFTimer.h
│ │ ├── FBObjectiveCObject.h
│ │ ├── FBRetainCycleDetector.h
│ │ └── FBStandardGraphEdgeFilters.h
│ │ ├── FLEX
│ │ ├── FLEX.h
│ │ └── FLEXManager.h
│ │ ├── INTULocationManager
│ │ ├── INTUHeadingRequest.h
│ │ ├── INTULocationManager+Internal.h
│ │ ├── INTULocationManager.h
│ │ ├── INTULocationRequest.h
│ │ ├── INTULocationRequestDefines.h
│ │ └── INTURequestIDGenerator.h
│ │ ├── MBProgressHUD
│ │ └── MBProgressHUD.h
│ │ ├── MLeaksFinder
│ │ ├── MLeaksFinder.h
│ │ └── NSObject+MemoryLeak.h
│ │ ├── NYXImagesKit
│ │ ├── NYXImagesHelper.h
│ │ ├── NYXImagesKit.h
│ │ ├── NYXProgressiveImageView.h
│ │ ├── UIImage+Blurring.h
│ │ ├── UIImage+Enhancing.h
│ │ ├── UIImage+Filtering.h
│ │ ├── UIImage+Masking.h
│ │ ├── UIImage+Reflection.h
│ │ ├── UIImage+Resizing.h
│ │ ├── UIImage+Rotating.h
│ │ ├── UIImage+Saving.h
│ │ ├── UIScrollView+Screenshot.h
│ │ └── UIView+Screenshot.h
│ │ ├── PureLayout
│ │ ├── ALView+PureLayout.h
│ │ ├── NSArray+PureLayout.h
│ │ ├── NSLayoutConstraint+PureLayout.h
│ │ ├── PureLayout+Internal.h
│ │ ├── PureLayout.h
│ │ └── PureLayoutDefines.h
│ │ ├── SDWebImage
│ │ ├── NSData+ImageContentType.h
│ │ ├── NSImage+WebCache.h
│ │ ├── SDImageCache.h
│ │ ├── SDImageCacheConfig.h
│ │ ├── SDWebImageCompat.h
│ │ ├── SDWebImageDecoder.h
│ │ ├── SDWebImageDownloader.h
│ │ ├── SDWebImageDownloaderOperation.h
│ │ ├── SDWebImageManager.h
│ │ ├── SDWebImageOperation.h
│ │ ├── SDWebImagePrefetcher.h
│ │ ├── UIButton+WebCache.h
│ │ ├── UIImage+GIF.h
│ │ ├── UIImage+MultiFormat.h
│ │ ├── UIImageView+HighlightedWebCache.h
│ │ ├── UIImageView+WebCache.h
│ │ ├── UIView+WebCache.h
│ │ └── UIView+WebCacheOperation.h
│ │ ├── YYKit
│ │ ├── CALayer+YYAdd.h
│ │ ├── CALayer+YYWebImage.h
│ │ ├── MKAnnotationView+YYWebImage.h
│ │ ├── NSArray+YYAdd.h
│ │ ├── NSAttributedString+YYText.h
│ │ ├── NSBundle+YYAdd.h
│ │ ├── NSData+YYAdd.h
│ │ ├── NSDate+YYAdd.h
│ │ ├── NSDictionary+YYAdd.h
│ │ ├── NSKeyedUnarchiver+YYAdd.h
│ │ ├── NSNotificationCenter+YYAdd.h
│ │ ├── NSNumber+YYAdd.h
│ │ ├── NSObject+YYAdd.h
│ │ ├── NSObject+YYAddForARC.h
│ │ ├── NSObject+YYAddForKVO.h
│ │ ├── NSObject+YYModel.h
│ │ ├── NSParagraphStyle+YYText.h
│ │ ├── NSString+YYAdd.h
│ │ ├── NSThread+YYAdd.h
│ │ ├── NSTimer+YYAdd.h
│ │ ├── UIApplication+YYAdd.h
│ │ ├── UIBarButtonItem+YYAdd.h
│ │ ├── UIBezierPath+YYAdd.h
│ │ ├── UIButton+YYWebImage.h
│ │ ├── UIColor+YYAdd.h
│ │ ├── UIControl+YYAdd.h
│ │ ├── UIDevice+YYAdd.h
│ │ ├── UIFont+YYAdd.h
│ │ ├── UIGestureRecognizer+YYAdd.h
│ │ ├── UIImage+YYAdd.h
│ │ ├── UIImageView+YYWebImage.h
│ │ ├── UIPasteboard+YYText.h
│ │ ├── UIScreen+YYAdd.h
│ │ ├── UIScrollView+YYAdd.h
│ │ ├── UITableView+YYAdd.h
│ │ ├── UITextField+YYAdd.h
│ │ ├── UIView+YYAdd.h
│ │ ├── WebP
│ │ │ ├── config.h
│ │ │ ├── decode.h
│ │ │ ├── demux.h
│ │ │ ├── encode.h
│ │ │ ├── extras.h
│ │ │ ├── format_constants.h
│ │ │ ├── mux.h
│ │ │ ├── mux_types.h
│ │ │ └── types.h
│ │ ├── YYAnimatedImageView.h
│ │ ├── YYAsyncLayer.h
│ │ ├── YYCGUtilities.h
│ │ ├── YYCache.h
│ │ ├── YYClassInfo.h
│ │ ├── YYDiskCache.h
│ │ ├── YYDispatchQueuePool.h
│ │ ├── YYFileHash.h
│ │ ├── YYFrameImage.h
│ │ ├── YYGestureRecognizer.h
│ │ ├── YYImage.h
│ │ ├── YYImageCache.h
│ │ ├── YYImageCoder.h
│ │ ├── YYKVStorage.h
│ │ ├── YYKeychain.h
│ │ ├── YYKit.h
│ │ ├── YYKitMacro.h
│ │ ├── YYLabel.h
│ │ ├── YYMemoryCache.h
│ │ ├── YYReachability.h
│ │ ├── YYSentinel.h
│ │ ├── YYSpriteSheetImage.h
│ │ ├── YYTextArchiver.h
│ │ ├── YYTextAttribute.h
│ │ ├── YYTextContainerView.h
│ │ ├── YYTextDebugOption.h
│ │ ├── YYTextEffectWindow.h
│ │ ├── YYTextInput.h
│ │ ├── YYTextKeyboardManager.h
│ │ ├── YYTextLayout.h
│ │ ├── YYTextLine.h
│ │ ├── YYTextMagnifier.h
│ │ ├── YYTextParser.h
│ │ ├── YYTextRubyAnnotation.h
│ │ ├── YYTextRunDelegate.h
│ │ ├── YYTextSelectionView.h
│ │ ├── YYTextUtilities.h
│ │ ├── YYTextView.h
│ │ ├── YYThreadSafeArray.h
│ │ ├── YYThreadSafeDictionary.h
│ │ ├── YYTimer.h
│ │ ├── YYTransaction.h
│ │ ├── YYWeakProxy.h
│ │ ├── YYWebImageManager.h
│ │ ├── YYWebImageOperation.h
│ │ └── _YYWebImageSetter.h
│ │ └── uicontrol-blocks
│ │ └── UIControl+Blocks.h
│ ├── INTULocationManager
│ ├── LICENSE
│ ├── LocationManager
│ │ └── INTULocationManager
│ │ │ ├── INTUHeadingRequest.h
│ │ │ ├── INTUHeadingRequest.m
│ │ │ ├── INTULocationManager+Internal.h
│ │ │ ├── INTULocationManager.h
│ │ │ ├── INTULocationManager.m
│ │ │ ├── INTULocationRequest.h
│ │ │ ├── INTULocationRequest.m
│ │ │ ├── INTULocationRequestDefines.h
│ │ │ ├── INTURequestIDGenerator.h
│ │ │ └── INTURequestIDGenerator.m
│ └── README.md
│ ├── MBProgressHUD
│ ├── LICENSE
│ ├── MBProgressHUD.h
│ ├── MBProgressHUD.m
│ └── README.mdown
│ ├── MLeaksFinder
│ ├── LICENSE
│ ├── MLeaksFinder
│ │ ├── MLeakedObjectProxy.h
│ │ ├── MLeakedObjectProxy.m
│ │ ├── MLeaksFinder.h
│ │ ├── MLeaksMessenger.h
│ │ ├── MLeaksMessenger.m
│ │ ├── NSObject+MemoryLeak.h
│ │ ├── NSObject+MemoryLeak.m
│ │ ├── UIApplication+MemoryLeak.h
│ │ ├── UIApplication+MemoryLeak.m
│ │ ├── UINavigationController+MemoryLeak.h
│ │ ├── UINavigationController+MemoryLeak.m
│ │ ├── UIPageViewController+MemoryLeak.h
│ │ ├── UIPageViewController+MemoryLeak.m
│ │ ├── UISplitViewController+MemoryLeak.h
│ │ ├── UISplitViewController+MemoryLeak.m
│ │ ├── UITabBarController+MemoryLeak.h
│ │ ├── UITabBarController+MemoryLeak.m
│ │ ├── UITouch+MemoryLeak.h
│ │ ├── UITouch+MemoryLeak.m
│ │ ├── UIView+MemoryLeak.h
│ │ ├── UIView+MemoryLeak.m
│ │ ├── UIViewController+MemoryLeak.h
│ │ └── UIViewController+MemoryLeak.m
│ └── README-CN.md
│ ├── Manifest.lock
│ ├── NYXImagesKit
│ ├── Categories
│ │ ├── UIImage+Blurring.h
│ │ ├── UIImage+Blurring.m
│ │ ├── UIImage+Enhancing.h
│ │ ├── UIImage+Enhancing.m
│ │ ├── UIImage+Filtering.h
│ │ ├── UIImage+Filtering.m
│ │ ├── UIImage+Masking.h
│ │ ├── UIImage+Masking.m
│ │ ├── UIImage+Reflection.h
│ │ ├── UIImage+Reflection.m
│ │ ├── UIImage+Resizing.h
│ │ ├── UIImage+Resizing.m
│ │ ├── UIImage+Rotating.h
│ │ ├── UIImage+Rotating.m
│ │ ├── UIImage+Saving.h
│ │ ├── UIImage+Saving.m
│ │ ├── UIScrollView+Screenshot.h
│ │ ├── UIScrollView+Screenshot.m
│ │ ├── UIView+Screenshot.h
│ │ └── UIView+Screenshot.m
│ ├── Classes
│ │ ├── NYXProgressiveImageView.h
│ │ └── NYXProgressiveImageView.m
│ ├── Helper
│ │ ├── NYXImagesHelper.h
│ │ ├── NYXImagesHelper.m
│ │ └── NYXImagesKit.h
│ ├── LICENSE.txt
│ └── readme.md
│ ├── Pods.xcodeproj
│ └── project.pbxproj
│ ├── PureLayout
│ ├── LICENSE
│ ├── PureLayout
│ │ └── PureLayout
│ │ │ ├── ALView+PureLayout.h
│ │ │ ├── ALView+PureLayout.m
│ │ │ ├── NSArray+PureLayout.h
│ │ │ ├── NSArray+PureLayout.m
│ │ │ ├── NSLayoutConstraint+PureLayout.h
│ │ │ ├── NSLayoutConstraint+PureLayout.m
│ │ │ ├── PureLayout+Internal.h
│ │ │ ├── PureLayout.h
│ │ │ └── PureLayoutDefines.h
│ └── README.md
│ ├── SDWebImage
│ ├── LICENSE
│ ├── README.md
│ └── SDWebImage
│ │ ├── NSData+ImageContentType.h
│ │ ├── NSData+ImageContentType.m
│ │ ├── NSImage+WebCache.h
│ │ ├── NSImage+WebCache.m
│ │ ├── SDImageCache.h
│ │ ├── SDImageCache.m
│ │ ├── SDImageCacheConfig.h
│ │ ├── SDImageCacheConfig.m
│ │ ├── SDWebImageCompat.h
│ │ ├── SDWebImageCompat.m
│ │ ├── SDWebImageDecoder.h
│ │ ├── SDWebImageDecoder.m
│ │ ├── SDWebImageDownloader.h
│ │ ├── SDWebImageDownloader.m
│ │ ├── SDWebImageDownloaderOperation.h
│ │ ├── SDWebImageDownloaderOperation.m
│ │ ├── SDWebImageManager.h
│ │ ├── SDWebImageManager.m
│ │ ├── SDWebImageOperation.h
│ │ ├── SDWebImagePrefetcher.h
│ │ ├── SDWebImagePrefetcher.m
│ │ ├── UIButton+WebCache.h
│ │ ├── UIButton+WebCache.m
│ │ ├── UIImage+GIF.h
│ │ ├── UIImage+GIF.m
│ │ ├── UIImage+MultiFormat.h
│ │ ├── UIImage+MultiFormat.m
│ │ ├── UIImageView+HighlightedWebCache.h
│ │ ├── UIImageView+HighlightedWebCache.m
│ │ ├── UIImageView+WebCache.h
│ │ ├── UIImageView+WebCache.m
│ │ ├── UIView+WebCache.h
│ │ ├── UIView+WebCache.m
│ │ ├── UIView+WebCacheOperation.h
│ │ └── UIView+WebCacheOperation.m
│ ├── Target Support Files
│ ├── AFNetworking
│ │ ├── AFNetworking-dummy.m
│ │ ├── AFNetworking-prefix.pch
│ │ └── AFNetworking.xcconfig
│ ├── FBRetainCycleDetector
│ │ ├── FBRetainCycleDetector-dummy.m
│ │ ├── FBRetainCycleDetector-prefix.pch
│ │ └── FBRetainCycleDetector.xcconfig
│ ├── FLEX
│ │ ├── FLEX-dummy.m
│ │ ├── FLEX-prefix.pch
│ │ └── FLEX.xcconfig
│ ├── INTULocationManager
│ │ ├── INTULocationManager-dummy.m
│ │ ├── INTULocationManager-prefix.pch
│ │ └── INTULocationManager.xcconfig
│ ├── MBProgressHUD
│ │ ├── MBProgressHUD-dummy.m
│ │ ├── MBProgressHUD-prefix.pch
│ │ └── MBProgressHUD.xcconfig
│ ├── MLeaksFinder
│ │ ├── MLeaksFinder-dummy.m
│ │ ├── MLeaksFinder-prefix.pch
│ │ └── MLeaksFinder.xcconfig
│ ├── NYXImagesKit
│ │ ├── NYXImagesKit-dummy.m
│ │ ├── NYXImagesKit-prefix.pch
│ │ └── NYXImagesKit.xcconfig
│ ├── Pods-FormTableDemo
│ │ ├── Pods-FormTableDemo-acknowledgements.markdown
│ │ ├── Pods-FormTableDemo-acknowledgements.plist
│ │ ├── Pods-FormTableDemo-dummy.m
│ │ ├── Pods-FormTableDemo-frameworks.sh
│ │ ├── Pods-FormTableDemo-resources.sh
│ │ ├── Pods-FormTableDemo.app store.xcconfig
│ │ ├── Pods-FormTableDemo.debug.xcconfig
│ │ └── Pods-FormTableDemo.release.xcconfig
│ ├── PureLayout
│ │ ├── PureLayout-dummy.m
│ │ ├── PureLayout-prefix.pch
│ │ └── PureLayout.xcconfig
│ ├── SDWebImage
│ │ ├── SDWebImage-dummy.m
│ │ ├── SDWebImage-prefix.pch
│ │ └── SDWebImage.xcconfig
│ ├── YYKit
│ │ ├── YYKit-dummy.m
│ │ ├── YYKit-prefix.pch
│ │ └── YYKit.xcconfig
│ └── uicontrol-blocks
│ │ ├── uicontrol-blocks-dummy.m
│ │ ├── uicontrol-blocks-prefix.pch
│ │ └── uicontrol-blocks.xcconfig
│ ├── YYKit
│ ├── LICENSE
│ ├── README.md
│ ├── Vendor
│ │ └── WebP.framework
│ │ │ ├── Headers
│ │ │ ├── config.h
│ │ │ ├── decode.h
│ │ │ ├── demux.h
│ │ │ ├── encode.h
│ │ │ ├── extras.h
│ │ │ ├── format_constants.h
│ │ │ ├── mux.h
│ │ │ ├── mux_types.h
│ │ │ └── types.h
│ │ │ └── WebP
│ └── YYKit
│ │ ├── Base
│ │ ├── Foundation
│ │ │ ├── NSArray+YYAdd.h
│ │ │ ├── NSArray+YYAdd.m
│ │ │ ├── NSBundle+YYAdd.h
│ │ │ ├── NSBundle+YYAdd.m
│ │ │ ├── NSData+YYAdd.h
│ │ │ ├── NSData+YYAdd.m
│ │ │ ├── NSDate+YYAdd.h
│ │ │ ├── NSDate+YYAdd.m
│ │ │ ├── NSDictionary+YYAdd.h
│ │ │ ├── NSDictionary+YYAdd.m
│ │ │ ├── NSKeyedUnarchiver+YYAdd.h
│ │ │ ├── NSKeyedUnarchiver+YYAdd.m
│ │ │ ├── NSNotificationCenter+YYAdd.h
│ │ │ ├── NSNotificationCenter+YYAdd.m
│ │ │ ├── NSNumber+YYAdd.h
│ │ │ ├── NSNumber+YYAdd.m
│ │ │ ├── NSObject+YYAdd.h
│ │ │ ├── NSObject+YYAdd.m
│ │ │ ├── NSObject+YYAddForARC.h
│ │ │ ├── NSObject+YYAddForARC.m
│ │ │ ├── NSObject+YYAddForKVO.h
│ │ │ ├── NSObject+YYAddForKVO.m
│ │ │ ├── NSString+YYAdd.h
│ │ │ ├── NSString+YYAdd.m
│ │ │ ├── NSThread+YYAdd.h
│ │ │ ├── NSThread+YYAdd.m
│ │ │ ├── NSTimer+YYAdd.h
│ │ │ └── NSTimer+YYAdd.m
│ │ ├── Quartz
│ │ │ ├── CALayer+YYAdd.h
│ │ │ ├── CALayer+YYAdd.m
│ │ │ ├── YYCGUtilities.h
│ │ │ └── YYCGUtilities.m
│ │ ├── UIKit
│ │ │ ├── UIApplication+YYAdd.h
│ │ │ ├── UIApplication+YYAdd.m
│ │ │ ├── UIBarButtonItem+YYAdd.h
│ │ │ ├── UIBarButtonItem+YYAdd.m
│ │ │ ├── UIBezierPath+YYAdd.h
│ │ │ ├── UIBezierPath+YYAdd.m
│ │ │ ├── UIColor+YYAdd.h
│ │ │ ├── UIColor+YYAdd.m
│ │ │ ├── UIControl+YYAdd.h
│ │ │ ├── UIControl+YYAdd.m
│ │ │ ├── UIDevice+YYAdd.h
│ │ │ ├── UIDevice+YYAdd.m
│ │ │ ├── UIFont+YYAdd.h
│ │ │ ├── UIFont+YYAdd.m
│ │ │ ├── UIGestureRecognizer+YYAdd.h
│ │ │ ├── UIGestureRecognizer+YYAdd.m
│ │ │ ├── UIImage+YYAdd.h
│ │ │ ├── UIImage+YYAdd.m
│ │ │ ├── UIScreen+YYAdd.h
│ │ │ ├── UIScreen+YYAdd.m
│ │ │ ├── UIScrollView+YYAdd.h
│ │ │ ├── UIScrollView+YYAdd.m
│ │ │ ├── UITableView+YYAdd.h
│ │ │ ├── UITableView+YYAdd.m
│ │ │ ├── UITextField+YYAdd.h
│ │ │ ├── UITextField+YYAdd.m
│ │ │ ├── UIView+YYAdd.h
│ │ │ └── UIView+YYAdd.m
│ │ └── YYKitMacro.h
│ │ ├── Cache
│ │ ├── YYCache.h
│ │ ├── YYCache.m
│ │ ├── YYDiskCache.h
│ │ ├── YYDiskCache.m
│ │ ├── YYKVStorage.h
│ │ ├── YYKVStorage.m
│ │ ├── YYMemoryCache.h
│ │ └── YYMemoryCache.m
│ │ ├── Image
│ │ ├── Categories
│ │ │ ├── CALayer+YYWebImage.h
│ │ │ ├── CALayer+YYWebImage.m
│ │ │ ├── MKAnnotationView+YYWebImage.h
│ │ │ ├── MKAnnotationView+YYWebImage.m
│ │ │ ├── UIButton+YYWebImage.h
│ │ │ ├── UIButton+YYWebImage.m
│ │ │ ├── UIImageView+YYWebImage.h
│ │ │ ├── UIImageView+YYWebImage.m
│ │ │ ├── _YYWebImageSetter.h
│ │ │ └── _YYWebImageSetter.m
│ │ ├── YYAnimatedImageView.h
│ │ ├── YYAnimatedImageView.m
│ │ ├── YYFrameImage.h
│ │ ├── YYFrameImage.m
│ │ ├── YYImage.h
│ │ ├── YYImage.m
│ │ ├── YYImageCache.h
│ │ ├── YYImageCache.m
│ │ ├── YYImageCoder.h
│ │ ├── YYImageCoder.m
│ │ ├── YYSpriteSheetImage.h
│ │ ├── YYSpriteSheetImage.m
│ │ ├── YYWebImageManager.h
│ │ ├── YYWebImageManager.m
│ │ ├── YYWebImageOperation.h
│ │ └── YYWebImageOperation.m
│ │ ├── Model
│ │ ├── NSObject+YYModel.h
│ │ ├── NSObject+YYModel.m
│ │ ├── YYClassInfo.h
│ │ └── YYClassInfo.m
│ │ ├── Text
│ │ ├── Component
│ │ │ ├── YYTextContainerView.h
│ │ │ ├── YYTextContainerView.m
│ │ │ ├── YYTextDebugOption.h
│ │ │ ├── YYTextDebugOption.m
│ │ │ ├── YYTextEffectWindow.h
│ │ │ ├── YYTextEffectWindow.m
│ │ │ ├── YYTextInput.h
│ │ │ ├── YYTextInput.m
│ │ │ ├── YYTextKeyboardManager.h
│ │ │ ├── YYTextKeyboardManager.m
│ │ │ ├── YYTextLayout.h
│ │ │ ├── YYTextLayout.m
│ │ │ ├── YYTextLine.h
│ │ │ ├── YYTextLine.m
│ │ │ ├── YYTextMagnifier.h
│ │ │ ├── YYTextMagnifier.m
│ │ │ ├── YYTextSelectionView.h
│ │ │ └── YYTextSelectionView.m
│ │ ├── String
│ │ │ ├── NSAttributedString+YYText.h
│ │ │ ├── NSAttributedString+YYText.m
│ │ │ ├── NSParagraphStyle+YYText.h
│ │ │ ├── NSParagraphStyle+YYText.m
│ │ │ ├── UIPasteboard+YYText.h
│ │ │ ├── UIPasteboard+YYText.m
│ │ │ ├── YYTextArchiver.h
│ │ │ ├── YYTextArchiver.m
│ │ │ ├── YYTextAttribute.h
│ │ │ ├── YYTextAttribute.m
│ │ │ ├── YYTextParser.h
│ │ │ ├── YYTextParser.m
│ │ │ ├── YYTextRubyAnnotation.h
│ │ │ ├── YYTextRubyAnnotation.m
│ │ │ ├── YYTextRunDelegate.h
│ │ │ ├── YYTextRunDelegate.m
│ │ │ ├── YYTextUtilities.h
│ │ │ └── YYTextUtilities.m
│ │ ├── YYLabel.h
│ │ ├── YYLabel.m
│ │ ├── YYTextView.h
│ │ └── YYTextView.m
│ │ ├── Utility
│ │ ├── YYAsyncLayer.h
│ │ ├── YYAsyncLayer.m
│ │ ├── YYDispatchQueuePool.h
│ │ ├── YYDispatchQueuePool.m
│ │ ├── YYFileHash.h
│ │ ├── YYFileHash.m
│ │ ├── YYGestureRecognizer.h
│ │ ├── YYGestureRecognizer.m
│ │ ├── YYKeychain.h
│ │ ├── YYKeychain.m
│ │ ├── YYReachability.h
│ │ ├── YYReachability.m
│ │ ├── YYSentinel.h
│ │ ├── YYSentinel.m
│ │ ├── YYThreadSafeArray.h
│ │ ├── YYThreadSafeArray.m
│ │ ├── YYThreadSafeDictionary.h
│ │ ├── YYThreadSafeDictionary.m
│ │ ├── YYTimer.h
│ │ ├── YYTimer.m
│ │ ├── YYTransaction.h
│ │ ├── YYTransaction.m
│ │ ├── YYWeakProxy.h
│ │ └── YYWeakProxy.m
│ │ └── YYKit.h
│ └── uicontrol-blocks
│ ├── Classes
│ ├── UIControl+Blocks.h
│ └── UIControl+Blocks.m
│ ├── LICENSE
│ └── README.md
├── LICENSE
└── README.md
/FormTableDemo/FormTableDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata:
--------------------------------------------------------------------------------
1 |
2 |
4 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/FormTableDemo/FormTableDemo.xcworkspace/contents.xcworkspacedata:
--------------------------------------------------------------------------------
1 |
2 |
4 |
6 |
7 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/FormTableDemo/FormTableDemo.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | IDEDidComputeMac32BitWarning
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/FormTableDemo/FormTableDemo/Supporting Files/AppDelegate.h:
--------------------------------------------------------------------------------
1 | //
2 | // AppDelegate.h
3 | // FormTableDemo
4 | //
5 | // Created by mason on 2017/7/13.
6 | //
7 | //
8 |
9 | #import
10 |
11 | @interface AppDelegate : UIResponder
12 |
13 | @property (strong, nonatomic) UIWindow *window;
14 |
15 | @end
16 |
--------------------------------------------------------------------------------
/FormTableDemo/FormTableDemo/Supporting Files/Entitlements.entitlements:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/FormTableDemo/FormTableDemo/Supporting Files/Prefix.pch:
--------------------------------------------------------------------------------
1 | //
2 | // Prefix header for all source files in the 'FormTableDemo' project
3 | //
4 |
5 | #ifdef __OBJC__
6 | @import Foundation;
7 | @import QuartzCore;
8 | #import "AppConfig.h"
9 | #import "GGCommonKit.h"
10 | #import
11 | #import
12 | #import "UIViewController+NavItem.h"
13 | #import "AppDelegate.h"
14 | #import "GGUtil.h"
15 | #import
16 | #endif
17 |
--------------------------------------------------------------------------------
/FormTableDemo/FormTableDemo/Supporting Files/main.m:
--------------------------------------------------------------------------------
1 | //
2 | // main.m
3 | // FormTableDemo
4 | //
5 | // Created by mason on 2017/7/13.
6 | //
7 | //
8 |
9 | #import "AppDelegate.h"
10 |
11 |
12 | int main(int argc, char *argv[])
13 | {
14 | @autoreleasepool
15 | {
16 | // Create the UIApplication object and initialize the main event loop.
17 | int retVal = UIApplicationMain(argc,
18 | argv,
19 | nil,
20 | NSStringFromClass([AppDelegate class]));
21 |
22 | // NOTE: UIApplicationMain never returns because the application is either sent to the background or is killed. It cannot exit "normally".
23 | return retVal;
24 | }
25 | }
--------------------------------------------------------------------------------
/FormTableDemo/FormTableDemo/Xcconfig/AS.xcconfig:
--------------------------------------------------------------------------------
1 |
2 | #include "./InsideConfig/ASPrivate.xcconfig"
3 | #include "../../Pods/Target Support Files/Pods-$(PRODUCT_NAME)/Pods-$(PRODUCT_NAME).app store.xcconfig"
4 |
5 | APIHost = 0
6 | QiNiuHost = 0
7 | BundleIdentifier = com.company.xxx.iphone
8 | ProductDisplayName = xxxx
--------------------------------------------------------------------------------
/FormTableDemo/FormTableDemo/Xcconfig/InsideConfig/ASPrivate.xcconfig:
--------------------------------------------------------------------------------
1 | //---------Sharekey------
2 | ShareSDKAppKey = e4fe432f1840
3 | ShareSDKAppSecret = 8dd6b9181010bf8dd233515943a6cdb8
4 | SinaWeiboAppKey = 1057003934
5 | SinaWeiboAppSecret = 55a30b4a7cce8b7e86b4ae9cac8a7860
6 | WXAppID = wxeaab839b53d83d74
7 | WXAppSecret = 973664b5bb34d4aa175ab1d0eea1b23a
8 | TencentAppID = 1104966844
9 | TencentAppKey = MoxfdVwviHrsTsvK
10 |
--------------------------------------------------------------------------------
/FormTableDemo/FormTableDemo/Xcconfig/InsideConfig/ProductionPrivate.xcconfig:
--------------------------------------------------------------------------------
1 | //---------Sharekey------
2 | ShareSDKAppKey = e4fe432f1840
3 | ShareSDKAppSecret = 8dd6b9181010bf8dd233515943a6cdb8
4 | SinaWeiboAppKey = 1057003934
5 | SinaWeiboAppSecret = 55a30b4a7cce8b7e86b4ae9cac8a7860
6 | WXAppID = wxeaab839b53d83d74
7 | WXAppSecret = 973664b5bb34d4aa175ab1d0eea1b23a
8 | TencentAppID = 1104966844
9 | TencentAppKey = MoxfdVwviHrsTsvK
10 |
--------------------------------------------------------------------------------
/FormTableDemo/FormTableDemo/Xcconfig/InsideConfig/StagingPrivate.xcconfig:
--------------------------------------------------------------------------------
1 | //---------Sharekey------
2 | ShareSDKAppKey = e4fe432f1840
3 | ShareSDKAppSecret = 8dd6b9181010bf8dd233515943a6cdb8
4 | SinaWeiboAppKey = 1057003934
5 | SinaWeiboAppSecret = 55a30b4a7cce8b7e86b4ae9cac8a7860
6 | WXAppID = wxeaab839b53d83d74
7 | WXAppSecret = 973664b5bb34d4aa175ab1d0eea1b23a
8 | TencentAppID = 1104966844
9 | TencentAppKey = MoxfdVwviHrsTsvK
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/FormTableDemo/FormTableDemo/Xcconfig/ProductionInhouse.xcconfig:
--------------------------------------------------------------------------------
1 |
2 | #include "./InsideConfig/ProductionPrivate.xcconfig"
3 | #include "../../Pods/Target Support Files/Pods-$(PRODUCT_NAME)/Pods-$(PRODUCT_NAME).release.xcconfig"
4 |
5 | APIHost = 0
6 | QiNiuHost = 0
7 | BundleIdentifier = hk.ganguo.xxx
8 | ProductDisplayName = xxxx
--------------------------------------------------------------------------------
/FormTableDemo/FormTableDemo/Xcconfig/Staging.xcconfig:
--------------------------------------------------------------------------------
1 | #include "./InsideConfig/StagingPrivate.xcconfig"
2 | #include "../../Pods/Target Support Files/Pods-$(PRODUCT_NAME)/Pods-$(PRODUCT_NAME).debug.xcconfig"
3 |
4 | APIHost = 120.25.58.158:8088
5 | QiNiuHost = 0
6 | BundleIdentifier = hk.ganguo.xxx.staging
7 | ProductDisplayName = xxxx
8 |
9 |
--------------------------------------------------------------------------------
/FormTableDemo/FormTableDemo/app/controllers/FTFormViewController.h:
--------------------------------------------------------------------------------
1 | //
2 | // FTFormViewController.h
3 | // FormTableDemo
4 | //
5 | // Created by mason on 2017/7/13.
6 | //
7 | //
8 |
9 | #import
10 |
11 | @interface FTFormViewController : UIViewController
12 |
13 | @end
14 |
--------------------------------------------------------------------------------
/FormTableDemo/FormTableDemo/app/controllers/FTHomeViewController.h:
--------------------------------------------------------------------------------
1 | //
2 | // FTHomeViewController.h
3 | // FormTableDemo
4 | //
5 | // Created by mason on 2017/7/13.
6 | //
7 | //
8 |
9 | #import
10 |
11 | @interface FTHomeViewController : UIViewController
12 |
13 | @end
14 |
--------------------------------------------------------------------------------
/FormTableDemo/FormTableDemo/app/controllers/FTHomeViewController.m:
--------------------------------------------------------------------------------
1 | //
2 | // FTHomeViewController.m
3 | // FormTableDemo
4 | //
5 | // Created by mason on 2017/7/13.
6 | //
7 | //
8 |
9 | #import "FTHomeViewController.h"
10 | #import "FTFormViewController.h"
11 |
12 | @interface FTHomeViewController ()
13 |
14 | @end
15 |
16 | @implementation FTHomeViewController
17 |
18 | - (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
19 | {
20 | self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
21 | if (self) {
22 | }
23 | return self;
24 | }
25 |
26 | - (void)viewDidLoad
27 | {
28 | [super viewDidLoad];
29 | }
30 |
31 | - (IBAction)formAction:(UIButton *)sender {
32 | FTFormViewController *homeVC = [FTFormViewController create];
33 |
34 | [self.navigationController pushViewController:homeVC animated:YES];
35 | }
36 |
37 |
38 |
39 | @end
40 |
--------------------------------------------------------------------------------
/FormTableDemo/FormTableDemo/app/modules/common/FTUtil.h:
--------------------------------------------------------------------------------
1 | //
2 | // FTUtil.h
3 | // FormTableDemo
4 | //
5 | // Created by mason on 2018/8/19.
6 | //
7 |
8 | #import
9 |
10 | @interface FTUtil : NSObject
11 |
12 | + (NSArray *)readLocalFileWithName:(NSString *)name fileType:(NSString *)fileType;
13 |
14 | @end
15 |
--------------------------------------------------------------------------------
/FormTableDemo/FormTableDemo/app/modules/common/FTUtil.m:
--------------------------------------------------------------------------------
1 | //
2 | // FTUtil.m
3 | // FormTableDemo
4 | //
5 | // Created by mason on 2018/8/19.
6 | //
7 |
8 | #import "FTUtil.h"
9 |
10 | @implementation FTUtil
11 |
12 | + (NSArray *)readLocalFileWithName:(NSString *)name fileType:(NSString *)fileType{
13 | // 获取文件路径
14 | NSString *path = [[NSBundle mainBundle] pathForResource:name ofType:fileType];
15 | // 将文件数据化
16 | NSData *data = [[NSData alloc] initWithContentsOfFile:path];
17 | // 对数据进行JSON格式化并返回字典形式
18 | return [NSJSONSerialization JSONObjectWithData:data options:kNilOptions error:nil];
19 | }
20 |
21 | @end
22 |
--------------------------------------------------------------------------------
/FormTableDemo/FormTableDemo/app/views/form/FTFormItemCollectionViewCell.h:
--------------------------------------------------------------------------------
1 | //
2 | // FTFormItemCollectionViewCell.h
3 | // FormTableDemo
4 | //
5 | // Created by mason on 2017/7/13.
6 | //
7 | //
8 |
9 | #import
10 |
11 | @interface FTFormItemCollectionViewCell : UICollectionViewCell
12 |
13 | /** 文本 */
14 | @property (strong, nonatomic) UILabel *titleLabel;
15 |
16 | /** 图标 */
17 | @property (strong, nonatomic) UIImageView *iconImageView;
18 |
19 |
20 | @end
21 |
--------------------------------------------------------------------------------
/FormTableDemo/FormTableDemo/app/views/form/FTFormTableViewCell.h:
--------------------------------------------------------------------------------
1 | //
2 | // FTFormTableViewCell.h
3 | // FormTableDemo
4 | //
5 | // Created by mason on 2017/7/13.
6 | //
7 | //
8 |
9 | #import
10 | #import "FTFormModel.h"
11 |
12 | #define kFormTitle @"kFormTitle"
13 | #define kFormIndex @"kFormIndex"
14 | #define kFormItemArray @"kFormItemArray"
15 | #define kClickFormItemNotification @"kClickFormItemNotification"
16 |
17 |
18 | @interface FTFormTableViewCell : UITableViewCell
19 |
20 | /** <##> */
21 | @property (strong, nonatomic) FTFormModel*formModel;
22 |
23 | @end
24 |
--------------------------------------------------------------------------------
/FormTableDemo/FormTableDemo/app/views/form/FTFormView.h:
--------------------------------------------------------------------------------
1 | //
2 | // FTFormView.h
3 | // FormTableDemo
4 | //
5 | // Created by mason on 2017/7/13.
6 | //
7 | //
8 |
9 | #import
10 | #import "FTFormModel.h"
11 |
12 | @interface FTFormView : UIView
13 |
14 | /** 表格数据 */
15 | @property (strong, nonatomic) NSArray *formModelArray;
16 |
17 | @end
18 |
--------------------------------------------------------------------------------
/FormTableDemo/FormTableDemo/config/APIAddress.h:
--------------------------------------------------------------------------------
1 | //
2 | // APIAddress.h
3 | // FormTableDemo
4 | //
5 | // Created by mason on 2017/7/13.
6 | //
7 | //
8 |
9 | #define API_HOST [NSString infoByKey:@"APIHost" NeedEbg:NO]
10 |
11 |
12 |
--------------------------------------------------------------------------------
/FormTableDemo/FormTableDemo/images.xcassets/LaunchImage.launchimage/3.5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hmx101607/FormTable/fd987d5a1ca8de6a67f6ba391ff766ae14bc80dc/FormTableDemo/FormTableDemo/images.xcassets/LaunchImage.launchimage/3.5.png
--------------------------------------------------------------------------------
/FormTableDemo/FormTableDemo/images.xcassets/LaunchImage.launchimage/4.7.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hmx101607/FormTable/fd987d5a1ca8de6a67f6ba391ff766ae14bc80dc/FormTableDemo/FormTableDemo/images.xcassets/LaunchImage.launchimage/4.7.png
--------------------------------------------------------------------------------
/FormTableDemo/FormTableDemo/images.xcassets/LaunchImage.launchimage/4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hmx101607/FormTable/fd987d5a1ca8de6a67f6ba391ff766ae14bc80dc/FormTableDemo/FormTableDemo/images.xcassets/LaunchImage.launchimage/4.png
--------------------------------------------------------------------------------
/FormTableDemo/FormTableDemo/images.xcassets/LaunchImage.launchimage/5.5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hmx101607/FormTable/fd987d5a1ca8de6a67f6ba391ff766ae14bc80dc/FormTableDemo/FormTableDemo/images.xcassets/LaunchImage.launchimage/5.5.png
--------------------------------------------------------------------------------
/FormTableDemo/FormTableDemo/vendors/GGCommonKit/Extensions/NSObject+AutoDescription.h:
--------------------------------------------------------------------------------
1 | //
2 | // NSObject+AutoDescription.h
3 | // GGCommonKit
4 | //
5 | // Created by Ron on 14-3-22.
6 | // Copyright (c) 2014年 HGG. All rights reserved.
7 | //
8 |
9 | #import
10 |
11 | // Description based on Reflection, Format: [ClassName {prop1 = val1; prop2 = val2; }]., SuperClass' properties included (until NSObject).
12 | @interface NSObject(AutoDescription)
13 |
14 | // Reflects about self.
15 | - (NSString *) autoDescription; // can be in real description or somewhere else
16 |
17 | @end
18 |
19 | /* Usage:
20 |
21 | // Somewhere in AnyObject
22 | - (NSString *)description {
23 | return [self autoDescription];
24 | }
25 |
26 | and: NSLog(@"My AnyObject: %@", anyObject);
27 |
28 | Or Just: NSLog(@"My AnyObject: %@", [anyObject autoDescription]);
29 |
30 | */
--------------------------------------------------------------------------------
/FormTableDemo/FormTableDemo/vendors/GGCommonKit/Extensions/UIButton+ActivityIndicatorView.h:
--------------------------------------------------------------------------------
1 | //
2 | // UIButton+ActivityIndicatorView.h
3 | // GGCommonKit
4 | //
5 | // Created by Ron on 14-3-22.
6 | // Copyright (c) 2014年 HGG. All rights reserved.
7 | //
8 |
9 | #import
10 |
11 | @interface UIButton (ActivityIndicatorView)
12 |
13 | - (void)startAnimating;
14 | - (void)stopAnimating;
15 |
16 | @end
17 |
--------------------------------------------------------------------------------
/FormTableDemo/FormTableDemo/vendors/GGCommonKit/Extensions/UILabel+FormattedText.h:
--------------------------------------------------------------------------------
1 | //
2 | // UILabel+FormattedText.h
3 | // GGCommonKit
4 | //
5 | // Created by Ron on 14-3-22.
6 | // Copyright (c) 2014年 HGG. All rights reserved.
7 | //
8 |
9 | #import
10 |
11 | @interface UILabel (FormattedText)
12 |
13 | - (void)addAttributes:(NSDictionary *)attributes range:(NSRange)range;
14 | - (void)setTextColor:(UIColor *)textColor range:(NSRange)range;
15 | - (void)setFont:(UIFont *)font range:(NSRange)range;
16 | - (void)setLineSpace:(CGFloat)space;
17 |
18 | - (CGFloat)contentHeight NS_AVAILABLE_IOS(7_0);
19 |
20 | @end
21 |
--------------------------------------------------------------------------------
/FormTableDemo/FormTableDemo/vendors/GGCommonKit/Extensions/UIStoryboard+Addition.h:
--------------------------------------------------------------------------------
1 | //
2 | // UIStoryboard+Addition.h
3 | // GGCommonKit
4 | //
5 | // Created by Ron on 14-3-22.
6 | // Copyright (c) 2014年 HGG. All rights reserved.
7 | //
8 |
9 | #import
10 |
11 | @interface UIStoryboard(Addition)
12 |
13 | + (UIStoryboard*)fromName:(NSString*)name;
14 |
15 | @end
16 |
--------------------------------------------------------------------------------
/FormTableDemo/FormTableDemo/vendors/GGCommonKit/Extensions/UIStoryboard+Addition.m:
--------------------------------------------------------------------------------
1 | //
2 | // UIStoryboard+Addition.m
3 | // YouYanChuApp
4 | //
5 | // Created by Ron on 13-12-31.
6 | // Copyright (c) 2013年 HGG. All rights reserved.
7 | //
8 |
9 | #import "UIStoryboard+Addition.h"
10 |
11 | @implementation UIStoryboard(Addition)
12 |
13 | + (UIStoryboard*)fromName:(NSString*)name
14 | {
15 | return [UIStoryboard storyboardWithName:name bundle:[NSBundle mainBundle]];
16 | }
17 |
18 | @end
19 |
--------------------------------------------------------------------------------
/FormTableDemo/FormTableDemo/vendors/GGCommonKit/Extensions/UITableViewCell+Utils.h:
--------------------------------------------------------------------------------
1 | //
2 | // UITableViewCell+Utils.h
3 | // GGCommonKit
4 | //
5 | // Created by Ron on 11/3/15.
6 | // Copyright (c) 2015 HGG. All rights reserved.
7 | //
8 |
9 | #import
10 |
11 | @interface UITableViewCell(Utils)
12 |
13 | + (NSString*)reuseIdentifier;
14 |
15 | + (UINib *)nib;
16 |
17 | @end
18 |
--------------------------------------------------------------------------------
/FormTableDemo/FormTableDemo/vendors/GGCommonKit/Extensions/UITableViewCell+Utils.m:
--------------------------------------------------------------------------------
1 | //
2 | // UITableViewCell+Utils.m
3 | // GGCommonKit
4 | //
5 | // Created by Ron on 11/3/15.
6 | // Copyright (c) 2015 HGG. All rights reserved.
7 | //
8 |
9 | #import "UITableViewCell+Utils.h"
10 |
11 | @implementation UITableViewCell(Utils)
12 |
13 | + (NSString*)reuseIdentifier{
14 | return NSStringFromClass([self class]);
15 | }
16 |
17 | + (UINib *)nib{
18 | NSString *xibName = NSStringFromClass([self class]);
19 | return [UINib nibWithNibName:xibName bundle:[NSBundle mainBundle]];
20 | }
21 |
22 | @end
23 |
--------------------------------------------------------------------------------
/FormTableDemo/FormTableDemo/vendors/GGCommonKit/Extensions/UIView+Create.h:
--------------------------------------------------------------------------------
1 | //
2 | // UIView+Create.h
3 | // GGCommonKit
4 | //
5 | // Created by Ron on 14-3-22.
6 | // Copyright (c) 2014年 HGG. All rights reserved.
7 | //
8 |
9 | #import
10 | #import
11 |
12 | @interface UIView(Create)
13 |
14 | /**
15 | * create From Nib method
16 | *
17 | */
18 | + (id)loadFromNib;
19 |
20 | @end
21 |
--------------------------------------------------------------------------------
/FormTableDemo/FormTableDemo/vendors/GGCommonKit/Extensions/UIView+Create.m:
--------------------------------------------------------------------------------
1 | //
2 | // UIView+Create.m
3 | // NissanApp
4 | //
5 | // Created by Ron on 14-3-22.
6 | // Copyright (c) 2014年 HGG. All rights reserved.
7 | //
8 |
9 | #import "UIView+Create.h"
10 |
11 | @implementation UIView(Create)
12 |
13 | + (id)loadFromNib
14 | {
15 | NSString *xibName = NSStringFromClass([self class]);
16 | return [[[NSBundle mainBundle] loadNibNamed:xibName owner:nil options:nil] firstObject];
17 |
18 | }
19 |
20 | @end
21 |
--------------------------------------------------------------------------------
/FormTableDemo/FormTableDemo/vendors/GGCommonKit/Extensions/UIView+LayoutConstraintHelper.h:
--------------------------------------------------------------------------------
1 | //
2 | // UIView+LayoutConstraintHelper.h
3 | // GGCommonKit
4 | //
5 | // Created by Ron on 9/5/14.
6 | // Copyright (c) 2014 HGG. All rights reserved.
7 | //
8 |
9 | #import
10 |
11 | @interface UIView (LayoutConstraintHelper)
12 |
13 | - (NSLayoutConstraint*)widthConstraint;
14 |
15 | - (NSLayoutConstraint*)heightConstraint;
16 |
17 | @end
18 |
--------------------------------------------------------------------------------
/FormTableDemo/FormTableDemo/vendors/GGCommonKit/Extensions/UIViewController+Create.h:
--------------------------------------------------------------------------------
1 | //
2 | // UIViewController+Create.h
3 | // GGCommonKit
4 | //
5 | // Created by Ron on 14-2-24.
6 | // Copyright (c) 2014年 HGG. All rights reserved.
7 | //
8 |
9 | #import
10 | #import
11 |
12 | @interface UIViewController(Create)
13 |
14 | + (id)create;
15 |
16 | + (id)createFromStoryboardName:(NSString *)name withIdentifier:(NSString *)identifier;
17 |
18 | @end
19 |
--------------------------------------------------------------------------------
/FormTableDemo/FormTableDemo/vendors/GGCommonKit/Util/AutorotateNavigationController.h:
--------------------------------------------------------------------------------
1 | //
2 | // AutorotateNavigationController.h
3 | // GGCommonKit
4 | //
5 | // Created by Ron on 14-3-22.
6 | // Copyright (c) 2014年 HGG. All rights reserved.
7 | //
8 |
9 | #import
10 | #import "GGNavigationController.h"
11 |
12 | @interface AutorotateNavigationController : GGNavigationController
13 |
14 | @end
15 |
--------------------------------------------------------------------------------
/FormTableDemo/FormTableDemo/vendors/GGCommonKit/Util/GGImagePickerHelper.h:
--------------------------------------------------------------------------------
1 | //
2 | // GGImagePickerHelper.h
3 | // GGCommonKit
4 | //
5 | // Created by Loong Lam on 15/4/15.
6 | //
7 | //
8 |
9 | #import
10 | #import
11 |
12 | typedef void(^imagePickerBlock)(UIImage *image);
13 |
14 |
15 | @interface GGImagePickerHelper : NSObject
16 |
17 | @property (nonatomic, assign) BOOL shouldSavePhoto;//调用相机时是否保存拍摄的照片
18 | @property (nonatomic, assign) BOOL allowsEditing;
19 | @property (nonatomic, strong) imagePickerBlock finishPickingImageBlock;
20 |
21 | - (void)showImagePickerWithSourceType:(UIImagePickerControllerSourceType)sourceType allowsEditing:(BOOL)allowsEditing finishPickingImageBlock:(imagePickerBlock) block;
22 |
23 | + (GGImagePickerHelper *)sharedInstance;
24 |
25 | @end
26 |
--------------------------------------------------------------------------------
/FormTableDemo/FormTableDemo/vendors/GGCommonKit/Util/GGNavigationController.h:
--------------------------------------------------------------------------------
1 | //
2 | // GGNavigationController.h
3 | // GGCommonKit
4 | //
5 | // Created by Loong on 14-7-8.
6 | // Copyright (c) 2014年 GG. All rights reserved.
7 | //
8 |
9 | #import
10 |
11 | @interface GGNavigationController : UINavigationController
12 |
13 | @end
14 |
--------------------------------------------------------------------------------
/FormTableDemo/FormTableDemo/vendors/GGCommonKit/Util/PortraitNavigationController.h:
--------------------------------------------------------------------------------
1 | //
2 | // PortraitNavigationController.h
3 | // GGCommonKit
4 | //
5 | // Created by Ron on 14-3-22.
6 | // Copyright (c) 2014年 HGG. All rights reserved.
7 | //
8 |
9 | #import
10 |
11 | @interface PortraitNavigationController : UINavigationController
12 |
13 | @end
14 |
--------------------------------------------------------------------------------
/FormTableDemo/Podfile:
--------------------------------------------------------------------------------
1 | platform :ios, '8.0'
2 | inhibit_all_warnings!
3 |
4 | target 'FormTableDemo' do
5 |
6 | pod 'AFNetworking'
7 | pod 'PureLayout'
8 | pod 'FLEX'
9 | pod 'NYXImagesKit'
10 | pod 'MBProgressHUD'
11 | pod 'SDWebImage'
12 | pod 'uicontrol-blocks'
13 | pod 'INTULocationManager'
14 | pod 'YYKit'
15 | pod 'MLeaksFinder'
16 |
17 |
18 | end
19 |
20 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/FBRetainCycleDetector/FBRetainCycleDetector/Associations/Internal/FBAssociationManager+Internal.h:
--------------------------------------------------------------------------------
1 | /**
2 | * Copyright (c) 2016-present, Facebook, Inc.
3 | * All rights reserved.
4 | *
5 | * This source code is licensed under the BSD-style license found in the
6 | * LICENSE file in the root directory of this source tree. An additional grant
7 | * of patent rights can be found in the PATENTS file in the same directory.
8 | */
9 |
10 | #import "FBAssociationManager.h"
11 | #import "FBRetainCycleDetector.h"
12 |
13 | #if _INTERNAL_RCD_ENABLED
14 |
15 | namespace FB { namespace AssociationManager {
16 |
17 | void _threadUnsafeResetAssociationAtKey(id object, void *key);
18 | void _threadUnsafeSetStrongAssociation(id object, void *key, id value);
19 | void _threadUnsafeRemoveAssociations(id object);
20 |
21 | NSArray *associations(id object);
22 |
23 | } }
24 |
25 | #endif
26 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/FBRetainCycleDetector/FBRetainCycleDetector/Detector/FBRetainCycleDetector+Internal.h:
--------------------------------------------------------------------------------
1 | /**
2 | * Copyright (c) 2016-present, Facebook, Inc.
3 | * All rights reserved.
4 | *
5 | * This source code is licensed under the BSD-style license found in the
6 | * LICENSE file in the root directory of this source tree. An additional grant
7 | * of patent rights can be found in the PATENTS file in the same directory.
8 | */
9 |
10 | #import "FBRetainCycleDetector.h"
11 |
12 | @interface FBRetainCycleDetector ()
13 |
14 | // Unit tests
15 | - (NSArray *)_shiftToUnifiedCycle:(NSArray *)array;
16 |
17 | @end
18 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/FBRetainCycleDetector/FBRetainCycleDetector/Graph/FBObjectiveCBlock.h:
--------------------------------------------------------------------------------
1 | /**
2 | * Copyright (c) 2016-present, Facebook, Inc.
3 | * All rights reserved.
4 | *
5 | * This source code is licensed under the BSD-style license found in the
6 | * LICENSE file in the root directory of this source tree. An additional grant
7 | * of patent rights can be found in the PATENTS file in the same directory.
8 | */
9 |
10 | #import
11 |
12 | #import "FBObjectiveCGraphElement.h"
13 |
14 | @class FBGraphEdgeFilterProvider;
15 |
16 | /**
17 | Object Graph element representing block.
18 | */
19 | @interface FBObjectiveCBlock : FBObjectiveCGraphElement
20 | @end
21 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/FBRetainCycleDetector/FBRetainCycleDetector/Graph/FBObjectiveCObject.h:
--------------------------------------------------------------------------------
1 | /**
2 | * Copyright (c) 2016-present, Facebook, Inc.
3 | * All rights reserved.
4 | *
5 | * This source code is licensed under the BSD-style license found in the
6 | * LICENSE file in the root directory of this source tree. An additional grant
7 | * of patent rights can be found in the PATENTS file in the same directory.
8 | */
9 |
10 | #import
11 |
12 | #import "FBObjectiveCGraphElement.h"
13 |
14 | @class FBGraphEdgeFilterProvider;
15 |
16 | /**
17 | FBObjectiveCGraphElement specialization that can gather all references kept in ivars, as part of collection
18 | etc.
19 | */
20 | @interface FBObjectiveCObject : FBObjectiveCGraphElement
21 | @end
22 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/FBRetainCycleDetector/FBRetainCycleDetector/Graph/Internal/FBObjectiveCGraphElement+Internal.h:
--------------------------------------------------------------------------------
1 | /**
2 | * Copyright (c) 2016-present, Facebook, Inc.
3 | * All rights reserved.
4 | *
5 | * This source code is licensed under the BSD-style license found in the
6 | * LICENSE file in the root directory of this source tree. An additional grant
7 | * of patent rights can be found in the PATENTS file in the same directory.
8 | */
9 |
10 | #import
11 |
12 | #import "FBObjectiveCGraphElement.h"
13 |
14 | @interface FBObjectiveCGraphElement ()
15 |
16 | - (instancetype)initWithObject:(id)object;
17 |
18 | @end
19 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/FBRetainCycleDetector/FBRetainCycleDetector/Graph/Specialization/FBObjectiveCNSCFTimer.h:
--------------------------------------------------------------------------------
1 | /**
2 | * Copyright (c) 2016-present, Facebook, Inc.
3 | * All rights reserved.
4 | *
5 | * This source code is licensed under the BSD-style license found in the
6 | * LICENSE file in the root directory of this source tree. An additional grant
7 | * of patent rights can be found in the PATENTS file in the same directory.
8 | */
9 |
10 | #import
11 |
12 | #import "FBObjectiveCObject.h"
13 |
14 | /**
15 | Specialization of FBObjectiveCObject for NSTimer.
16 | Standard methods that FBObjectiveCObject uses will not fetch us all objects retained by NSTimer.
17 | One good example is target of NSTimer.
18 | */
19 | @interface FBObjectiveCNSCFTimer : FBObjectiveCObject
20 | @end
21 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/FBRetainCycleDetector/FBRetainCycleDetector/Layout/Blocks/FBBlockStrongLayout.h:
--------------------------------------------------------------------------------
1 | /**
2 | * Copyright (c) 2016-present, Facebook, Inc.
3 | * All rights reserved.
4 | *
5 | * This source code is licensed under the BSD-style license found in the
6 | * LICENSE file in the root directory of this source tree. An additional grant
7 | * of patent rights can be found in the PATENTS file in the same directory.
8 | */
9 |
10 | #import
11 |
12 | #ifdef __cplusplus
13 | extern "C" {
14 | #endif
15 |
16 | /**
17 | Returns an array of id objects that will have only those references
18 | that are retained by block.
19 | */
20 | NSArray *_Nullable FBGetBlockStrongReferences(void *_Nonnull block);
21 |
22 | BOOL FBObjectIsBlock(void *_Nullable object);
23 |
24 | #ifdef __cplusplus
25 | }
26 | #endif
27 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/FBRetainCycleDetector/FBRetainCycleDetector/Layout/Classes/FBClassStrongLayoutHelpers.m:
--------------------------------------------------------------------------------
1 | /**
2 | * Copyright (c) 2016-present, Facebook, Inc.
3 | * All rights reserved.
4 | *
5 | * This source code is licensed under the BSD-style license found in the
6 | * LICENSE file in the root directory of this source tree. An additional grant
7 | * of patent rights can be found in the PATENTS file in the same directory.
8 | */
9 |
10 | #if __has_feature(objc_arc)
11 | #error This file must be compiled with MRR. Use -fno-objc-arc flag.
12 | #endif
13 |
14 | #import "FBClassStrongLayoutHelpers.h"
15 |
16 | id FBExtractObjectByOffset(id obj, NSUInteger index) {
17 | id *idx = (id *)((uintptr_t)obj + (index * sizeof(void *)));
18 |
19 | return *idx;
20 | }
21 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/FLEX/Classes/Editing/ArgumentInputViews/FLEXArgumentInputColorView.h:
--------------------------------------------------------------------------------
1 | //
2 | // FLEXArgumentInputColorView.h
3 | // Flipboard
4 | //
5 | // Created by Ryan Olson on 6/30/14.
6 | // Copyright (c) 2014 Flipboard. All rights reserved.
7 | //
8 |
9 | #import "FLEXArgumentInputView.h"
10 |
11 | @interface FLEXArgumentInputColorView : FLEXArgumentInputView
12 |
13 | @end
14 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/FLEX/Classes/Editing/ArgumentInputViews/FLEXArgumentInputDateView.h:
--------------------------------------------------------------------------------
1 | //
2 | // FLEXArgumentInputDataView.h
3 | // Flipboard
4 | //
5 | // Created by Daniel Rodriguez Troitino on 2/14/15.
6 | // Copyright (c) 2015 Flipboard. All rights reserved.
7 | //
8 |
9 | #import "FLEXArgumentInputView.h"
10 |
11 | @interface FLEXArgumentInputDateView : FLEXArgumentInputView
12 |
13 | @end
14 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/FLEX/Classes/Editing/ArgumentInputViews/FLEXArgumentInputFontView.h:
--------------------------------------------------------------------------------
1 | //
2 | // FLEXArgumentInputFontView.h
3 | // Flipboard
4 | //
5 | // Created by Ryan Olson on 6/28/14.
6 | // Copyright (c) 2014 Flipboard. All rights reserved.
7 | //
8 |
9 | #import "FLEXArgumentInputView.h"
10 |
11 | @interface FLEXArgumentInputFontView : FLEXArgumentInputView
12 |
13 | @end
14 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/FLEX/Classes/Editing/ArgumentInputViews/FLEXArgumentInputFontsPickerView.h:
--------------------------------------------------------------------------------
1 | //
2 | // FLEXArgumentInputFontsPickerView.h
3 | // UICatalog
4 | //
5 | // Created by 啟倫 陳 on 2014/7/27.
6 | // Copyright (c) 2014年 f. All rights reserved.
7 | //
8 |
9 | #import "FLEXArgumentInputTextView.h"
10 |
11 | @interface FLEXArgumentInputFontsPickerView : FLEXArgumentInputTextView
12 | @end
13 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/FLEX/Classes/Editing/ArgumentInputViews/FLEXArgumentInputJSONObjectView.h:
--------------------------------------------------------------------------------
1 | //
2 | // FLEXArgumentInputJSONObjectView.h
3 | // Flipboard
4 | //
5 | // Created by Ryan Olson on 6/15/14.
6 | // Copyright (c) 2014 Flipboard. All rights reserved.
7 | //
8 |
9 | #import "FLEXArgumentInputTextView.h"
10 |
11 | @interface FLEXArgumentInputJSONObjectView : FLEXArgumentInputTextView
12 |
13 | @end
14 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/FLEX/Classes/Editing/ArgumentInputViews/FLEXArgumentInputNotSupportedView.h:
--------------------------------------------------------------------------------
1 | //
2 | // FLEXArgumentInputNotSupportedView.h
3 | // Flipboard
4 | //
5 | // Created by Ryan Olson on 6/18/14.
6 | // Copyright (c) 2014 Flipboard. All rights reserved.
7 | //
8 |
9 | #import "FLEXArgumentInputTextView.h"
10 |
11 | @interface FLEXArgumentInputNotSupportedView : FLEXArgumentInputTextView
12 |
13 | @end
14 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/FLEX/Classes/Editing/ArgumentInputViews/FLEXArgumentInputNotSupportedView.m:
--------------------------------------------------------------------------------
1 | //
2 | // FLEXArgumentInputNotSupportedView.m
3 | // Flipboard
4 | //
5 | // Created by Ryan Olson on 6/18/14.
6 | // Copyright (c) 2014 Flipboard. All rights reserved.
7 | //
8 |
9 | #import "FLEXArgumentInputNotSupportedView.h"
10 |
11 | @implementation FLEXArgumentInputNotSupportedView
12 |
13 | - (instancetype)initWithArgumentTypeEncoding:(const char *)typeEncoding
14 | {
15 | self = [super initWithArgumentTypeEncoding:typeEncoding];
16 | if (self) {
17 | self.inputTextView.userInteractionEnabled = NO;
18 | self.inputTextView.backgroundColor = [UIColor colorWithWhite:0.8 alpha:1.0];
19 | self.inputTextView.text = @"nil";
20 | self.targetSize = FLEXArgumentInputViewSizeSmall;
21 | }
22 | return self;
23 | }
24 |
25 | @end
26 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/FLEX/Classes/Editing/ArgumentInputViews/FLEXArgumentInputNumberView.h:
--------------------------------------------------------------------------------
1 | //
2 | // FLEXArgumentInputNumberView.h
3 | // Flipboard
4 | //
5 | // Created by Ryan Olson on 6/15/14.
6 | // Copyright (c) 2014 Flipboard. All rights reserved.
7 | //
8 |
9 | #import "FLEXArgumentInputTextView.h"
10 |
11 | @interface FLEXArgumentInputNumberView : FLEXArgumentInputTextView
12 |
13 | @end
14 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/FLEX/Classes/Editing/ArgumentInputViews/FLEXArgumentInputStringView.h:
--------------------------------------------------------------------------------
1 | //
2 | // FLEXArgumentInputStringView.h
3 | // Flipboard
4 | //
5 | // Created by Ryan Olson on 6/28/14.
6 | // Copyright (c) 2014 Flipboard. All rights reserved.
7 | //
8 |
9 | #import "FLEXArgumentInputTextView.h"
10 |
11 | @interface FLEXArgumentInputStringView : FLEXArgumentInputTextView
12 |
13 | @end
14 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/FLEX/Classes/Editing/ArgumentInputViews/FLEXArgumentInputStructView.h:
--------------------------------------------------------------------------------
1 | //
2 | // FLEXArgumentInputStructView.h
3 | // Flipboard
4 | //
5 | // Created by Ryan Olson on 6/16/14.
6 | // Copyright (c) 2014 Flipboard. All rights reserved.
7 | //
8 |
9 | #import "FLEXArgumentInputView.h"
10 |
11 | @interface FLEXArgumentInputStructView : FLEXArgumentInputView
12 |
13 | @end
14 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/FLEX/Classes/Editing/ArgumentInputViews/FLEXArgumentInputSwitchView.h:
--------------------------------------------------------------------------------
1 | //
2 | // FLEXArgumentInputSwitchView.h
3 | // Flipboard
4 | //
5 | // Created by Ryan Olson on 6/16/14.
6 | // Copyright (c) 2014 Flipboard. All rights reserved.
7 | //
8 |
9 | #import "FLEXArgumentInputView.h"
10 |
11 | @interface FLEXArgumentInputSwitchView : FLEXArgumentInputView
12 |
13 | @end
14 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/FLEX/Classes/Editing/ArgumentInputViews/FLEXArgumentInputTextView.h:
--------------------------------------------------------------------------------
1 | //
2 | // FLEXArgumentInputTextView.h
3 | // FLEXInjected
4 | //
5 | // Created by Ryan Olson on 6/15/14.
6 | //
7 | //
8 |
9 | #import "FLEXArgumentInputView.h"
10 |
11 | @interface FLEXArgumentInputTextView : FLEXArgumentInputView
12 |
13 | // For subclass eyes only
14 |
15 | @property (nonatomic, strong, readonly) UITextView *inputTextView;
16 |
17 | @end
18 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/FLEX/Classes/Editing/FLEXDefaultEditorViewController.h:
--------------------------------------------------------------------------------
1 | //
2 | // FLEXDefaultEditorViewController.h
3 | // Flipboard
4 | //
5 | // Created by Ryan Olson on 5/23/14.
6 | // Copyright (c) 2014 Flipboard. All rights reserved.
7 | //
8 |
9 | #import "FLEXFieldEditorViewController.h"
10 |
11 | @interface FLEXDefaultEditorViewController : FLEXFieldEditorViewController
12 |
13 | - (id)initWithDefaults:(NSUserDefaults *)defaults key:(NSString *)key;
14 |
15 | + (BOOL)canEditDefaultWithValue:(id)currentValue;
16 |
17 | @end
18 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/FLEX/Classes/Editing/FLEXFieldEditorView.h:
--------------------------------------------------------------------------------
1 | //
2 | // FLEXFieldEditorView.h
3 | // Flipboard
4 | //
5 | // Created by Ryan Olson on 5/16/14.
6 | // Copyright (c) 2014 Flipboard. All rights reserved.
7 | //
8 |
9 | #import
10 |
11 | @interface FLEXFieldEditorView : UIView
12 |
13 | @property (nonatomic, copy) NSString *targetDescription;
14 | @property (nonatomic, copy) NSString *fieldDescription;
15 |
16 | @property (nonatomic, strong) NSArray *argumentInputViews;
17 |
18 | @end
19 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/FLEX/Classes/Editing/FLEXIvarEditorViewController.h:
--------------------------------------------------------------------------------
1 | //
2 | // FLEXIvarEditorViewController.h
3 | // Flipboard
4 | //
5 | // Created by Ryan Olson on 5/23/14.
6 | // Copyright (c) 2014 Flipboard. All rights reserved.
7 | //
8 |
9 | #import "FLEXFieldEditorViewController.h"
10 | #import
11 |
12 | @interface FLEXIvarEditorViewController : FLEXFieldEditorViewController
13 |
14 | - (id)initWithTarget:(id)target ivar:(Ivar)ivar;
15 |
16 | + (BOOL)canEditIvar:(Ivar)ivar currentValue:(id)value;
17 |
18 | @end
19 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/FLEX/Classes/Editing/FLEXMethodCallingViewController.h:
--------------------------------------------------------------------------------
1 | //
2 | // FLEXMethodCallingViewController.h
3 | // Flipboard
4 | //
5 | // Created by Ryan Olson on 5/23/14.
6 | // Copyright (c) 2014 Flipboard. All rights reserved.
7 | //
8 |
9 | #import "FLEXFieldEditorViewController.h"
10 | #import
11 |
12 | @interface FLEXMethodCallingViewController : FLEXFieldEditorViewController
13 |
14 | - (id)initWithTarget:(id)target method:(Method)method;
15 |
16 | @end
17 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/FLEX/Classes/Editing/FLEXPropertyEditorViewController.h:
--------------------------------------------------------------------------------
1 | //
2 | // FLEXPropertyEditorViewController.h
3 | // Flipboard
4 | //
5 | // Created by Ryan Olson on 5/20/14.
6 | // Copyright (c) 2014 Flipboard. All rights reserved.
7 | //
8 |
9 | #import "FLEXFieldEditorViewController.h"
10 | #import
11 |
12 | @interface FLEXPropertyEditorViewController : FLEXFieldEditorViewController
13 |
14 | - (id)initWithTarget:(id)target property:(objc_property_t)property;
15 |
16 | + (BOOL)canEditProperty:(objc_property_t)property currentValue:(id)value;
17 |
18 | @end
19 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/FLEX/Classes/ExplorerInterface/FLEXWindow.h:
--------------------------------------------------------------------------------
1 | //
2 | // FLEXWindow.h
3 | // Flipboard
4 | //
5 | // Created by Ryan Olson on 4/13/14.
6 | // Copyright (c) 2014 Flipboard. All rights reserved.
7 | //
8 |
9 | #import
10 |
11 | @protocol FLEXWindowEventDelegate;
12 |
13 | @interface FLEXWindow : UIWindow
14 |
15 | @property (nonatomic, weak) id eventDelegate;
16 |
17 | @end
18 |
19 | @protocol FLEXWindowEventDelegate
20 |
21 | - (BOOL)shouldHandleTouchAtPoint:(CGPoint)pointInWindow;
22 | - (BOOL)canBecomeKeyWindow;
23 |
24 | @end
25 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/FLEX/Classes/FLEX.h:
--------------------------------------------------------------------------------
1 | //
2 | // FLEX.h
3 | // FLEX
4 | //
5 | // Created by Eric Horacek on 7/18/15.
6 | // Copyright (c) 2015 Flipboard. All rights reserved.
7 | //
8 |
9 | #import
10 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/FLEX/Classes/GlobalStateExplorers/DatabaseBrowser/FLEXDatabaseManager.h:
--------------------------------------------------------------------------------
1 | //
2 | // PTDatabaseManager.h
3 | // Derived from:
4 | //
5 | // FMDatabase.h
6 | // FMDB( https://github.com/ccgus/fmdb )
7 | //
8 | // Created by Peng Tao on 15/11/23.
9 | //
10 | // Licensed to Flying Meat Inc. under one or more contributor license agreements.
11 | // See the LICENSE file distributed with this work for the terms under
12 | // which Flying Meat Inc. licenses this file to you.
13 |
14 | #import
15 |
16 | @protocol FLEXDatabaseManager
17 |
18 | @required
19 | - (instancetype)initWithPath:(NSString*)path;
20 |
21 | - (BOOL)open;
22 | - (NSArray *)queryAllTables;
23 | - (NSArray *)queryAllColumnsWithTableName:(NSString *)tableName;
24 | - (NSArray *)queryAllDataWithTableName:(NSString *)tableName;
25 |
26 | @end
27 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/FLEX/Classes/GlobalStateExplorers/DatabaseBrowser/FLEXRealmDatabaseManager.h:
--------------------------------------------------------------------------------
1 | //
2 | // FLEXRealmDatabaseManager.h
3 | // FLEX
4 | //
5 | // Created by Tim Oliver on 28/01/2016.
6 | // Copyright © 2016 Realm. All rights reserved.
7 | //
8 |
9 | #import
10 | #import "FLEXDatabaseManager.h"
11 |
12 | @interface FLEXRealmDatabaseManager : NSObject
13 |
14 | @end
15 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/FLEX/Classes/GlobalStateExplorers/DatabaseBrowser/FLEXSQLiteDatabaseManager.h:
--------------------------------------------------------------------------------
1 | //
2 | // PTDatabaseManager.h
3 | // Derived from:
4 | //
5 | // FMDatabase.h
6 | // FMDB( https://github.com/ccgus/fmdb )
7 | //
8 | // Created by Peng Tao on 15/11/23.
9 | //
10 | // Licensed to Flying Meat Inc. under one or more contributor license agreements.
11 | // See the LICENSE file distributed with this work for the terms under
12 | // which Flying Meat Inc. licenses this file to you.
13 |
14 | #import
15 | #import "FLEXDatabaseManager.h"
16 |
17 | @interface FLEXSQLiteDatabaseManager : NSObject
18 |
19 | @end
20 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/FLEX/Classes/GlobalStateExplorers/DatabaseBrowser/FLEXTableColumnHeader.h:
--------------------------------------------------------------------------------
1 | //
2 | // FLEXTableContentHeaderCell.h
3 | // UICatalog
4 | //
5 | // Created by Peng Tao on 15/11/26.
6 | // Copyright © 2015年 f. All rights reserved.
7 | //
8 |
9 | #import
10 |
11 | typedef NS_ENUM(NSUInteger, FLEXTableColumnHeaderSortType) {
12 | FLEXTableColumnHeaderSortTypeNone = 0,
13 | FLEXTableColumnHeaderSortTypeAsc,
14 | FLEXTableColumnHeaderSortTypeDesc,
15 | };
16 |
17 | @interface FLEXTableColumnHeader : UIView
18 |
19 | @property (nonatomic, strong) UILabel *label;
20 |
21 | - (void)changeSortStatusWithType:(FLEXTableColumnHeaderSortType)type;
22 |
23 | @end
24 |
25 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/FLEX/Classes/GlobalStateExplorers/DatabaseBrowser/FLEXTableContentCell.h:
--------------------------------------------------------------------------------
1 | //
2 | // FLEXTableContentCell.h
3 | // UICatalog
4 | //
5 | // Created by Peng Tao on 15/11/24.
6 | // Copyright © 2015年 f. All rights reserved.
7 | //
8 |
9 | #import
10 |
11 | @class FLEXTableContentCell;
12 | @protocol FLEXTableContentCellDelegate
13 |
14 | @optional
15 | - (void)tableContentCell:(FLEXTableContentCell *)tableView labelDidTapWithText:(NSString *)text;
16 |
17 | @end
18 |
19 | @interface FLEXTableContentCell : UITableViewCell
20 |
21 | @property (nonatomic, strong)NSArray *labels;
22 |
23 | @property (nonatomic, weak) iddelegate;
24 |
25 | + (instancetype)cellWithTableView:(UITableView *)tableView columnNumber:(NSInteger)number;
26 |
27 | @end
28 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/FLEX/Classes/GlobalStateExplorers/DatabaseBrowser/FLEXTableContentViewController.h:
--------------------------------------------------------------------------------
1 | //
2 | // PTTableContentViewController.h
3 | // PTDatabaseReader
4 | //
5 | // Created by Peng Tao on 15/11/23.
6 | // Copyright © 2015年 Peng Tao. All rights reserved.
7 | //
8 |
9 | #import
10 |
11 | @interface FLEXTableContentViewController : UIViewController
12 |
13 | @property (nonatomic, strong) NSArray *columnsArray;
14 | @property (nonatomic, strong) NSArray *contentsArray;
15 |
16 | @end
17 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/FLEX/Classes/GlobalStateExplorers/DatabaseBrowser/FLEXTableLeftCell.h:
--------------------------------------------------------------------------------
1 | //
2 | // FLEXTableLeftCell.h
3 | // UICatalog
4 | //
5 | // Created by Peng Tao on 15/11/24.
6 | // Copyright © 2015年 f. All rights reserved.
7 | //
8 |
9 | #import
10 |
11 | @interface FLEXTableLeftCell : UITableViewCell
12 |
13 | @property (nonatomic, strong) UILabel *titlelabel;
14 |
15 | + (instancetype)cellWithTableView:(UITableView *)tableView;
16 |
17 | @end
18 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/FLEX/Classes/GlobalStateExplorers/DatabaseBrowser/FLEXTableListViewController.h:
--------------------------------------------------------------------------------
1 | //
2 | // PTTableListViewController.h
3 | // PTDatabaseReader
4 | //
5 | // Created by Peng Tao on 15/11/23.
6 | // Copyright © 2015年 Peng Tao. All rights reserved.
7 | //
8 |
9 | #import
10 |
11 | @interface FLEXTableListViewController : UITableViewController
12 |
13 | + (BOOL)supportsExtension:(NSString *)extension;
14 | - (instancetype)initWithPath:(NSString *)path;
15 |
16 | @end
17 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/FLEX/Classes/GlobalStateExplorers/FLEXClassesTableViewController.h:
--------------------------------------------------------------------------------
1 | //
2 | // FLEXClassesTableViewController.h
3 | // Flipboard
4 | //
5 | // Created by Ryan Olson on 2014-05-03.
6 | // Copyright (c) 2014 Flipboard. All rights reserved.
7 | //
8 |
9 | #import
10 |
11 | @interface FLEXClassesTableViewController : UITableViewController
12 |
13 | @property (nonatomic, copy) NSString *binaryImageName;
14 |
15 | @end
16 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/FLEX/Classes/GlobalStateExplorers/FLEXCookiesTableViewController.h:
--------------------------------------------------------------------------------
1 | //
2 | // FLEXCookiesTableViewController.h
3 | // FLEX
4 | //
5 | // Created by Rich Robinson on 19/10/2015.
6 | // Copyright © 2015 Flipboard. All rights reserved.
7 | //
8 |
9 | #import
10 |
11 | @interface FLEXCookiesTableViewController : UITableViewController
12 |
13 | @end
14 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/FLEX/Classes/GlobalStateExplorers/FLEXFileBrowserSearchOperation.h:
--------------------------------------------------------------------------------
1 | //
2 | // FLEXFileBrowserSearchOperation.h
3 | // UICatalog
4 | //
5 | // Created by 啟倫 陳 on 2014/8/4.
6 | // Copyright (c) 2014年 f. All rights reserved.
7 | //
8 |
9 | #import
10 |
11 | @protocol FLEXFileBrowserSearchOperationDelegate;
12 |
13 | @interface FLEXFileBrowserSearchOperation : NSOperation
14 |
15 | @property (nonatomic, weak) id delegate;
16 |
17 | - (id)initWithPath:(NSString *)currentPath searchString:(NSString *)searchString;
18 |
19 | @end
20 |
21 | @protocol FLEXFileBrowserSearchOperationDelegate
22 |
23 | - (void)fileBrowserSearchOperationResult:(NSArray *)searchResult size:(uint64_t)size;
24 |
25 | @end
26 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/FLEX/Classes/GlobalStateExplorers/FLEXFileBrowserTableViewController.h:
--------------------------------------------------------------------------------
1 | //
2 | // FLEXFileBrowserTableViewController.h
3 | // Flipboard
4 | //
5 | // Created by Ryan Olson on 6/9/14.
6 | // Based on previous work by Evan Doll
7 | //
8 |
9 | #import
10 |
11 | #import "FLEXFileBrowserSearchOperation.h"
12 |
13 | @interface FLEXFileBrowserTableViewController : UITableViewController
14 |
15 | - (id)initWithPath:(NSString *)path;
16 |
17 | @end
18 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/FLEX/Classes/GlobalStateExplorers/FLEXInstancesTableViewController.h:
--------------------------------------------------------------------------------
1 | //
2 | // FLEXInstancesTableViewController.h
3 | // Flipboard
4 | //
5 | // Created by Ryan Olson on 5/28/14.
6 | // Copyright (c) 2014 Flipboard. All rights reserved.
7 | //
8 |
9 | #import
10 |
11 | @interface FLEXInstancesTableViewController : UITableViewController
12 |
13 | + (instancetype)instancesTableViewControllerForClassName:(NSString *)className;
14 | + (instancetype)instancesTableViewControllerForInstancesReferencingObject:(id)object;
15 |
16 | @end
17 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/FLEX/Classes/GlobalStateExplorers/FLEXLibrariesTableViewController.h:
--------------------------------------------------------------------------------
1 | //
2 | // FLEXLibrariesTableViewController.h
3 | // Flipboard
4 | //
5 | // Created by Ryan Olson on 2014-05-02.
6 | // Copyright (c) 2014 Flipboard. All rights reserved.
7 | //
8 |
9 | #import
10 |
11 | @interface FLEXLibrariesTableViewController : UITableViewController
12 |
13 | @end
14 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/FLEX/Classes/GlobalStateExplorers/FLEXLiveObjectsTableViewController.h:
--------------------------------------------------------------------------------
1 | //
2 | // FLEXLiveObjectsTableViewController.h
3 | // Flipboard
4 | //
5 | // Created by Ryan Olson on 5/28/14.
6 | // Copyright (c) 2014 Flipboard. All rights reserved.
7 | //
8 |
9 | #import
10 |
11 | @interface FLEXLiveObjectsTableViewController : UITableViewController
12 |
13 | @end
14 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/FLEX/Classes/GlobalStateExplorers/FLEXWebViewController.h:
--------------------------------------------------------------------------------
1 | //
2 | // FLEXWebViewController.m
3 | // Flipboard
4 | //
5 | // Created by Ryan Olson on 6/10/14.
6 | // Copyright (c) 2014 Flipboard. All rights reserved.
7 | //
8 |
9 | #import
10 |
11 | @interface FLEXWebViewController : UIViewController
12 |
13 | - (id)initWithURL:(NSURL *)url;
14 | - (id)initWithText:(NSString *)text;
15 |
16 | + (BOOL)supportsPathExtension:(NSString *)extension;
17 |
18 | @end
19 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/FLEX/Classes/GlobalStateExplorers/SystemLog/FLEXSystemLogMessage.h:
--------------------------------------------------------------------------------
1 | //
2 | // FLEXSystemLogMessage.h
3 | // UICatalog
4 | //
5 | // Created by Ryan Olson on 1/25/15.
6 | // Copyright (c) 2015 f. All rights reserved.
7 | //
8 |
9 | #import
10 | #import
11 |
12 | @interface FLEXSystemLogMessage : NSObject
13 |
14 | + (instancetype)logMessageFromASLMessage:(aslmsg)aslMessage;
15 |
16 | @property (nonatomic, strong) NSDate *date;
17 | @property (nonatomic, copy) NSString *sender;
18 | @property (nonatomic, copy) NSString *messageText;
19 | @property (nonatomic, assign) long long messageID;
20 |
21 | @end
22 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/FLEX/Classes/GlobalStateExplorers/SystemLog/FLEXSystemLogTableViewCell.h:
--------------------------------------------------------------------------------
1 | //
2 | // FLEXSystemLogTableViewCell.h
3 | // UICatalog
4 | //
5 | // Created by Ryan Olson on 1/25/15.
6 | // Copyright (c) 2015 f. All rights reserved.
7 | //
8 |
9 | #import
10 |
11 | @class FLEXSystemLogMessage;
12 |
13 | extern NSString *const kFLEXSystemLogTableViewCellIdentifier;
14 |
15 | @interface FLEXSystemLogTableViewCell : UITableViewCell
16 |
17 | @property (nonatomic, strong) FLEXSystemLogMessage *logMessage;
18 | @property (nonatomic, copy) NSString *highlightedText;
19 |
20 | + (NSString *)displayedTextForLogMessage:(FLEXSystemLogMessage *)logMessage;
21 | + (CGFloat)preferredHeightForLogMessage:(FLEXSystemLogMessage *)logMessage inWidth:(CGFloat)width;
22 |
23 | @end
24 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/FLEX/Classes/GlobalStateExplorers/SystemLog/FLEXSystemLogTableViewController.h:
--------------------------------------------------------------------------------
1 | //
2 | // FLEXSystemLogTableViewController.h
3 | // UICatalog
4 | //
5 | // Created by Ryan Olson on 1/19/15.
6 | // Copyright (c) 2015 f. All rights reserved.
7 | //
8 |
9 | #import
10 |
11 | @interface FLEXSystemLogTableViewController : UITableViewController
12 |
13 | @end
14 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/FLEX/Classes/Manager/FLEXManager+Private.h:
--------------------------------------------------------------------------------
1 | //
2 | // FLEXManager+Private.h
3 | // PebbleApp
4 | //
5 | // Created by Javier Soto on 7/26/14.
6 | // Copyright (c) 2014 Pebble Technology. All rights reserved.
7 | //
8 |
9 | #import "FLEXManager.h"
10 |
11 | @interface FLEXManager ()
12 |
13 | /// An array of FLEXGlobalsTableViewControllerEntry objects that have been registered by the user.
14 | @property (nonatomic, readonly, strong) NSArray *userGlobalEntries;
15 |
16 | @end
17 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/FLEX/Classes/Network/FLEXNetworkCurlLogger.h:
--------------------------------------------------------------------------------
1 | //
2 | // FLEXCurlLogger.h
3 | //
4 | //
5 | // Created by Ji Pei on 07/27/16
6 | //
7 |
8 | #import
9 |
10 | @interface FLEXNetworkCurlLogger : NSObject
11 |
12 | /**
13 | * Generates a cURL command equivalent to the given request.
14 | *
15 | * @param request The request to be translated
16 | */
17 | + (NSString *)curlCommandString:(NSURLRequest *)request;
18 |
19 | @end
20 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/FLEX/Classes/Network/FLEXNetworkHistoryTableViewController.h:
--------------------------------------------------------------------------------
1 | //
2 | // FLEXNetworkHistoryTableViewController.h
3 | // Flipboard
4 | //
5 | // Created by Ryan Olson on 2/8/15.
6 | // Copyright (c) 2015 Flipboard. All rights reserved.
7 | //
8 |
9 | #import
10 |
11 | @interface FLEXNetworkHistoryTableViewController : UITableViewController
12 |
13 | @end
14 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/FLEX/Classes/Network/FLEXNetworkSettingsTableViewController.h:
--------------------------------------------------------------------------------
1 | //
2 | // FLEXNetworkSettingsTableViewController.h
3 | // FLEXInjected
4 | //
5 | // Created by Ryan Olson on 2/20/15.
6 | //
7 | //
8 |
9 | #import
10 |
11 | @interface FLEXNetworkSettingsTableViewController : UITableViewController
12 |
13 | @end
14 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/FLEX/Classes/Network/FLEXNetworkTransactionDetailTableViewController.h:
--------------------------------------------------------------------------------
1 | //
2 | // FLEXNetworkTransactionDetailTableViewController.h
3 | // Flipboard
4 | //
5 | // Created by Ryan Olson on 2/10/15.
6 | // Copyright (c) 2015 Flipboard. All rights reserved.
7 | //
8 |
9 | #import
10 |
11 | @class FLEXNetworkTransaction;
12 |
13 | @interface FLEXNetworkTransactionDetailTableViewController : UITableViewController
14 |
15 | @property (nonatomic, strong) FLEXNetworkTransaction *transaction;
16 |
17 | @end
18 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/FLEX/Classes/Network/FLEXNetworkTransactionTableViewCell.h:
--------------------------------------------------------------------------------
1 | //
2 | // FLEXNetworkTransactionTableViewCell.h
3 | // Flipboard
4 | //
5 | // Created by Ryan Olson on 2/8/15.
6 | // Copyright (c) 2015 Flipboard. All rights reserved.
7 | //
8 |
9 | #import
10 |
11 | extern NSString *const kFLEXNetworkTransactionCellIdentifier;
12 |
13 | @class FLEXNetworkTransaction;
14 |
15 | @interface FLEXNetworkTransactionTableViewCell : UITableViewCell
16 |
17 | @property (nonatomic, strong) FLEXNetworkTransaction *transaction;
18 |
19 | + (CGFloat)preferredCellHeight;
20 |
21 | @end
22 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/FLEX/Classes/ObjectExplorers/FLEXArrayExplorerViewController.h:
--------------------------------------------------------------------------------
1 | //
2 | // FLEXArrayExplorerViewController.h
3 | // Flipboard
4 | //
5 | // Created by Ryan Olson on 5/15/14.
6 | // Copyright (c) 2014 Flipboard. All rights reserved.
7 | //
8 |
9 | #import "FLEXObjectExplorerViewController.h"
10 |
11 | @interface FLEXArrayExplorerViewController : FLEXObjectExplorerViewController
12 |
13 | @end
14 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/FLEX/Classes/ObjectExplorers/FLEXClassExplorerViewController.h:
--------------------------------------------------------------------------------
1 | //
2 | // FLEXClassExplorerViewController.h
3 | // Flipboard
4 | //
5 | // Created by Ryan Olson on 6/18/14.
6 | // Copyright (c) 2014 Flipboard. All rights reserved.
7 | //
8 |
9 | #import "FLEXObjectExplorerViewController.h"
10 |
11 | @interface FLEXClassExplorerViewController : FLEXObjectExplorerViewController
12 |
13 | @end
14 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/FLEX/Classes/ObjectExplorers/FLEXDefaultsExplorerViewController.h:
--------------------------------------------------------------------------------
1 | //
2 | // FLEXDefaultsExplorerViewController.h
3 | // Flipboard
4 | //
5 | // Created by Ryan Olson on 5/23/14.
6 | // Copyright (c) 2014 Flipboard. All rights reserved.
7 | //
8 |
9 | #import "FLEXObjectExplorerViewController.h"
10 |
11 | @interface FLEXDefaultsExplorerViewController : FLEXObjectExplorerViewController
12 |
13 | @end
14 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/FLEX/Classes/ObjectExplorers/FLEXDictionaryExplorerViewController.h:
--------------------------------------------------------------------------------
1 | //
2 | // FLEXDictionaryExplorerViewController.h
3 | // Flipboard
4 | //
5 | // Created by Ryan Olson on 5/16/14.
6 | // Copyright (c) 2014 Flipboard. All rights reserved.
7 | //
8 |
9 | #import "FLEXObjectExplorerViewController.h"
10 |
11 | @interface FLEXDictionaryExplorerViewController : FLEXObjectExplorerViewController
12 |
13 | @end
14 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/FLEX/Classes/ObjectExplorers/FLEXGlobalsTableViewControllerEntry.m:
--------------------------------------------------------------------------------
1 | //
2 | // FLEXGlobalsTableViewControllerEntry.m
3 | // UICatalog
4 | //
5 | // Created by Javier Soto on 7/26/14.
6 | // Copyright (c) 2014 f. All rights reserved.
7 | //
8 |
9 | #import "FLEXGlobalsTableViewControllerEntry.h"
10 |
11 | @implementation FLEXGlobalsTableViewControllerEntry
12 |
13 | + (instancetype)entryWithNameFuture:(FLEXGlobalsTableViewControllerEntryNameFuture)nameFuture viewControllerFuture:(FLEXGlobalsTableViewControllerViewControllerFuture)viewControllerFuture
14 | {
15 | NSParameterAssert(nameFuture);
16 | NSParameterAssert(viewControllerFuture);
17 |
18 | FLEXGlobalsTableViewControllerEntry *entry = [[self alloc] init];
19 | entry->_entryNameFuture = [nameFuture copy];
20 | entry->_viewControllerFuture = [viewControllerFuture copy];
21 |
22 | return entry;
23 | }
24 |
25 | @end
--------------------------------------------------------------------------------
/FormTableDemo/Pods/FLEX/Classes/ObjectExplorers/FLEXImageExplorerViewController.h:
--------------------------------------------------------------------------------
1 | //
2 | // FLEXImageExplorerViewController.h
3 | // Flipboard
4 | //
5 | // Created by Ryan Olson on 6/12/14.
6 | // Copyright (c) 2014 Flipboard. All rights reserved.
7 | //
8 |
9 | #import "FLEXObjectExplorerViewController.h"
10 |
11 | @interface FLEXImageExplorerViewController : FLEXObjectExplorerViewController
12 |
13 | @end
14 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/FLEX/Classes/ObjectExplorers/FLEXLayerExplorerViewController.h:
--------------------------------------------------------------------------------
1 | //
2 | // FLEXLayerExplorerViewController.h
3 | // UICatalog
4 | //
5 | // Created by Ryan Olson on 12/14/14.
6 | // Copyright (c) 2014 f. All rights reserved.
7 | //
8 |
9 | #import "FLEXObjectExplorerViewController.h"
10 |
11 | @interface FLEXLayerExplorerViewController : FLEXObjectExplorerViewController
12 |
13 | @end
14 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/FLEX/Classes/ObjectExplorers/FLEXObjectExplorerFactory.h:
--------------------------------------------------------------------------------
1 | //
2 | // FLEXObjectExplorerFactory.h
3 | // Flipboard
4 | //
5 | // Created by Ryan Olson on 5/15/14.
6 | // Copyright (c) 2014 Flipboard. All rights reserved.
7 | //
8 |
9 | #import
10 |
11 | @class FLEXObjectExplorerViewController;
12 |
13 | @interface FLEXObjectExplorerFactory : NSObject
14 |
15 | + (FLEXObjectExplorerViewController *)explorerViewControllerForObject:(id)object;
16 |
17 | @end
18 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/FLEX/Classes/ObjectExplorers/FLEXSetExplorerViewController.h:
--------------------------------------------------------------------------------
1 | //
2 | // FLEXSetExplorerViewController.h
3 | // Flipboard
4 | //
5 | // Created by Ryan Olson on 5/16/14.
6 | // Copyright (c) 2014 Flipboard. All rights reserved.
7 | //
8 |
9 | #import "FLEXObjectExplorerViewController.h"
10 |
11 | @interface FLEXSetExplorerViewController : FLEXObjectExplorerViewController
12 |
13 | @end
14 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/FLEX/Classes/ObjectExplorers/FLEXViewControllerExplorerViewController.h:
--------------------------------------------------------------------------------
1 | //
2 | // FLEXViewControllerExplorerViewController.h
3 | // Flipboard
4 | //
5 | // Created by Ryan Olson on 6/11/14.
6 | // Copyright (c) 2014 Flipboard. All rights reserved.
7 | //
8 |
9 | #import "FLEXObjectExplorerViewController.h"
10 |
11 | @interface FLEXViewControllerExplorerViewController : FLEXObjectExplorerViewController
12 |
13 | @end
14 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/FLEX/Classes/ObjectExplorers/FLEXViewExplorerViewController.h:
--------------------------------------------------------------------------------
1 | //
2 | // FLEXViewExplorerViewController.h
3 | // Flipboard
4 | //
5 | // Created by Ryan Olson on 6/11/14.
6 | // Copyright (c) 2014 Flipboard. All rights reserved.
7 | //
8 |
9 | #import "FLEXObjectExplorerViewController.h"
10 |
11 | @interface FLEXViewExplorerViewController : FLEXObjectExplorerViewController
12 |
13 | @end
14 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/FLEX/Classes/Toolbar/FLEXToolbarItem.h:
--------------------------------------------------------------------------------
1 | //
2 | // FLEXToolbarItem.h
3 | // Flipboard
4 | //
5 | // Created by Ryan Olson on 4/4/14.
6 | // Copyright (c) 2014 Flipboard. All rights reserved.
7 | //
8 |
9 | #import
10 |
11 | @interface FLEXToolbarItem : UIButton
12 |
13 | + (instancetype)toolbarItemWithTitle:(NSString *)title image:(UIImage *)image;
14 |
15 | + (UIColor *)defaultBackgroundColor;
16 |
17 | @end
18 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/FLEX/Classes/Utility/FLEXHeapEnumerator.h:
--------------------------------------------------------------------------------
1 | //
2 | // FLEXHeapEnumerator.h
3 | // Flipboard
4 | //
5 | // Created by Ryan Olson on 5/28/14.
6 | // Copyright (c) 2014 Flipboard. All rights reserved.
7 | //
8 |
9 | #import
10 |
11 | typedef void (^flex_object_enumeration_block_t)(__unsafe_unretained id object, __unsafe_unretained Class actualClass);
12 |
13 | @interface FLEXHeapEnumerator : NSObject
14 |
15 | + (void)enumerateLiveObjectsUsingBlock:(flex_object_enumeration_block_t)block;
16 |
17 | @end
18 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/FLEX/Classes/Utility/FLEXKeyboardHelpViewController.h:
--------------------------------------------------------------------------------
1 | //
2 | // FLEXKeyboardHelpViewController.h
3 | // UICatalog
4 | //
5 | // Created by Ryan Olson on 9/19/15.
6 | // Copyright © 2015 f. All rights reserved.
7 | //
8 |
9 | #import
10 |
11 | @interface FLEXKeyboardHelpViewController : UIViewController
12 |
13 | @end
14 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/FLEX/Classes/Utility/FLEXKeyboardShortcutManager.h:
--------------------------------------------------------------------------------
1 | //
2 | // FLEXKeyboardShortcutManager.h
3 | // FLEX
4 | //
5 | // Created by Ryan Olson on 9/19/15.
6 | // Copyright © 2015 Flipboard. All rights reserved.
7 | //
8 |
9 | #import
10 |
11 | #if TARGET_OS_SIMULATOR
12 |
13 | @interface FLEXKeyboardShortcutManager : NSObject
14 |
15 | + (instancetype)sharedManager;
16 |
17 | - (void)registerSimulatorShortcutWithKey:(NSString *)key modifiers:(UIKeyModifierFlags)modifiers action:(dispatch_block_t)action description:(NSString *)description;
18 | - (NSString *)keyboardShortcutsDescription;
19 |
20 | @property (nonatomic, assign, getter=isEnabled) BOOL enabled;
21 |
22 | @end
23 |
24 | #endif
25 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/FLEX/Classes/Utility/FLEXMultilineTableViewCell.h:
--------------------------------------------------------------------------------
1 | //
2 | // FLEXMultilineTableViewCell.h
3 | // UICatalog
4 | //
5 | // Created by Ryan Olson on 2/13/15.
6 | // Copyright (c) 2015 f. All rights reserved.
7 | //
8 |
9 | #import
10 |
11 | extern NSString *const kFLEXMultilineTableViewCellIdentifier;
12 |
13 | @interface FLEXMultilineTableViewCell : UITableViewCell
14 |
15 | + (CGFloat)preferredHeightWithAttributedText:(NSAttributedString *)attributedText inTableViewWidth:(CGFloat)tableViewWidth style:(UITableViewStyle)style showsAccessory:(BOOL)showsAccessory;
16 |
17 | @end
18 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/FLEX/Classes/Utility/FLEXResources.h:
--------------------------------------------------------------------------------
1 | //
2 | // FLEXResources.h
3 | // FLEX
4 | //
5 | // Created by Ryan Olson on 6/8/14.
6 | // Copyright (c) 2014 Flipboard. All rights reserved.
7 | //
8 |
9 | #import
10 | #import
11 |
12 | @interface FLEXResources : NSObject
13 |
14 | + (UIImage *)closeIcon;
15 | + (UIImage *)dragHandle;
16 | + (UIImage *)globeIcon;
17 | + (UIImage *)hierarchyIndentPattern;
18 | + (UIImage *)listIcon;
19 | + (UIImage *)moveIcon;
20 | + (UIImage *)selectIcon;
21 |
22 | + (UIImage *)jsonIcon;
23 | + (UIImage *)textPlainIcon;
24 | + (UIImage *)htmlIcon;
25 | + (UIImage *)audioIcon;
26 | + (UIImage *)jsIcon;
27 | + (UIImage *)plistIcon;
28 | + (UIImage *)textIcon;
29 | + (UIImage *)videoIcon;
30 | + (UIImage *)xmlIcon;
31 | + (UIImage *)binaryIcon;
32 |
33 | @end
34 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/FLEX/Classes/ViewHierarchy/FLEXHierarchyTableViewCell.h:
--------------------------------------------------------------------------------
1 | //
2 | // FLEXHierarchyTableViewCell.h
3 | // Flipboard
4 | //
5 | // Created by Ryan Olson on 2014-05-02.
6 | // Copyright (c) 2014 Flipboard. All rights reserved.
7 | //
8 |
9 | #import
10 |
11 | @interface FLEXHierarchyTableViewCell : UITableViewCell
12 |
13 | - (id)initWithReuseIdentifier:(NSString *)reuseIdentifier;
14 |
15 | @property (nonatomic, assign) NSInteger viewDepth;
16 | @property (nonatomic, strong) UIColor *viewColor;
17 |
18 | @end
19 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/FLEX/Classes/ViewHierarchy/FLEXImagePreviewViewController.h:
--------------------------------------------------------------------------------
1 | //
2 | // FLEXImagePreviewViewController.h
3 | // Flipboard
4 | //
5 | // Created by Ryan Olson on 6/12/14.
6 | // Copyright (c) 2014 Flipboard. All rights reserved.
7 | //
8 |
9 | #import
10 |
11 | @interface FLEXImagePreviewViewController : UIViewController
12 |
13 | - (id)initWithImage:(UIImage *)image;
14 |
15 | @end
16 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/AFNetworking/AFAutoPurgingImageCache.h:
--------------------------------------------------------------------------------
1 | ../../../AFNetworking/UIKit+AFNetworking/AFAutoPurgingImageCache.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/AFNetworking/AFHTTPSessionManager.h:
--------------------------------------------------------------------------------
1 | ../../../AFNetworking/AFNetworking/AFHTTPSessionManager.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/AFNetworking/AFImageDownloader.h:
--------------------------------------------------------------------------------
1 | ../../../AFNetworking/UIKit+AFNetworking/AFImageDownloader.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/AFNetworking/AFNetworkActivityIndicatorManager.h:
--------------------------------------------------------------------------------
1 | ../../../AFNetworking/UIKit+AFNetworking/AFNetworkActivityIndicatorManager.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/AFNetworking/AFNetworkReachabilityManager.h:
--------------------------------------------------------------------------------
1 | ../../../AFNetworking/AFNetworking/AFNetworkReachabilityManager.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/AFNetworking/AFNetworking.h:
--------------------------------------------------------------------------------
1 | ../../../AFNetworking/AFNetworking/AFNetworking.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/AFNetworking/AFSecurityPolicy.h:
--------------------------------------------------------------------------------
1 | ../../../AFNetworking/AFNetworking/AFSecurityPolicy.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/AFNetworking/AFURLRequestSerialization.h:
--------------------------------------------------------------------------------
1 | ../../../AFNetworking/AFNetworking/AFURLRequestSerialization.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/AFNetworking/AFURLResponseSerialization.h:
--------------------------------------------------------------------------------
1 | ../../../AFNetworking/AFNetworking/AFURLResponseSerialization.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/AFNetworking/AFURLSessionManager.h:
--------------------------------------------------------------------------------
1 | ../../../AFNetworking/AFNetworking/AFURLSessionManager.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/AFNetworking/UIActivityIndicatorView+AFNetworking.h:
--------------------------------------------------------------------------------
1 | ../../../AFNetworking/UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/AFNetworking/UIButton+AFNetworking.h:
--------------------------------------------------------------------------------
1 | ../../../AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/AFNetworking/UIImage+AFNetworking.h:
--------------------------------------------------------------------------------
1 | ../../../AFNetworking/UIKit+AFNetworking/UIImage+AFNetworking.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/AFNetworking/UIImageView+AFNetworking.h:
--------------------------------------------------------------------------------
1 | ../../../AFNetworking/UIKit+AFNetworking/UIImageView+AFNetworking.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/AFNetworking/UIKit+AFNetworking.h:
--------------------------------------------------------------------------------
1 | ../../../AFNetworking/UIKit+AFNetworking/UIKit+AFNetworking.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/AFNetworking/UIProgressView+AFNetworking.h:
--------------------------------------------------------------------------------
1 | ../../../AFNetworking/UIKit+AFNetworking/UIProgressView+AFNetworking.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/AFNetworking/UIRefreshControl+AFNetworking.h:
--------------------------------------------------------------------------------
1 | ../../../AFNetworking/UIKit+AFNetworking/UIRefreshControl+AFNetworking.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/AFNetworking/UIWebView+AFNetworking.h:
--------------------------------------------------------------------------------
1 | ../../../AFNetworking/UIKit+AFNetworking/UIWebView+AFNetworking.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/FBRetainCycleDetector/BaseType.h:
--------------------------------------------------------------------------------
1 | ../../../FBRetainCycleDetector/FBRetainCycleDetector/Layout/Classes/Parser/BaseType.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/FBRetainCycleDetector/FBAssociationManager+Internal.h:
--------------------------------------------------------------------------------
1 | ../../../FBRetainCycleDetector/FBRetainCycleDetector/Associations/Internal/FBAssociationManager+Internal.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/FBRetainCycleDetector/FBAssociationManager.h:
--------------------------------------------------------------------------------
1 | ../../../FBRetainCycleDetector/FBRetainCycleDetector/Associations/FBAssociationManager.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/FBRetainCycleDetector/FBBlockInterface.h:
--------------------------------------------------------------------------------
1 | ../../../FBRetainCycleDetector/FBRetainCycleDetector/Layout/Blocks/FBBlockInterface.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/FBRetainCycleDetector/FBBlockStrongLayout.h:
--------------------------------------------------------------------------------
1 | ../../../FBRetainCycleDetector/FBRetainCycleDetector/Layout/Blocks/FBBlockStrongLayout.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/FBRetainCycleDetector/FBBlockStrongRelationDetector.h:
--------------------------------------------------------------------------------
1 | ../../../FBRetainCycleDetector/FBRetainCycleDetector/Layout/Blocks/FBBlockStrongRelationDetector.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/FBRetainCycleDetector/FBClassStrongLayout.h:
--------------------------------------------------------------------------------
1 | ../../../FBRetainCycleDetector/FBRetainCycleDetector/Layout/Classes/FBClassStrongLayout.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/FBRetainCycleDetector/FBClassStrongLayoutHelpers.h:
--------------------------------------------------------------------------------
1 | ../../../FBRetainCycleDetector/FBRetainCycleDetector/Layout/Classes/FBClassStrongLayoutHelpers.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/FBRetainCycleDetector/FBIvarReference.h:
--------------------------------------------------------------------------------
1 | ../../../FBRetainCycleDetector/FBRetainCycleDetector/Layout/Classes/Reference/FBIvarReference.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/FBRetainCycleDetector/FBNodeEnumerator.h:
--------------------------------------------------------------------------------
1 | ../../../FBRetainCycleDetector/FBRetainCycleDetector/Detector/FBNodeEnumerator.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/FBRetainCycleDetector/FBObjectGraphConfiguration.h:
--------------------------------------------------------------------------------
1 | ../../../FBRetainCycleDetector/FBRetainCycleDetector/Graph/FBObjectGraphConfiguration.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/FBRetainCycleDetector/FBObjectInStructReference.h:
--------------------------------------------------------------------------------
1 | ../../../FBRetainCycleDetector/FBRetainCycleDetector/Layout/Classes/Reference/FBObjectInStructReference.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/FBRetainCycleDetector/FBObjectReference.h:
--------------------------------------------------------------------------------
1 | ../../../FBRetainCycleDetector/FBRetainCycleDetector/Layout/Classes/Reference/FBObjectReference.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/FBRetainCycleDetector/FBObjectiveCBlock.h:
--------------------------------------------------------------------------------
1 | ../../../FBRetainCycleDetector/FBRetainCycleDetector/Graph/FBObjectiveCBlock.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/FBRetainCycleDetector/FBObjectiveCGraphElement+Internal.h:
--------------------------------------------------------------------------------
1 | ../../../FBRetainCycleDetector/FBRetainCycleDetector/Graph/Internal/FBObjectiveCGraphElement+Internal.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/FBRetainCycleDetector/FBObjectiveCGraphElement.h:
--------------------------------------------------------------------------------
1 | ../../../FBRetainCycleDetector/FBRetainCycleDetector/Graph/FBObjectiveCGraphElement.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/FBRetainCycleDetector/FBObjectiveCNSCFTimer.h:
--------------------------------------------------------------------------------
1 | ../../../FBRetainCycleDetector/FBRetainCycleDetector/Graph/Specialization/FBObjectiveCNSCFTimer.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/FBRetainCycleDetector/FBObjectiveCObject.h:
--------------------------------------------------------------------------------
1 | ../../../FBRetainCycleDetector/FBRetainCycleDetector/Graph/FBObjectiveCObject.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/FBRetainCycleDetector/FBRetainCycleDetector+Internal.h:
--------------------------------------------------------------------------------
1 | ../../../FBRetainCycleDetector/FBRetainCycleDetector/Detector/FBRetainCycleDetector+Internal.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/FBRetainCycleDetector/FBRetainCycleDetector.h:
--------------------------------------------------------------------------------
1 | ../../../FBRetainCycleDetector/FBRetainCycleDetector/Detector/FBRetainCycleDetector.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/FBRetainCycleDetector/FBRetainCycleUtils.h:
--------------------------------------------------------------------------------
1 | ../../../FBRetainCycleDetector/FBRetainCycleDetector/FBRetainCycleUtils.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/FBRetainCycleDetector/FBStandardGraphEdgeFilters.h:
--------------------------------------------------------------------------------
1 | ../../../FBRetainCycleDetector/FBRetainCycleDetector/Filtering/FBStandardGraphEdgeFilters.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/FBRetainCycleDetector/FBStructEncodingParser.h:
--------------------------------------------------------------------------------
1 | ../../../FBRetainCycleDetector/FBRetainCycleDetector/Layout/Classes/Parser/FBStructEncodingParser.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/FBRetainCycleDetector/Struct.h:
--------------------------------------------------------------------------------
1 | ../../../FBRetainCycleDetector/FBRetainCycleDetector/Layout/Classes/Parser/Struct.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/FBRetainCycleDetector/Type.h:
--------------------------------------------------------------------------------
1 | ../../../FBRetainCycleDetector/FBRetainCycleDetector/Layout/Classes/Parser/Type.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/FBRetainCycleDetector/fishhook.h:
--------------------------------------------------------------------------------
1 | ../../../FBRetainCycleDetector/fishhook/fishhook.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/FLEX/FLEX.h:
--------------------------------------------------------------------------------
1 | ../../../FLEX/Classes/FLEX.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/FLEX/FLEXArgumentInputColorView.h:
--------------------------------------------------------------------------------
1 | ../../../FLEX/Classes/Editing/ArgumentInputViews/FLEXArgumentInputColorView.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/FLEX/FLEXArgumentInputDateView.h:
--------------------------------------------------------------------------------
1 | ../../../FLEX/Classes/Editing/ArgumentInputViews/FLEXArgumentInputDateView.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/FLEX/FLEXArgumentInputFontView.h:
--------------------------------------------------------------------------------
1 | ../../../FLEX/Classes/Editing/ArgumentInputViews/FLEXArgumentInputFontView.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/FLEX/FLEXArgumentInputFontsPickerView.h:
--------------------------------------------------------------------------------
1 | ../../../FLEX/Classes/Editing/ArgumentInputViews/FLEXArgumentInputFontsPickerView.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/FLEX/FLEXArgumentInputJSONObjectView.h:
--------------------------------------------------------------------------------
1 | ../../../FLEX/Classes/Editing/ArgumentInputViews/FLEXArgumentInputJSONObjectView.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/FLEX/FLEXArgumentInputNotSupportedView.h:
--------------------------------------------------------------------------------
1 | ../../../FLEX/Classes/Editing/ArgumentInputViews/FLEXArgumentInputNotSupportedView.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/FLEX/FLEXArgumentInputNumberView.h:
--------------------------------------------------------------------------------
1 | ../../../FLEX/Classes/Editing/ArgumentInputViews/FLEXArgumentInputNumberView.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/FLEX/FLEXArgumentInputStringView.h:
--------------------------------------------------------------------------------
1 | ../../../FLEX/Classes/Editing/ArgumentInputViews/FLEXArgumentInputStringView.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/FLEX/FLEXArgumentInputStructView.h:
--------------------------------------------------------------------------------
1 | ../../../FLEX/Classes/Editing/ArgumentInputViews/FLEXArgumentInputStructView.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/FLEX/FLEXArgumentInputSwitchView.h:
--------------------------------------------------------------------------------
1 | ../../../FLEX/Classes/Editing/ArgumentInputViews/FLEXArgumentInputSwitchView.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/FLEX/FLEXArgumentInputTextView.h:
--------------------------------------------------------------------------------
1 | ../../../FLEX/Classes/Editing/ArgumentInputViews/FLEXArgumentInputTextView.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/FLEX/FLEXArgumentInputView.h:
--------------------------------------------------------------------------------
1 | ../../../FLEX/Classes/Editing/ArgumentInputViews/FLEXArgumentInputView.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/FLEX/FLEXArgumentInputViewFactory.h:
--------------------------------------------------------------------------------
1 | ../../../FLEX/Classes/Editing/ArgumentInputViews/FLEXArgumentInputViewFactory.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/FLEX/FLEXArrayExplorerViewController.h:
--------------------------------------------------------------------------------
1 | ../../../FLEX/Classes/ObjectExplorers/FLEXArrayExplorerViewController.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/FLEX/FLEXClassExplorerViewController.h:
--------------------------------------------------------------------------------
1 | ../../../FLEX/Classes/ObjectExplorers/FLEXClassExplorerViewController.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/FLEX/FLEXClassesTableViewController.h:
--------------------------------------------------------------------------------
1 | ../../../FLEX/Classes/GlobalStateExplorers/FLEXClassesTableViewController.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/FLEX/FLEXCookiesTableViewController.h:
--------------------------------------------------------------------------------
1 | ../../../FLEX/Classes/GlobalStateExplorers/FLEXCookiesTableViewController.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/FLEX/FLEXDatabaseManager.h:
--------------------------------------------------------------------------------
1 | ../../../FLEX/Classes/GlobalStateExplorers/DatabaseBrowser/FLEXDatabaseManager.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/FLEX/FLEXDefaultEditorViewController.h:
--------------------------------------------------------------------------------
1 | ../../../FLEX/Classes/Editing/FLEXDefaultEditorViewController.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/FLEX/FLEXDefaultsExplorerViewController.h:
--------------------------------------------------------------------------------
1 | ../../../FLEX/Classes/ObjectExplorers/FLEXDefaultsExplorerViewController.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/FLEX/FLEXDictionaryExplorerViewController.h:
--------------------------------------------------------------------------------
1 | ../../../FLEX/Classes/ObjectExplorers/FLEXDictionaryExplorerViewController.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/FLEX/FLEXExplorerToolbar.h:
--------------------------------------------------------------------------------
1 | ../../../FLEX/Classes/Toolbar/FLEXExplorerToolbar.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/FLEX/FLEXExplorerViewController.h:
--------------------------------------------------------------------------------
1 | ../../../FLEX/Classes/ExplorerInterface/FLEXExplorerViewController.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/FLEX/FLEXFieldEditorView.h:
--------------------------------------------------------------------------------
1 | ../../../FLEX/Classes/Editing/FLEXFieldEditorView.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/FLEX/FLEXFieldEditorViewController.h:
--------------------------------------------------------------------------------
1 | ../../../FLEX/Classes/Editing/FLEXFieldEditorViewController.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/FLEX/FLEXFileBrowserFileOperationController.h:
--------------------------------------------------------------------------------
1 | ../../../FLEX/Classes/GlobalStateExplorers/FLEXFileBrowserFileOperationController.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/FLEX/FLEXFileBrowserSearchOperation.h:
--------------------------------------------------------------------------------
1 | ../../../FLEX/Classes/GlobalStateExplorers/FLEXFileBrowserSearchOperation.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/FLEX/FLEXFileBrowserTableViewController.h:
--------------------------------------------------------------------------------
1 | ../../../FLEX/Classes/GlobalStateExplorers/FLEXFileBrowserTableViewController.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/FLEX/FLEXGlobalsTableViewController.h:
--------------------------------------------------------------------------------
1 | ../../../FLEX/Classes/GlobalStateExplorers/FLEXGlobalsTableViewController.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/FLEX/FLEXGlobalsTableViewControllerEntry.h:
--------------------------------------------------------------------------------
1 | ../../../FLEX/Classes/ObjectExplorers/FLEXGlobalsTableViewControllerEntry.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/FLEX/FLEXHeapEnumerator.h:
--------------------------------------------------------------------------------
1 | ../../../FLEX/Classes/Utility/FLEXHeapEnumerator.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/FLEX/FLEXHierarchyTableViewCell.h:
--------------------------------------------------------------------------------
1 | ../../../FLEX/Classes/ViewHierarchy/FLEXHierarchyTableViewCell.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/FLEX/FLEXHierarchyTableViewController.h:
--------------------------------------------------------------------------------
1 | ../../../FLEX/Classes/ViewHierarchy/FLEXHierarchyTableViewController.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/FLEX/FLEXImageExplorerViewController.h:
--------------------------------------------------------------------------------
1 | ../../../FLEX/Classes/ObjectExplorers/FLEXImageExplorerViewController.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/FLEX/FLEXImagePreviewViewController.h:
--------------------------------------------------------------------------------
1 | ../../../FLEX/Classes/ViewHierarchy/FLEXImagePreviewViewController.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/FLEX/FLEXInstancesTableViewController.h:
--------------------------------------------------------------------------------
1 | ../../../FLEX/Classes/GlobalStateExplorers/FLEXInstancesTableViewController.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/FLEX/FLEXIvarEditorViewController.h:
--------------------------------------------------------------------------------
1 | ../../../FLEX/Classes/Editing/FLEXIvarEditorViewController.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/FLEX/FLEXKeyboardHelpViewController.h:
--------------------------------------------------------------------------------
1 | ../../../FLEX/Classes/Utility/FLEXKeyboardHelpViewController.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/FLEX/FLEXKeyboardShortcutManager.h:
--------------------------------------------------------------------------------
1 | ../../../FLEX/Classes/Utility/FLEXKeyboardShortcutManager.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/FLEX/FLEXLayerExplorerViewController.h:
--------------------------------------------------------------------------------
1 | ../../../FLEX/Classes/ObjectExplorers/FLEXLayerExplorerViewController.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/FLEX/FLEXLibrariesTableViewController.h:
--------------------------------------------------------------------------------
1 | ../../../FLEX/Classes/GlobalStateExplorers/FLEXLibrariesTableViewController.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/FLEX/FLEXLiveObjectsTableViewController.h:
--------------------------------------------------------------------------------
1 | ../../../FLEX/Classes/GlobalStateExplorers/FLEXLiveObjectsTableViewController.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/FLEX/FLEXManager+Private.h:
--------------------------------------------------------------------------------
1 | ../../../FLEX/Classes/Manager/FLEXManager+Private.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/FLEX/FLEXManager.h:
--------------------------------------------------------------------------------
1 | ../../../FLEX/Classes/FLEXManager.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/FLEX/FLEXMethodCallingViewController.h:
--------------------------------------------------------------------------------
1 | ../../../FLEX/Classes/Editing/FLEXMethodCallingViewController.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/FLEX/FLEXMultiColumnTableView.h:
--------------------------------------------------------------------------------
1 | ../../../FLEX/Classes/GlobalStateExplorers/DatabaseBrowser/FLEXMultiColumnTableView.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/FLEX/FLEXMultilineTableViewCell.h:
--------------------------------------------------------------------------------
1 | ../../../FLEX/Classes/Utility/FLEXMultilineTableViewCell.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/FLEX/FLEXNetworkCurlLogger.h:
--------------------------------------------------------------------------------
1 | ../../../FLEX/Classes/Network/FLEXNetworkCurlLogger.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/FLEX/FLEXNetworkHistoryTableViewController.h:
--------------------------------------------------------------------------------
1 | ../../../FLEX/Classes/Network/FLEXNetworkHistoryTableViewController.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/FLEX/FLEXNetworkObserver.h:
--------------------------------------------------------------------------------
1 | ../../../FLEX/Classes/Network/PonyDebugger/FLEXNetworkObserver.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/FLEX/FLEXNetworkRecorder.h:
--------------------------------------------------------------------------------
1 | ../../../FLEX/Classes/Network/FLEXNetworkRecorder.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/FLEX/FLEXNetworkSettingsTableViewController.h:
--------------------------------------------------------------------------------
1 | ../../../FLEX/Classes/Network/FLEXNetworkSettingsTableViewController.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/FLEX/FLEXNetworkTransaction.h:
--------------------------------------------------------------------------------
1 | ../../../FLEX/Classes/Network/FLEXNetworkTransaction.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/FLEX/FLEXNetworkTransactionDetailTableViewController.h:
--------------------------------------------------------------------------------
1 | ../../../FLEX/Classes/Network/FLEXNetworkTransactionDetailTableViewController.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/FLEX/FLEXNetworkTransactionTableViewCell.h:
--------------------------------------------------------------------------------
1 | ../../../FLEX/Classes/Network/FLEXNetworkTransactionTableViewCell.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/FLEX/FLEXObjectExplorerFactory.h:
--------------------------------------------------------------------------------
1 | ../../../FLEX/Classes/ObjectExplorers/FLEXObjectExplorerFactory.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/FLEX/FLEXObjectExplorerViewController.h:
--------------------------------------------------------------------------------
1 | ../../../FLEX/Classes/ObjectExplorers/FLEXObjectExplorerViewController.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/FLEX/FLEXPropertyEditorViewController.h:
--------------------------------------------------------------------------------
1 | ../../../FLEX/Classes/Editing/FLEXPropertyEditorViewController.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/FLEX/FLEXRealmDatabaseManager.h:
--------------------------------------------------------------------------------
1 | ../../../FLEX/Classes/GlobalStateExplorers/DatabaseBrowser/FLEXRealmDatabaseManager.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/FLEX/FLEXRealmDefines.h:
--------------------------------------------------------------------------------
1 | ../../../FLEX/Classes/GlobalStateExplorers/DatabaseBrowser/FLEXRealmDefines.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/FLEX/FLEXResources.h:
--------------------------------------------------------------------------------
1 | ../../../FLEX/Classes/Utility/FLEXResources.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/FLEX/FLEXRuntimeUtility.h:
--------------------------------------------------------------------------------
1 | ../../../FLEX/Classes/Utility/FLEXRuntimeUtility.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/FLEX/FLEXSQLiteDatabaseManager.h:
--------------------------------------------------------------------------------
1 | ../../../FLEX/Classes/GlobalStateExplorers/DatabaseBrowser/FLEXSQLiteDatabaseManager.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/FLEX/FLEXSetExplorerViewController.h:
--------------------------------------------------------------------------------
1 | ../../../FLEX/Classes/ObjectExplorers/FLEXSetExplorerViewController.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/FLEX/FLEXSystemLogMessage.h:
--------------------------------------------------------------------------------
1 | ../../../FLEX/Classes/GlobalStateExplorers/SystemLog/FLEXSystemLogMessage.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/FLEX/FLEXSystemLogTableViewCell.h:
--------------------------------------------------------------------------------
1 | ../../../FLEX/Classes/GlobalStateExplorers/SystemLog/FLEXSystemLogTableViewCell.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/FLEX/FLEXSystemLogTableViewController.h:
--------------------------------------------------------------------------------
1 | ../../../FLEX/Classes/GlobalStateExplorers/SystemLog/FLEXSystemLogTableViewController.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/FLEX/FLEXTableColumnHeader.h:
--------------------------------------------------------------------------------
1 | ../../../FLEX/Classes/GlobalStateExplorers/DatabaseBrowser/FLEXTableColumnHeader.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/FLEX/FLEXTableContentCell.h:
--------------------------------------------------------------------------------
1 | ../../../FLEX/Classes/GlobalStateExplorers/DatabaseBrowser/FLEXTableContentCell.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/FLEX/FLEXTableContentViewController.h:
--------------------------------------------------------------------------------
1 | ../../../FLEX/Classes/GlobalStateExplorers/DatabaseBrowser/FLEXTableContentViewController.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/FLEX/FLEXTableLeftCell.h:
--------------------------------------------------------------------------------
1 | ../../../FLEX/Classes/GlobalStateExplorers/DatabaseBrowser/FLEXTableLeftCell.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/FLEX/FLEXTableListViewController.h:
--------------------------------------------------------------------------------
1 | ../../../FLEX/Classes/GlobalStateExplorers/DatabaseBrowser/FLEXTableListViewController.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/FLEX/FLEXToolbarItem.h:
--------------------------------------------------------------------------------
1 | ../../../FLEX/Classes/Toolbar/FLEXToolbarItem.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/FLEX/FLEXUtility.h:
--------------------------------------------------------------------------------
1 | ../../../FLEX/Classes/Utility/FLEXUtility.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/FLEX/FLEXViewControllerExplorerViewController.h:
--------------------------------------------------------------------------------
1 | ../../../FLEX/Classes/ObjectExplorers/FLEXViewControllerExplorerViewController.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/FLEX/FLEXViewExplorerViewController.h:
--------------------------------------------------------------------------------
1 | ../../../FLEX/Classes/ObjectExplorers/FLEXViewExplorerViewController.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/FLEX/FLEXWebViewController.h:
--------------------------------------------------------------------------------
1 | ../../../FLEX/Classes/GlobalStateExplorers/FLEXWebViewController.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/FLEX/FLEXWindow.h:
--------------------------------------------------------------------------------
1 | ../../../FLEX/Classes/ExplorerInterface/FLEXWindow.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/INTULocationManager/INTUHeadingRequest.h:
--------------------------------------------------------------------------------
1 | ../../../INTULocationManager/LocationManager/INTULocationManager/INTUHeadingRequest.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/INTULocationManager/INTULocationManager+Internal.h:
--------------------------------------------------------------------------------
1 | ../../../INTULocationManager/LocationManager/INTULocationManager/INTULocationManager+Internal.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/INTULocationManager/INTULocationManager.h:
--------------------------------------------------------------------------------
1 | ../../../INTULocationManager/LocationManager/INTULocationManager/INTULocationManager.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/INTULocationManager/INTULocationRequest.h:
--------------------------------------------------------------------------------
1 | ../../../INTULocationManager/LocationManager/INTULocationManager/INTULocationRequest.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/INTULocationManager/INTULocationRequestDefines.h:
--------------------------------------------------------------------------------
1 | ../../../INTULocationManager/LocationManager/INTULocationManager/INTULocationRequestDefines.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/INTULocationManager/INTURequestIDGenerator.h:
--------------------------------------------------------------------------------
1 | ../../../INTULocationManager/LocationManager/INTULocationManager/INTURequestIDGenerator.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/MBProgressHUD/MBProgressHUD.h:
--------------------------------------------------------------------------------
1 | ../../../MBProgressHUD/MBProgressHUD.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/MLeaksFinder/MLeakedObjectProxy.h:
--------------------------------------------------------------------------------
1 | ../../../MLeaksFinder/MLeaksFinder/MLeakedObjectProxy.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/MLeaksFinder/MLeaksFinder.h:
--------------------------------------------------------------------------------
1 | ../../../MLeaksFinder/MLeaksFinder/MLeaksFinder.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/MLeaksFinder/MLeaksMessenger.h:
--------------------------------------------------------------------------------
1 | ../../../MLeaksFinder/MLeaksFinder/MLeaksMessenger.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/MLeaksFinder/NSObject+MemoryLeak.h:
--------------------------------------------------------------------------------
1 | ../../../MLeaksFinder/MLeaksFinder/NSObject+MemoryLeak.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/MLeaksFinder/UIApplication+MemoryLeak.h:
--------------------------------------------------------------------------------
1 | ../../../MLeaksFinder/MLeaksFinder/UIApplication+MemoryLeak.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/MLeaksFinder/UINavigationController+MemoryLeak.h:
--------------------------------------------------------------------------------
1 | ../../../MLeaksFinder/MLeaksFinder/UINavigationController+MemoryLeak.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/MLeaksFinder/UIPageViewController+MemoryLeak.h:
--------------------------------------------------------------------------------
1 | ../../../MLeaksFinder/MLeaksFinder/UIPageViewController+MemoryLeak.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/MLeaksFinder/UISplitViewController+MemoryLeak.h:
--------------------------------------------------------------------------------
1 | ../../../MLeaksFinder/MLeaksFinder/UISplitViewController+MemoryLeak.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/MLeaksFinder/UITabBarController+MemoryLeak.h:
--------------------------------------------------------------------------------
1 | ../../../MLeaksFinder/MLeaksFinder/UITabBarController+MemoryLeak.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/MLeaksFinder/UITouch+MemoryLeak.h:
--------------------------------------------------------------------------------
1 | ../../../MLeaksFinder/MLeaksFinder/UITouch+MemoryLeak.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/MLeaksFinder/UIView+MemoryLeak.h:
--------------------------------------------------------------------------------
1 | ../../../MLeaksFinder/MLeaksFinder/UIView+MemoryLeak.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/MLeaksFinder/UIViewController+MemoryLeak.h:
--------------------------------------------------------------------------------
1 | ../../../MLeaksFinder/MLeaksFinder/UIViewController+MemoryLeak.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/NYXImagesKit/NYXImagesHelper.h:
--------------------------------------------------------------------------------
1 | ../../../NYXImagesKit/Helper/NYXImagesHelper.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/NYXImagesKit/NYXImagesKit.h:
--------------------------------------------------------------------------------
1 | ../../../NYXImagesKit/Helper/NYXImagesKit.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/NYXImagesKit/NYXProgressiveImageView.h:
--------------------------------------------------------------------------------
1 | ../../../NYXImagesKit/Classes/NYXProgressiveImageView.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/NYXImagesKit/UIImage+Blurring.h:
--------------------------------------------------------------------------------
1 | ../../../NYXImagesKit/Categories/UIImage+Blurring.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/NYXImagesKit/UIImage+Enhancing.h:
--------------------------------------------------------------------------------
1 | ../../../NYXImagesKit/Categories/UIImage+Enhancing.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/NYXImagesKit/UIImage+Filtering.h:
--------------------------------------------------------------------------------
1 | ../../../NYXImagesKit/Categories/UIImage+Filtering.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/NYXImagesKit/UIImage+Masking.h:
--------------------------------------------------------------------------------
1 | ../../../NYXImagesKit/Categories/UIImage+Masking.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/NYXImagesKit/UIImage+Reflection.h:
--------------------------------------------------------------------------------
1 | ../../../NYXImagesKit/Categories/UIImage+Reflection.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/NYXImagesKit/UIImage+Resizing.h:
--------------------------------------------------------------------------------
1 | ../../../NYXImagesKit/Categories/UIImage+Resizing.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/NYXImagesKit/UIImage+Rotating.h:
--------------------------------------------------------------------------------
1 | ../../../NYXImagesKit/Categories/UIImage+Rotating.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/NYXImagesKit/UIImage+Saving.h:
--------------------------------------------------------------------------------
1 | ../../../NYXImagesKit/Categories/UIImage+Saving.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/NYXImagesKit/UIScrollView+Screenshot.h:
--------------------------------------------------------------------------------
1 | ../../../NYXImagesKit/Categories/UIScrollView+Screenshot.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/NYXImagesKit/UIView+Screenshot.h:
--------------------------------------------------------------------------------
1 | ../../../NYXImagesKit/Categories/UIView+Screenshot.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/PureLayout/ALView+PureLayout.h:
--------------------------------------------------------------------------------
1 | ../../../PureLayout/PureLayout/PureLayout/ALView+PureLayout.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/PureLayout/NSArray+PureLayout.h:
--------------------------------------------------------------------------------
1 | ../../../PureLayout/PureLayout/PureLayout/NSArray+PureLayout.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/PureLayout/NSLayoutConstraint+PureLayout.h:
--------------------------------------------------------------------------------
1 | ../../../PureLayout/PureLayout/PureLayout/NSLayoutConstraint+PureLayout.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/PureLayout/PureLayout+Internal.h:
--------------------------------------------------------------------------------
1 | ../../../PureLayout/PureLayout/PureLayout/PureLayout+Internal.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/PureLayout/PureLayout.h:
--------------------------------------------------------------------------------
1 | ../../../PureLayout/PureLayout/PureLayout/PureLayout.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/PureLayout/PureLayoutDefines.h:
--------------------------------------------------------------------------------
1 | ../../../PureLayout/PureLayout/PureLayout/PureLayoutDefines.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/SDWebImage/NSData+ImageContentType.h:
--------------------------------------------------------------------------------
1 | ../../../SDWebImage/SDWebImage/NSData+ImageContentType.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/SDWebImage/NSImage+WebCache.h:
--------------------------------------------------------------------------------
1 | ../../../SDWebImage/SDWebImage/NSImage+WebCache.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/SDWebImage/SDImageCache.h:
--------------------------------------------------------------------------------
1 | ../../../SDWebImage/SDWebImage/SDImageCache.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/SDWebImage/SDImageCacheConfig.h:
--------------------------------------------------------------------------------
1 | ../../../SDWebImage/SDWebImage/SDImageCacheConfig.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/SDWebImage/SDWebImageCompat.h:
--------------------------------------------------------------------------------
1 | ../../../SDWebImage/SDWebImage/SDWebImageCompat.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/SDWebImage/SDWebImageDecoder.h:
--------------------------------------------------------------------------------
1 | ../../../SDWebImage/SDWebImage/SDWebImageDecoder.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/SDWebImage/SDWebImageDownloader.h:
--------------------------------------------------------------------------------
1 | ../../../SDWebImage/SDWebImage/SDWebImageDownloader.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/SDWebImage/SDWebImageDownloaderOperation.h:
--------------------------------------------------------------------------------
1 | ../../../SDWebImage/SDWebImage/SDWebImageDownloaderOperation.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/SDWebImage/SDWebImageManager.h:
--------------------------------------------------------------------------------
1 | ../../../SDWebImage/SDWebImage/SDWebImageManager.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/SDWebImage/SDWebImageOperation.h:
--------------------------------------------------------------------------------
1 | ../../../SDWebImage/SDWebImage/SDWebImageOperation.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/SDWebImage/SDWebImagePrefetcher.h:
--------------------------------------------------------------------------------
1 | ../../../SDWebImage/SDWebImage/SDWebImagePrefetcher.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/SDWebImage/UIButton+WebCache.h:
--------------------------------------------------------------------------------
1 | ../../../SDWebImage/SDWebImage/UIButton+WebCache.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/SDWebImage/UIImage+GIF.h:
--------------------------------------------------------------------------------
1 | ../../../SDWebImage/SDWebImage/UIImage+GIF.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/SDWebImage/UIImage+MultiFormat.h:
--------------------------------------------------------------------------------
1 | ../../../SDWebImage/SDWebImage/UIImage+MultiFormat.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/SDWebImage/UIImageView+HighlightedWebCache.h:
--------------------------------------------------------------------------------
1 | ../../../SDWebImage/SDWebImage/UIImageView+HighlightedWebCache.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/SDWebImage/UIImageView+WebCache.h:
--------------------------------------------------------------------------------
1 | ../../../SDWebImage/SDWebImage/UIImageView+WebCache.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/SDWebImage/UIView+WebCache.h:
--------------------------------------------------------------------------------
1 | ../../../SDWebImage/SDWebImage/UIView+WebCache.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/SDWebImage/UIView+WebCacheOperation.h:
--------------------------------------------------------------------------------
1 | ../../../SDWebImage/SDWebImage/UIView+WebCacheOperation.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/YYKit/CALayer+YYAdd.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Base/Quartz/CALayer+YYAdd.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/YYKit/CALayer+YYWebImage.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Image/Categories/CALayer+YYWebImage.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/YYKit/MKAnnotationView+YYWebImage.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Image/Categories/MKAnnotationView+YYWebImage.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/YYKit/NSArray+YYAdd.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Base/Foundation/NSArray+YYAdd.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/YYKit/NSAttributedString+YYText.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Text/String/NSAttributedString+YYText.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/YYKit/NSBundle+YYAdd.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Base/Foundation/NSBundle+YYAdd.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/YYKit/NSData+YYAdd.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Base/Foundation/NSData+YYAdd.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/YYKit/NSDate+YYAdd.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Base/Foundation/NSDate+YYAdd.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/YYKit/NSDictionary+YYAdd.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Base/Foundation/NSDictionary+YYAdd.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/YYKit/NSKeyedUnarchiver+YYAdd.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Base/Foundation/NSKeyedUnarchiver+YYAdd.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/YYKit/NSNotificationCenter+YYAdd.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Base/Foundation/NSNotificationCenter+YYAdd.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/YYKit/NSNumber+YYAdd.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Base/Foundation/NSNumber+YYAdd.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/YYKit/NSObject+YYAdd.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Base/Foundation/NSObject+YYAdd.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/YYKit/NSObject+YYAddForARC.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Base/Foundation/NSObject+YYAddForARC.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/YYKit/NSObject+YYAddForKVO.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Base/Foundation/NSObject+YYAddForKVO.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/YYKit/NSObject+YYModel.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Model/NSObject+YYModel.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/YYKit/NSParagraphStyle+YYText.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Text/String/NSParagraphStyle+YYText.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/YYKit/NSString+YYAdd.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Base/Foundation/NSString+YYAdd.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/YYKit/NSThread+YYAdd.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Base/Foundation/NSThread+YYAdd.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/YYKit/NSTimer+YYAdd.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Base/Foundation/NSTimer+YYAdd.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/YYKit/UIApplication+YYAdd.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Base/UIKit/UIApplication+YYAdd.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/YYKit/UIBarButtonItem+YYAdd.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Base/UIKit/UIBarButtonItem+YYAdd.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/YYKit/UIBezierPath+YYAdd.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Base/UIKit/UIBezierPath+YYAdd.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/YYKit/UIButton+YYWebImage.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Image/Categories/UIButton+YYWebImage.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/YYKit/UIColor+YYAdd.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Base/UIKit/UIColor+YYAdd.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/YYKit/UIControl+YYAdd.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Base/UIKit/UIControl+YYAdd.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/YYKit/UIDevice+YYAdd.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Base/UIKit/UIDevice+YYAdd.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/YYKit/UIFont+YYAdd.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Base/UIKit/UIFont+YYAdd.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/YYKit/UIGestureRecognizer+YYAdd.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Base/UIKit/UIGestureRecognizer+YYAdd.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/YYKit/UIImage+YYAdd.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Base/UIKit/UIImage+YYAdd.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/YYKit/UIImageView+YYWebImage.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Image/Categories/UIImageView+YYWebImage.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/YYKit/UIPasteboard+YYText.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Text/String/UIPasteboard+YYText.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/YYKit/UIScreen+YYAdd.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Base/UIKit/UIScreen+YYAdd.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/YYKit/UIScrollView+YYAdd.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Base/UIKit/UIScrollView+YYAdd.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/YYKit/UITableView+YYAdd.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Base/UIKit/UITableView+YYAdd.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/YYKit/UITextField+YYAdd.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Base/UIKit/UITextField+YYAdd.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/YYKit/UIView+YYAdd.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Base/UIKit/UIView+YYAdd.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/YYKit/YYAnimatedImageView.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Image/YYAnimatedImageView.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/YYKit/YYAsyncLayer.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Utility/YYAsyncLayer.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/YYKit/YYCGUtilities.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Base/Quartz/YYCGUtilities.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/YYKit/YYCache.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Cache/YYCache.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/YYKit/YYClassInfo.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Model/YYClassInfo.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/YYKit/YYDiskCache.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Cache/YYDiskCache.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/YYKit/YYDispatchQueuePool.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Utility/YYDispatchQueuePool.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/YYKit/YYFileHash.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Utility/YYFileHash.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/YYKit/YYFrameImage.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Image/YYFrameImage.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/YYKit/YYGestureRecognizer.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Utility/YYGestureRecognizer.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/YYKit/YYImage.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Image/YYImage.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/YYKit/YYImageCache.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Image/YYImageCache.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/YYKit/YYImageCoder.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Image/YYImageCoder.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/YYKit/YYKVStorage.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Cache/YYKVStorage.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/YYKit/YYKeychain.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Utility/YYKeychain.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/YYKit/YYKit.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/YYKit.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/YYKit/YYKitMacro.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Base/YYKitMacro.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/YYKit/YYLabel.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Text/YYLabel.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/YYKit/YYMemoryCache.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Cache/YYMemoryCache.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/YYKit/YYReachability.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Utility/YYReachability.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/YYKit/YYSentinel.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Utility/YYSentinel.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/YYKit/YYSpriteSheetImage.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Image/YYSpriteSheetImage.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/YYKit/YYTextArchiver.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Text/String/YYTextArchiver.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/YYKit/YYTextAttribute.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Text/String/YYTextAttribute.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/YYKit/YYTextContainerView.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Text/Component/YYTextContainerView.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/YYKit/YYTextDebugOption.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Text/Component/YYTextDebugOption.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/YYKit/YYTextEffectWindow.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Text/Component/YYTextEffectWindow.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/YYKit/YYTextInput.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Text/Component/YYTextInput.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/YYKit/YYTextKeyboardManager.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Text/Component/YYTextKeyboardManager.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/YYKit/YYTextLayout.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Text/Component/YYTextLayout.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/YYKit/YYTextLine.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Text/Component/YYTextLine.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/YYKit/YYTextMagnifier.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Text/Component/YYTextMagnifier.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/YYKit/YYTextParser.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Text/String/YYTextParser.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/YYKit/YYTextRubyAnnotation.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Text/String/YYTextRubyAnnotation.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/YYKit/YYTextRunDelegate.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Text/String/YYTextRunDelegate.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/YYKit/YYTextSelectionView.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Text/Component/YYTextSelectionView.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/YYKit/YYTextUtilities.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Text/String/YYTextUtilities.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/YYKit/YYTextView.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Text/YYTextView.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/YYKit/YYThreadSafeArray.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Utility/YYThreadSafeArray.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/YYKit/YYThreadSafeDictionary.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Utility/YYThreadSafeDictionary.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/YYKit/YYTimer.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Utility/YYTimer.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/YYKit/YYTransaction.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Utility/YYTransaction.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/YYKit/YYWeakProxy.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Utility/YYWeakProxy.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/YYKit/YYWebImageManager.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Image/YYWebImageManager.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/YYKit/YYWebImageOperation.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Image/YYWebImageOperation.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/YYKit/_YYWebImageSetter.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Image/Categories/_YYWebImageSetter.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Private/uicontrol-blocks/UIControl+Blocks.h:
--------------------------------------------------------------------------------
1 | ../../../uicontrol-blocks/Classes/UIControl+Blocks.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/AFNetworking/AFAutoPurgingImageCache.h:
--------------------------------------------------------------------------------
1 | ../../../AFNetworking/UIKit+AFNetworking/AFAutoPurgingImageCache.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/AFNetworking/AFHTTPSessionManager.h:
--------------------------------------------------------------------------------
1 | ../../../AFNetworking/AFNetworking/AFHTTPSessionManager.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/AFNetworking/AFImageDownloader.h:
--------------------------------------------------------------------------------
1 | ../../../AFNetworking/UIKit+AFNetworking/AFImageDownloader.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/AFNetworking/AFNetworkActivityIndicatorManager.h:
--------------------------------------------------------------------------------
1 | ../../../AFNetworking/UIKit+AFNetworking/AFNetworkActivityIndicatorManager.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/AFNetworking/AFNetworkReachabilityManager.h:
--------------------------------------------------------------------------------
1 | ../../../AFNetworking/AFNetworking/AFNetworkReachabilityManager.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/AFNetworking/AFNetworking.h:
--------------------------------------------------------------------------------
1 | ../../../AFNetworking/AFNetworking/AFNetworking.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/AFNetworking/AFSecurityPolicy.h:
--------------------------------------------------------------------------------
1 | ../../../AFNetworking/AFNetworking/AFSecurityPolicy.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/AFNetworking/AFURLRequestSerialization.h:
--------------------------------------------------------------------------------
1 | ../../../AFNetworking/AFNetworking/AFURLRequestSerialization.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/AFNetworking/AFURLResponseSerialization.h:
--------------------------------------------------------------------------------
1 | ../../../AFNetworking/AFNetworking/AFURLResponseSerialization.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/AFNetworking/AFURLSessionManager.h:
--------------------------------------------------------------------------------
1 | ../../../AFNetworking/AFNetworking/AFURLSessionManager.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/AFNetworking/UIActivityIndicatorView+AFNetworking.h:
--------------------------------------------------------------------------------
1 | ../../../AFNetworking/UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/AFNetworking/UIButton+AFNetworking.h:
--------------------------------------------------------------------------------
1 | ../../../AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/AFNetworking/UIImage+AFNetworking.h:
--------------------------------------------------------------------------------
1 | ../../../AFNetworking/UIKit+AFNetworking/UIImage+AFNetworking.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/AFNetworking/UIImageView+AFNetworking.h:
--------------------------------------------------------------------------------
1 | ../../../AFNetworking/UIKit+AFNetworking/UIImageView+AFNetworking.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/AFNetworking/UIKit+AFNetworking.h:
--------------------------------------------------------------------------------
1 | ../../../AFNetworking/UIKit+AFNetworking/UIKit+AFNetworking.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/AFNetworking/UIProgressView+AFNetworking.h:
--------------------------------------------------------------------------------
1 | ../../../AFNetworking/UIKit+AFNetworking/UIProgressView+AFNetworking.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/AFNetworking/UIRefreshControl+AFNetworking.h:
--------------------------------------------------------------------------------
1 | ../../../AFNetworking/UIKit+AFNetworking/UIRefreshControl+AFNetworking.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/AFNetworking/UIWebView+AFNetworking.h:
--------------------------------------------------------------------------------
1 | ../../../AFNetworking/UIKit+AFNetworking/UIWebView+AFNetworking.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/FBRetainCycleDetector/FBAssociationManager.h:
--------------------------------------------------------------------------------
1 | ../../../FBRetainCycleDetector/FBRetainCycleDetector/Associations/FBAssociationManager.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/FBRetainCycleDetector/FBObjectGraphConfiguration.h:
--------------------------------------------------------------------------------
1 | ../../../FBRetainCycleDetector/FBRetainCycleDetector/Graph/FBObjectGraphConfiguration.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/FBRetainCycleDetector/FBObjectiveCBlock.h:
--------------------------------------------------------------------------------
1 | ../../../FBRetainCycleDetector/FBRetainCycleDetector/Graph/FBObjectiveCBlock.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/FBRetainCycleDetector/FBObjectiveCGraphElement.h:
--------------------------------------------------------------------------------
1 | ../../../FBRetainCycleDetector/FBRetainCycleDetector/Graph/FBObjectiveCGraphElement.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/FBRetainCycleDetector/FBObjectiveCNSCFTimer.h:
--------------------------------------------------------------------------------
1 | ../../../FBRetainCycleDetector/FBRetainCycleDetector/Graph/Specialization/FBObjectiveCNSCFTimer.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/FBRetainCycleDetector/FBObjectiveCObject.h:
--------------------------------------------------------------------------------
1 | ../../../FBRetainCycleDetector/FBRetainCycleDetector/Graph/FBObjectiveCObject.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/FBRetainCycleDetector/FBRetainCycleDetector.h:
--------------------------------------------------------------------------------
1 | ../../../FBRetainCycleDetector/FBRetainCycleDetector/Detector/FBRetainCycleDetector.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/FBRetainCycleDetector/FBStandardGraphEdgeFilters.h:
--------------------------------------------------------------------------------
1 | ../../../FBRetainCycleDetector/FBRetainCycleDetector/Filtering/FBStandardGraphEdgeFilters.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/FLEX/FLEX.h:
--------------------------------------------------------------------------------
1 | ../../../FLEX/Classes/FLEX.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/FLEX/FLEXManager.h:
--------------------------------------------------------------------------------
1 | ../../../FLEX/Classes/FLEXManager.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/INTULocationManager/INTUHeadingRequest.h:
--------------------------------------------------------------------------------
1 | ../../../INTULocationManager/LocationManager/INTULocationManager/INTUHeadingRequest.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/INTULocationManager/INTULocationManager+Internal.h:
--------------------------------------------------------------------------------
1 | ../../../INTULocationManager/LocationManager/INTULocationManager/INTULocationManager+Internal.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/INTULocationManager/INTULocationManager.h:
--------------------------------------------------------------------------------
1 | ../../../INTULocationManager/LocationManager/INTULocationManager/INTULocationManager.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/INTULocationManager/INTULocationRequest.h:
--------------------------------------------------------------------------------
1 | ../../../INTULocationManager/LocationManager/INTULocationManager/INTULocationRequest.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/INTULocationManager/INTULocationRequestDefines.h:
--------------------------------------------------------------------------------
1 | ../../../INTULocationManager/LocationManager/INTULocationManager/INTULocationRequestDefines.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/INTULocationManager/INTURequestIDGenerator.h:
--------------------------------------------------------------------------------
1 | ../../../INTULocationManager/LocationManager/INTULocationManager/INTURequestIDGenerator.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/MBProgressHUD/MBProgressHUD.h:
--------------------------------------------------------------------------------
1 | ../../../MBProgressHUD/MBProgressHUD.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/MLeaksFinder/MLeaksFinder.h:
--------------------------------------------------------------------------------
1 | ../../../MLeaksFinder/MLeaksFinder/MLeaksFinder.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/MLeaksFinder/NSObject+MemoryLeak.h:
--------------------------------------------------------------------------------
1 | ../../../MLeaksFinder/MLeaksFinder/NSObject+MemoryLeak.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/NYXImagesKit/NYXImagesHelper.h:
--------------------------------------------------------------------------------
1 | ../../../NYXImagesKit/Helper/NYXImagesHelper.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/NYXImagesKit/NYXImagesKit.h:
--------------------------------------------------------------------------------
1 | ../../../NYXImagesKit/Helper/NYXImagesKit.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/NYXImagesKit/NYXProgressiveImageView.h:
--------------------------------------------------------------------------------
1 | ../../../NYXImagesKit/Classes/NYXProgressiveImageView.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/NYXImagesKit/UIImage+Blurring.h:
--------------------------------------------------------------------------------
1 | ../../../NYXImagesKit/Categories/UIImage+Blurring.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/NYXImagesKit/UIImage+Enhancing.h:
--------------------------------------------------------------------------------
1 | ../../../NYXImagesKit/Categories/UIImage+Enhancing.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/NYXImagesKit/UIImage+Filtering.h:
--------------------------------------------------------------------------------
1 | ../../../NYXImagesKit/Categories/UIImage+Filtering.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/NYXImagesKit/UIImage+Masking.h:
--------------------------------------------------------------------------------
1 | ../../../NYXImagesKit/Categories/UIImage+Masking.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/NYXImagesKit/UIImage+Reflection.h:
--------------------------------------------------------------------------------
1 | ../../../NYXImagesKit/Categories/UIImage+Reflection.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/NYXImagesKit/UIImage+Resizing.h:
--------------------------------------------------------------------------------
1 | ../../../NYXImagesKit/Categories/UIImage+Resizing.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/NYXImagesKit/UIImage+Rotating.h:
--------------------------------------------------------------------------------
1 | ../../../NYXImagesKit/Categories/UIImage+Rotating.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/NYXImagesKit/UIImage+Saving.h:
--------------------------------------------------------------------------------
1 | ../../../NYXImagesKit/Categories/UIImage+Saving.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/NYXImagesKit/UIScrollView+Screenshot.h:
--------------------------------------------------------------------------------
1 | ../../../NYXImagesKit/Categories/UIScrollView+Screenshot.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/NYXImagesKit/UIView+Screenshot.h:
--------------------------------------------------------------------------------
1 | ../../../NYXImagesKit/Categories/UIView+Screenshot.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/PureLayout/ALView+PureLayout.h:
--------------------------------------------------------------------------------
1 | ../../../PureLayout/PureLayout/PureLayout/ALView+PureLayout.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/PureLayout/NSArray+PureLayout.h:
--------------------------------------------------------------------------------
1 | ../../../PureLayout/PureLayout/PureLayout/NSArray+PureLayout.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/PureLayout/NSLayoutConstraint+PureLayout.h:
--------------------------------------------------------------------------------
1 | ../../../PureLayout/PureLayout/PureLayout/NSLayoutConstraint+PureLayout.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/PureLayout/PureLayout+Internal.h:
--------------------------------------------------------------------------------
1 | ../../../PureLayout/PureLayout/PureLayout/PureLayout+Internal.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/PureLayout/PureLayout.h:
--------------------------------------------------------------------------------
1 | ../../../PureLayout/PureLayout/PureLayout/PureLayout.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/PureLayout/PureLayoutDefines.h:
--------------------------------------------------------------------------------
1 | ../../../PureLayout/PureLayout/PureLayout/PureLayoutDefines.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/SDWebImage/NSData+ImageContentType.h:
--------------------------------------------------------------------------------
1 | ../../../SDWebImage/SDWebImage/NSData+ImageContentType.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/SDWebImage/NSImage+WebCache.h:
--------------------------------------------------------------------------------
1 | ../../../SDWebImage/SDWebImage/NSImage+WebCache.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/SDWebImage/SDImageCache.h:
--------------------------------------------------------------------------------
1 | ../../../SDWebImage/SDWebImage/SDImageCache.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/SDWebImage/SDImageCacheConfig.h:
--------------------------------------------------------------------------------
1 | ../../../SDWebImage/SDWebImage/SDImageCacheConfig.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/SDWebImage/SDWebImageCompat.h:
--------------------------------------------------------------------------------
1 | ../../../SDWebImage/SDWebImage/SDWebImageCompat.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/SDWebImage/SDWebImageDecoder.h:
--------------------------------------------------------------------------------
1 | ../../../SDWebImage/SDWebImage/SDWebImageDecoder.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/SDWebImage/SDWebImageDownloader.h:
--------------------------------------------------------------------------------
1 | ../../../SDWebImage/SDWebImage/SDWebImageDownloader.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/SDWebImage/SDWebImageDownloaderOperation.h:
--------------------------------------------------------------------------------
1 | ../../../SDWebImage/SDWebImage/SDWebImageDownloaderOperation.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/SDWebImage/SDWebImageManager.h:
--------------------------------------------------------------------------------
1 | ../../../SDWebImage/SDWebImage/SDWebImageManager.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/SDWebImage/SDWebImageOperation.h:
--------------------------------------------------------------------------------
1 | ../../../SDWebImage/SDWebImage/SDWebImageOperation.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/SDWebImage/SDWebImagePrefetcher.h:
--------------------------------------------------------------------------------
1 | ../../../SDWebImage/SDWebImage/SDWebImagePrefetcher.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/SDWebImage/UIButton+WebCache.h:
--------------------------------------------------------------------------------
1 | ../../../SDWebImage/SDWebImage/UIButton+WebCache.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/SDWebImage/UIImage+GIF.h:
--------------------------------------------------------------------------------
1 | ../../../SDWebImage/SDWebImage/UIImage+GIF.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/SDWebImage/UIImage+MultiFormat.h:
--------------------------------------------------------------------------------
1 | ../../../SDWebImage/SDWebImage/UIImage+MultiFormat.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/SDWebImage/UIImageView+HighlightedWebCache.h:
--------------------------------------------------------------------------------
1 | ../../../SDWebImage/SDWebImage/UIImageView+HighlightedWebCache.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/SDWebImage/UIImageView+WebCache.h:
--------------------------------------------------------------------------------
1 | ../../../SDWebImage/SDWebImage/UIImageView+WebCache.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/SDWebImage/UIView+WebCache.h:
--------------------------------------------------------------------------------
1 | ../../../SDWebImage/SDWebImage/UIView+WebCache.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/SDWebImage/UIView+WebCacheOperation.h:
--------------------------------------------------------------------------------
1 | ../../../SDWebImage/SDWebImage/UIView+WebCacheOperation.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/YYKit/CALayer+YYAdd.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Base/Quartz/CALayer+YYAdd.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/YYKit/CALayer+YYWebImage.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Image/Categories/CALayer+YYWebImage.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/YYKit/MKAnnotationView+YYWebImage.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Image/Categories/MKAnnotationView+YYWebImage.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/YYKit/NSArray+YYAdd.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Base/Foundation/NSArray+YYAdd.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/YYKit/NSAttributedString+YYText.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Text/String/NSAttributedString+YYText.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/YYKit/NSBundle+YYAdd.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Base/Foundation/NSBundle+YYAdd.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/YYKit/NSData+YYAdd.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Base/Foundation/NSData+YYAdd.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/YYKit/NSDate+YYAdd.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Base/Foundation/NSDate+YYAdd.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/YYKit/NSDictionary+YYAdd.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Base/Foundation/NSDictionary+YYAdd.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/YYKit/NSKeyedUnarchiver+YYAdd.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Base/Foundation/NSKeyedUnarchiver+YYAdd.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/YYKit/NSNotificationCenter+YYAdd.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Base/Foundation/NSNotificationCenter+YYAdd.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/YYKit/NSNumber+YYAdd.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Base/Foundation/NSNumber+YYAdd.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/YYKit/NSObject+YYAdd.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Base/Foundation/NSObject+YYAdd.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/YYKit/NSObject+YYAddForARC.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Base/Foundation/NSObject+YYAddForARC.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/YYKit/NSObject+YYAddForKVO.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Base/Foundation/NSObject+YYAddForKVO.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/YYKit/NSObject+YYModel.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Model/NSObject+YYModel.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/YYKit/NSParagraphStyle+YYText.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Text/String/NSParagraphStyle+YYText.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/YYKit/NSString+YYAdd.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Base/Foundation/NSString+YYAdd.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/YYKit/NSThread+YYAdd.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Base/Foundation/NSThread+YYAdd.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/YYKit/NSTimer+YYAdd.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Base/Foundation/NSTimer+YYAdd.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/YYKit/UIApplication+YYAdd.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Base/UIKit/UIApplication+YYAdd.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/YYKit/UIBarButtonItem+YYAdd.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Base/UIKit/UIBarButtonItem+YYAdd.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/YYKit/UIBezierPath+YYAdd.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Base/UIKit/UIBezierPath+YYAdd.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/YYKit/UIButton+YYWebImage.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Image/Categories/UIButton+YYWebImage.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/YYKit/UIColor+YYAdd.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Base/UIKit/UIColor+YYAdd.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/YYKit/UIControl+YYAdd.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Base/UIKit/UIControl+YYAdd.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/YYKit/UIDevice+YYAdd.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Base/UIKit/UIDevice+YYAdd.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/YYKit/UIFont+YYAdd.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Base/UIKit/UIFont+YYAdd.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/YYKit/UIGestureRecognizer+YYAdd.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Base/UIKit/UIGestureRecognizer+YYAdd.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/YYKit/UIImage+YYAdd.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Base/UIKit/UIImage+YYAdd.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/YYKit/UIImageView+YYWebImage.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Image/Categories/UIImageView+YYWebImage.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/YYKit/UIPasteboard+YYText.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Text/String/UIPasteboard+YYText.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/YYKit/UIScreen+YYAdd.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Base/UIKit/UIScreen+YYAdd.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/YYKit/UIScrollView+YYAdd.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Base/UIKit/UIScrollView+YYAdd.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/YYKit/UITableView+YYAdd.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Base/UIKit/UITableView+YYAdd.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/YYKit/UITextField+YYAdd.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Base/UIKit/UITextField+YYAdd.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/YYKit/UIView+YYAdd.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Base/UIKit/UIView+YYAdd.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/YYKit/WebP/config.h:
--------------------------------------------------------------------------------
1 | ../../../../YYKit/Vendor/WebP.framework/Headers/config.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/YYKit/WebP/decode.h:
--------------------------------------------------------------------------------
1 | ../../../../YYKit/Vendor/WebP.framework/Headers/decode.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/YYKit/WebP/demux.h:
--------------------------------------------------------------------------------
1 | ../../../../YYKit/Vendor/WebP.framework/Headers/demux.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/YYKit/WebP/encode.h:
--------------------------------------------------------------------------------
1 | ../../../../YYKit/Vendor/WebP.framework/Headers/encode.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/YYKit/WebP/extras.h:
--------------------------------------------------------------------------------
1 | ../../../../YYKit/Vendor/WebP.framework/Headers/extras.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/YYKit/WebP/format_constants.h:
--------------------------------------------------------------------------------
1 | ../../../../YYKit/Vendor/WebP.framework/Headers/format_constants.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/YYKit/WebP/mux.h:
--------------------------------------------------------------------------------
1 | ../../../../YYKit/Vendor/WebP.framework/Headers/mux.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/YYKit/WebP/mux_types.h:
--------------------------------------------------------------------------------
1 | ../../../../YYKit/Vendor/WebP.framework/Headers/mux_types.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/YYKit/WebP/types.h:
--------------------------------------------------------------------------------
1 | ../../../../YYKit/Vendor/WebP.framework/Headers/types.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/YYKit/YYAnimatedImageView.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Image/YYAnimatedImageView.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/YYKit/YYAsyncLayer.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Utility/YYAsyncLayer.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/YYKit/YYCGUtilities.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Base/Quartz/YYCGUtilities.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/YYKit/YYCache.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Cache/YYCache.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/YYKit/YYClassInfo.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Model/YYClassInfo.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/YYKit/YYDiskCache.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Cache/YYDiskCache.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/YYKit/YYDispatchQueuePool.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Utility/YYDispatchQueuePool.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/YYKit/YYFileHash.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Utility/YYFileHash.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/YYKit/YYFrameImage.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Image/YYFrameImage.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/YYKit/YYGestureRecognizer.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Utility/YYGestureRecognizer.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/YYKit/YYImage.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Image/YYImage.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/YYKit/YYImageCache.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Image/YYImageCache.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/YYKit/YYImageCoder.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Image/YYImageCoder.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/YYKit/YYKVStorage.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Cache/YYKVStorage.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/YYKit/YYKeychain.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Utility/YYKeychain.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/YYKit/YYKit.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/YYKit.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/YYKit/YYKitMacro.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Base/YYKitMacro.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/YYKit/YYLabel.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Text/YYLabel.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/YYKit/YYMemoryCache.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Cache/YYMemoryCache.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/YYKit/YYReachability.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Utility/YYReachability.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/YYKit/YYSentinel.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Utility/YYSentinel.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/YYKit/YYSpriteSheetImage.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Image/YYSpriteSheetImage.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/YYKit/YYTextArchiver.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Text/String/YYTextArchiver.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/YYKit/YYTextAttribute.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Text/String/YYTextAttribute.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/YYKit/YYTextContainerView.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Text/Component/YYTextContainerView.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/YYKit/YYTextDebugOption.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Text/Component/YYTextDebugOption.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/YYKit/YYTextEffectWindow.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Text/Component/YYTextEffectWindow.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/YYKit/YYTextInput.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Text/Component/YYTextInput.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/YYKit/YYTextKeyboardManager.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Text/Component/YYTextKeyboardManager.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/YYKit/YYTextLayout.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Text/Component/YYTextLayout.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/YYKit/YYTextLine.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Text/Component/YYTextLine.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/YYKit/YYTextMagnifier.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Text/Component/YYTextMagnifier.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/YYKit/YYTextParser.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Text/String/YYTextParser.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/YYKit/YYTextRubyAnnotation.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Text/String/YYTextRubyAnnotation.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/YYKit/YYTextRunDelegate.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Text/String/YYTextRunDelegate.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/YYKit/YYTextSelectionView.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Text/Component/YYTextSelectionView.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/YYKit/YYTextUtilities.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Text/String/YYTextUtilities.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/YYKit/YYTextView.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Text/YYTextView.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/YYKit/YYThreadSafeArray.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Utility/YYThreadSafeArray.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/YYKit/YYThreadSafeDictionary.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Utility/YYThreadSafeDictionary.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/YYKit/YYTimer.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Utility/YYTimer.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/YYKit/YYTransaction.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Utility/YYTransaction.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/YYKit/YYWeakProxy.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Utility/YYWeakProxy.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/YYKit/YYWebImageManager.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Image/YYWebImageManager.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/YYKit/YYWebImageOperation.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Image/YYWebImageOperation.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/YYKit/_YYWebImageSetter.h:
--------------------------------------------------------------------------------
1 | ../../../YYKit/YYKit/Image/Categories/_YYWebImageSetter.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Headers/Public/uicontrol-blocks/UIControl+Blocks.h:
--------------------------------------------------------------------------------
1 | ../../../uicontrol-blocks/Classes/UIControl+Blocks.h
--------------------------------------------------------------------------------
/FormTableDemo/Pods/MLeaksFinder/MLeaksFinder/MLeakedObjectProxy.h:
--------------------------------------------------------------------------------
1 | //
2 | // MLeakedObjectProxy.h
3 | // MLeaksFinder
4 | //
5 | // Created by 佘泽坡 on 7/15/16.
6 | // Copyright © 2016 zeposhe. All rights reserved.
7 | //
8 |
9 | #import
10 |
11 | @interface MLeakedObjectProxy : NSObject
12 |
13 | + (BOOL)isAnyObjectLeakedAtPtrs:(NSSet *)ptrs;
14 | + (void)addLeakedObject:(id)object;
15 |
16 | @end
17 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/MLeaksFinder/MLeaksFinder/MLeaksFinder.h:
--------------------------------------------------------------------------------
1 | //
2 | // MLeaksFinder.h
3 | // MLeaksFinder
4 | //
5 | // Created by zeposhe on 12/12/15.
6 | // Copyright © 2015 zeposhe. All rights reserved.
7 | //
8 |
9 | #import "NSObject+MemoryLeak.h"
10 |
11 | //#define MEMORY_LEAKS_FINDER_ENABLED 0
12 |
13 | #ifdef MEMORY_LEAKS_FINDER_ENABLED
14 | #define _INTERNAL_MLF_ENABLED MEMORY_LEAKS_FINDER_ENABLED
15 | #else
16 | #define _INTERNAL_MLF_ENABLED DEBUG
17 | #endif
18 |
19 | //#define MEMORY_LEAKS_FINDER_RETAIN_CYCLE_ENABLED 1
20 |
21 | #ifdef MEMORY_LEAKS_FINDER_RETAIN_CYCLE_ENABLED
22 | #define _INTERNAL_MLF_RC_ENABLED MEMORY_LEAKS_FINDER_RETAIN_CYCLE_ENABLED
23 | #elif COCOAPODS
24 | #define _INTERNAL_MLF_RC_ENABLED COCOAPODS
25 | #endif
26 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/MLeaksFinder/MLeaksFinder/MLeaksMessenger.h:
--------------------------------------------------------------------------------
1 | //
2 | // MLeaksMessenger.h
3 | // MLeaksFinder
4 | //
5 | // Created by 佘泽坡 on 7/17/16.
6 | // Copyright © 2016 zeposhe. All rights reserved.
7 | //
8 |
9 | #import
10 | #import
11 |
12 | @interface MLeaksMessenger : NSObject
13 |
14 | + (void)alertWithTitle:(NSString *)title message:(NSString *)message;
15 | + (void)alertWithTitle:(NSString *)title
16 | message:(NSString *)message
17 | delegate:(id)delegate
18 | additionalButtonTitle:(NSString *)additionalButtonTitle;
19 |
20 | @end
21 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/MLeaksFinder/MLeaksFinder/NSObject+MemoryLeak.h:
--------------------------------------------------------------------------------
1 | //
2 | // NSObject+MemoryLeak.h
3 | // MLeaksFinder
4 | //
5 | // Created by zeposhe on 12/12/15.
6 | // Copyright © 2015 zeposhe. All rights reserved.
7 | //
8 |
9 | #import
10 |
11 | #define MLCheck(TARGET) [self willReleaseObject:(TARGET) relationship:@#TARGET];
12 |
13 | @interface NSObject (MemoryLeak)
14 |
15 | - (BOOL)willDealloc;
16 | - (void)willReleaseObject:(id)object relationship:(NSString *)relationship;
17 |
18 | - (void)willReleaseChild:(id)child;
19 | - (void)willReleaseChildren:(NSArray *)children;
20 |
21 | - (NSArray *)viewStack;
22 |
23 | + (void)swizzleSEL:(SEL)originalSEL withSEL:(SEL)swizzledSEL;
24 |
25 | @end
26 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/MLeaksFinder/MLeaksFinder/UIApplication+MemoryLeak.h:
--------------------------------------------------------------------------------
1 | //
2 | // UIApplication+MemoryLeak.h
3 | // MLeaksFinder
4 | //
5 | // Created by 佘泽坡 on 5/11/16.
6 | // Copyright © 2016 zeposhe. All rights reserved.
7 | //
8 |
9 | #import
10 | #import "MLeaksFinder.h"
11 |
12 | #if _INTERNAL_MLF_ENABLED
13 |
14 | @interface UIApplication (MemoryLeak)
15 |
16 | @end
17 |
18 | #endif
19 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/MLeaksFinder/MLeaksFinder/UINavigationController+MemoryLeak.h:
--------------------------------------------------------------------------------
1 | //
2 | // UINavigationController+MemoryLeak.h
3 | // MLeaksFinder
4 | //
5 | // Created by zeposhe on 12/12/15.
6 | // Copyright © 2015 zeposhe. All rights reserved.
7 | //
8 |
9 | #import
10 | #import "MLeaksFinder.h"
11 |
12 | #if _INTERNAL_MLF_ENABLED
13 |
14 | @interface UINavigationController (MemoryLeak)
15 |
16 | @end
17 |
18 | #endif
19 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/MLeaksFinder/MLeaksFinder/UIPageViewController+MemoryLeak.h:
--------------------------------------------------------------------------------
1 | //
2 | // UIPageViewController+MemoryLeak.h
3 | // MLeaksFinder
4 | //
5 | // Created by zeposhe on 12/12/15.
6 | // Copyright © 2015 zeposhe. All rights reserved.
7 | //
8 |
9 | #import
10 | #import "MLeaksFinder.h"
11 |
12 | #if _INTERNAL_MLF_ENABLED
13 |
14 | @interface UIPageViewController (MemoryLeak)
15 |
16 | @end
17 |
18 | #endif
19 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/MLeaksFinder/MLeaksFinder/UIPageViewController+MemoryLeak.m:
--------------------------------------------------------------------------------
1 | //
2 | // UIPageViewController+MemoryLeak.m
3 | // MLeaksFinder
4 | //
5 | // Created by zeposhe on 12/12/15.
6 | // Copyright © 2015 zeposhe. All rights reserved.
7 | //
8 |
9 | #import "UIPageViewController+MemoryLeak.h"
10 | #import "NSObject+MemoryLeak.h"
11 |
12 | #if _INTERNAL_MLF_ENABLED
13 |
14 | @implementation UIPageViewController (MemoryLeak)
15 |
16 | - (BOOL)willDealloc {
17 | if (![super willDealloc]) {
18 | return NO;
19 | }
20 |
21 | [self willReleaseChildren:self.viewControllers];
22 |
23 | return YES;
24 | }
25 |
26 | @end
27 |
28 | #endif
29 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/MLeaksFinder/MLeaksFinder/UISplitViewController+MemoryLeak.h:
--------------------------------------------------------------------------------
1 | //
2 | // UISplitViewController+MemoryLeak.h
3 | // MLeaksFinder
4 | //
5 | // Created by zeposhe on 12/12/15.
6 | // Copyright © 2015 zeposhe. All rights reserved.
7 | //
8 |
9 | #import
10 | #import "MLeaksFinder.h"
11 |
12 | #if _INTERNAL_MLF_ENABLED
13 |
14 | @interface UISplitViewController (MemoryLeak)
15 |
16 | @end
17 |
18 | #endif
19 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/MLeaksFinder/MLeaksFinder/UISplitViewController+MemoryLeak.m:
--------------------------------------------------------------------------------
1 | //
2 | // UISplitViewController+MemoryLeak.m
3 | // MLeaksFinder
4 | //
5 | // Created by zeposhe on 12/12/15.
6 | // Copyright © 2015 zeposhe. All rights reserved.
7 | //
8 |
9 | #import "UISplitViewController+MemoryLeak.h"
10 | #import "NSObject+MemoryLeak.h"
11 |
12 | #if _INTERNAL_MLF_ENABLED
13 |
14 | @implementation UISplitViewController (MemoryLeak)
15 |
16 | - (BOOL)willDealloc {
17 | if (![super willDealloc]) {
18 | return NO;
19 | }
20 |
21 | [self willReleaseChildren:self.viewControllers];
22 |
23 | return YES;
24 | }
25 |
26 | @end
27 |
28 | #endif
29 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/MLeaksFinder/MLeaksFinder/UITabBarController+MemoryLeak.h:
--------------------------------------------------------------------------------
1 | //
2 | // UITabBarController+MemoryLeak.h
3 | // MLeaksFinder
4 | //
5 | // Created by zeposhe on 12/12/15.
6 | // Copyright © 2015 zeposhe. All rights reserved.
7 | //
8 |
9 | #import
10 | #import "MLeaksFinder.h"
11 |
12 | #if _INTERNAL_MLF_ENABLED
13 |
14 | @interface UITabBarController (MemoryLeak)
15 |
16 | @end
17 |
18 | #endif
19 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/MLeaksFinder/MLeaksFinder/UITabBarController+MemoryLeak.m:
--------------------------------------------------------------------------------
1 | //
2 | // UITabBarController+MemoryLeak.m
3 | // MLeaksFinder
4 | //
5 | // Created by zeposhe on 12/12/15.
6 | // Copyright © 2015 zeposhe. All rights reserved.
7 | //
8 |
9 | #import "UITabBarController+MemoryLeak.h"
10 | #import "NSObject+MemoryLeak.h"
11 |
12 | #if _INTERNAL_MLF_ENABLED
13 |
14 | @implementation UITabBarController (MemoryLeak)
15 |
16 | - (BOOL)willDealloc {
17 | if (![super willDealloc]) {
18 | return NO;
19 | }
20 |
21 | [self willReleaseChildren:self.viewControllers];
22 |
23 | return YES;
24 | }
25 |
26 | @end
27 |
28 | #endif
29 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/MLeaksFinder/MLeaksFinder/UITouch+MemoryLeak.h:
--------------------------------------------------------------------------------
1 | //
2 | // UITouch+MemoryLeak.h
3 | // MLeaksFinder
4 | //
5 | // Created by 佘泽坡 on 8/31/16.
6 | // Copyright © 2016 zeposhe. All rights reserved.
7 | //
8 |
9 | #import
10 | #import "MLeaksFinder.h"
11 |
12 | #if _INTERNAL_MLF_ENABLED
13 |
14 | @interface UITouch (MemoryLeak)
15 |
16 | @end
17 |
18 | #endif
19 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/MLeaksFinder/MLeaksFinder/UIView+MemoryLeak.h:
--------------------------------------------------------------------------------
1 | //
2 | // UIView+MemoryLeak.h
3 | // MLeaksFinder
4 | //
5 | // Created by zeposhe on 12/12/15.
6 | // Copyright © 2015 zeposhe. All rights reserved.
7 | //
8 |
9 | #import
10 | #import "MLeaksFinder.h"
11 |
12 | #if _INTERNAL_MLF_ENABLED
13 |
14 | @interface UIView (MemoryLeak)
15 |
16 | @end
17 |
18 | #endif
19 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/MLeaksFinder/MLeaksFinder/UIView+MemoryLeak.m:
--------------------------------------------------------------------------------
1 | //
2 | // UIView+MemoryLeak.m
3 | // MLeaksFinder
4 | //
5 | // Created by zeposhe on 12/12/15.
6 | // Copyright © 2015 zeposhe. All rights reserved.
7 | //
8 |
9 | #import "UIView+MemoryLeak.h"
10 | #import "NSObject+MemoryLeak.h"
11 |
12 | #if _INTERNAL_MLF_ENABLED
13 |
14 | @implementation UIView (MemoryLeak)
15 |
16 | - (BOOL)willDealloc {
17 | if (![super willDealloc]) {
18 | return NO;
19 | }
20 |
21 | [self willReleaseChildren:self.subviews];
22 |
23 | return YES;
24 | }
25 |
26 | @end
27 |
28 | #endif
29 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/MLeaksFinder/MLeaksFinder/UIViewController+MemoryLeak.h:
--------------------------------------------------------------------------------
1 | //
2 | // UIViewController+MemoryLeak.h
3 | // MLeaksFinder
4 | //
5 | // Created by zeposhe on 12/12/15.
6 | // Copyright © 2015 zeposhe. All rights reserved.
7 | //
8 |
9 | #import
10 | #import "MLeaksFinder.h"
11 |
12 | #if _INTERNAL_MLF_ENABLED
13 |
14 | @interface UIViewController (MemoryLeak)
15 |
16 | @end
17 |
18 | #endif
19 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/MLeaksFinder/README-CN.md:
--------------------------------------------------------------------------------
1 | # FAQ
2 | **1) 引进 MLeaksFinder 后没生效?**
3 |
4 | * 先验证引进是否正确,在 UIViewController+MemoryLeak.m 的 `+ (void)load` 方法里加断点,看 app 启动时有没有进入。
5 |
6 | **2) 可以手动引进 MLeaksFinder 吗?**
7 |
8 | * 直接把 MLeaksFinder 的代码放到项目里即生效。如果把 MLeaksFinder 做为子工程,需要在主工程的 Build Settings -> Other Linker Flags 加上 `-ObjC`。
9 | * 只是引进 MLeaksFinder 的代码 Retain Cycle 功能还未生效,可以再手动加入 FBRetainCycleDetector 代码,然后把 MLeaksFinder.h 里的 `//#define MEMORY_LEAKS_FINDER_RETAIN_CYCLE_ENABLED 1` 打开。
10 |
11 | **3) Fail to find a retain cycle?**
12 |
13 | * 内存泄漏不一定是循环引用造成的。
14 | * 有的循环引用 FBRetainCycleDetector 不一定能找出。
15 |
16 | **4) 如何关掉 MLeaksFinder?**
17 |
18 | * 把 MLeaksFinder.h 里的 `//#define MEMORY_LEAKS_FINDER_ENABLED 0` 打开。
19 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/NYXImagesKit/Categories/UIImage+Blurring.h:
--------------------------------------------------------------------------------
1 | //
2 | // UIImage+Blurring.h
3 | // NYXImagesKit
4 | //
5 | // Created by @Nyx0uf on 03/06/11.
6 | // Copyright 2012 Nyx0uf. All rights reserved.
7 | // www.cocoaintheshell.com
8 | //
9 |
10 |
11 | #import "NYXImagesHelper.h"
12 |
13 |
14 | @interface UIImage (NYX_Blurring)
15 |
16 | -(UIImage*)gaussianBlurWithBias:(NSInteger)bias;
17 |
18 | @end
19 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/NYXImagesKit/Categories/UIImage+Enhancing.h:
--------------------------------------------------------------------------------
1 | //
2 | // UIImage+Enhancing.h
3 | // NYXImagesKit
4 | //
5 | // Created by @Nyx0uf on 03/12/11.
6 | // Copyright 2012 Nyx0uf. All rights reserved.
7 | // www.cocoaintheshell.com
8 | //
9 |
10 |
11 | @interface UIImage (NYX_Enhancing)
12 |
13 | -(UIImage*)autoEnhance;
14 |
15 | -(UIImage*)redEyeCorrection;
16 |
17 | @end
18 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/NYXImagesKit/Categories/UIImage+Filtering.h:
--------------------------------------------------------------------------------
1 | //
2 | // UIImage+Filters.h
3 | // NYXImagesKit
4 | //
5 | // Created by @Nyx0uf on 02/05/11.
6 | // Copyright 2012 Nyx0uf. All rights reserved.
7 | // www.cocoaintheshell.com
8 | //
9 |
10 |
11 | #import "NYXImagesHelper.h"
12 |
13 |
14 | @interface UIImage (NYX_Filtering)
15 |
16 | -(UIImage*)brightenWithValue:(float)factor;
17 |
18 | -(UIImage*)contrastAdjustmentWithValue:(float)value;
19 |
20 | -(UIImage*)edgeDetectionWithBias:(NSInteger)bias;
21 |
22 | -(UIImage*)embossWithBias:(NSInteger)bias;
23 |
24 | -(UIImage*)gammaCorrectionWithValue:(float)value;
25 |
26 | -(UIImage*)grayscale;
27 |
28 | -(UIImage*)invert;
29 |
30 | -(UIImage*)opacity:(float)value;
31 |
32 | -(UIImage*)sepia;
33 |
34 | -(UIImage*)sharpenWithBias:(NSInteger)bias;
35 |
36 | -(UIImage*)unsharpenWithBias:(NSInteger)bias;
37 |
38 | @end
39 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/NYXImagesKit/Categories/UIImage+Masking.h:
--------------------------------------------------------------------------------
1 | //
2 | // UIImage+Masking.h
3 | // NYXImagesKit
4 | //
5 | // Created by @Nyx0uf on 02/06/11.
6 | // Copyright 2012 Nyx0uf. All rights reserved.
7 | // www.cocoaintheshell.com
8 | //
9 |
10 |
11 | #import "NYXImagesHelper.h"
12 |
13 |
14 | @interface UIImage (NYX_Masking)
15 |
16 | -(UIImage*)maskWithImage:(UIImage*)mask;
17 |
18 | @end
19 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/NYXImagesKit/Categories/UIImage+Rotating.h:
--------------------------------------------------------------------------------
1 | //
2 | // UIImage+Rotation.h
3 | // NYXImagesKit
4 | //
5 | // Created by @Nyx0uf on 02/05/11.
6 | // Copyright 2012 Nyx0uf. All rights reserved.
7 | // www.cocoaintheshell.com
8 | //
9 |
10 |
11 | #import "NYXImagesHelper.h"
12 |
13 |
14 | @interface UIImage (NYX_Rotating)
15 |
16 | -(UIImage*)rotateInRadians:(float)radians;
17 |
18 | -(UIImage*)rotateInDegrees:(float)degrees;
19 |
20 | -(UIImage*)rotateImagePixelsInRadians:(float)radians;
21 |
22 | -(UIImage*)rotateImagePixelsInDegrees:(float)degrees;
23 |
24 | -(UIImage*)verticalFlip;
25 |
26 | -(UIImage*)horizontalFlip;
27 |
28 | @end
29 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/NYXImagesKit/Categories/UIScrollView+Screenshot.h:
--------------------------------------------------------------------------------
1 | //
2 | // UIScrollView+Screenshot.h
3 | // NYXImagesKit
4 | //
5 | // Created by @Nyx0uf on 29/03/13.
6 | // Copyright 2013 Nyx0uf. All rights reserved.
7 | // www.cocoaintheshell.com
8 | //
9 |
10 |
11 | @interface UIScrollView (NYX_Screenshot)
12 |
13 | -(UIImage*)imageByRenderingCurrentVisibleRect;
14 |
15 | @end
16 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/NYXImagesKit/Categories/UIScrollView+Screenshot.m:
--------------------------------------------------------------------------------
1 | //
2 | // UIScrollView+Screenshot.h
3 | // NYXImagesKit
4 | //
5 | // Created by @Nyx0uf on 29/03/13.
6 | // Copyright 2013 Nyx0uf. All rights reserved.
7 | // www.cocoaintheshell.com
8 | //
9 |
10 |
11 | #import "UIScrollView+Screenshot.h"
12 | #import
13 |
14 | @implementation UIScrollView (NYX_Screenshot)
15 |
16 | -(UIImage*)imageByRenderingCurrentVisibleRect
17 | {
18 | UIGraphicsBeginImageContextWithOptions(self.bounds.size, self.opaque, 0.0f);
19 | CGContextRef context = UIGraphicsGetCurrentContext();
20 | CGContextTranslateCTM(context, 0.0f, -self.contentOffset.y);
21 | [self.layer renderInContext:context];
22 | UIImage* image = UIGraphicsGetImageFromCurrentImageContext();
23 | UIGraphicsEndImageContext();
24 | return image;
25 | }
26 |
27 | @end
28 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/NYXImagesKit/Categories/UIView+Screenshot.h:
--------------------------------------------------------------------------------
1 | //
2 | // UIView+Screenshot.h
3 | // NYXImagesKit
4 | //
5 | // Created by @Nyx0uf on 29/03/13.
6 | // Copyright 2013 Nyx0uf. All rights reserved.
7 | // www.cocoaintheshell.com
8 | //
9 |
10 |
11 | @interface UIView (NYX_Screenshot)
12 |
13 | -(UIImage*)imageByRenderingView;
14 |
15 | @end
16 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/NYXImagesKit/Categories/UIView+Screenshot.m:
--------------------------------------------------------------------------------
1 | //
2 | // UIView+Screenshot.m
3 | // NYXImagesKit
4 | //
5 | // Created by @Nyx0uf on 29/03/13.
6 | // Copyright 2013 Nyx0uf. All rights reserved.
7 | // www.cocoaintheshell.com
8 | //
9 |
10 |
11 | #import "UIView+Screenshot.h"
12 | #import
13 |
14 | @implementation UIView (NYX_Screenshot)
15 |
16 | -(UIImage*)imageByRenderingView
17 | {
18 | UIGraphicsBeginImageContextWithOptions(self.bounds.size, self.opaque, 0.0f);
19 | [self.layer renderInContext:UIGraphicsGetCurrentContext()];
20 | UIImage* image = UIGraphicsGetImageFromCurrentImageContext();
21 | UIGraphicsEndImageContext();
22 | return image;
23 | }
24 |
25 | @end
26 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/NYXImagesKit/Helper/NYXImagesKit.h:
--------------------------------------------------------------------------------
1 | //
2 | // NYXImagesKit.h
3 | // NYXImagesKit
4 | //
5 | // Created by @Nyx0uf on 02/05/11.
6 | // Copyright 2012 Nyx0uf. All rights reserved.
7 | // www.cocoaintheshell.com
8 | //
9 |
10 | #import
11 |
12 | #import "UIImage+Blurring.h"
13 | #import "UIImage+Enhancing.h"
14 | #import "UIImage+Filtering.h"
15 | #import "UIImage+Masking.h"
16 | #import "UIImage+Reflection.h"
17 | #import "UIImage+Resizing.h"
18 | #import "UIImage+Rotating.h"
19 | #import "UIImage+Saving.h"
20 | #import "UIView+Screenshot.h"
21 | #import "UIScrollView+Screenshot.h"
22 | #import "NYXProgressiveImageView.h"
23 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/SDWebImage/SDWebImage/NSImage+WebCache.h:
--------------------------------------------------------------------------------
1 | /*
2 | * This file is part of the SDWebImage package.
3 | * (c) Olivier Poitrey
4 | *
5 | * For the full copyright and license information, please view the LICENSE
6 | * file that was distributed with this source code.
7 | */
8 |
9 | #import "SDWebImageCompat.h"
10 |
11 | #if SD_MAC
12 |
13 | #import
14 |
15 | @interface NSImage (WebCache)
16 |
17 | - (CGImageRef)CGImage;
18 | - (NSArray *)images;
19 | - (BOOL)isGIF;
20 |
21 | @end
22 |
23 | #endif
24 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/SDWebImage/SDWebImage/NSImage+WebCache.m:
--------------------------------------------------------------------------------
1 | /*
2 | * This file is part of the SDWebImage package.
3 | * (c) Olivier Poitrey
4 | *
5 | * For the full copyright and license information, please view the LICENSE
6 | * file that was distributed with this source code.
7 | */
8 |
9 | #import "NSImage+WebCache.h"
10 |
11 | #if SD_MAC
12 |
13 | @implementation NSImage (WebCache)
14 |
15 | - (CGImageRef)CGImage {
16 | NSRect imageRect = NSMakeRect(0, 0, self.size.width, self.size.height);
17 | CGImageRef cgImage = [self CGImageForProposedRect:&imageRect context:NULL hints:nil];
18 | return cgImage;
19 | }
20 |
21 | - (NSArray *)images {
22 | return nil;
23 | }
24 |
25 | - (BOOL)isGIF {
26 | return NO;
27 | }
28 |
29 | @end
30 |
31 | #endif
32 |
33 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/SDWebImage/SDWebImage/SDImageCacheConfig.m:
--------------------------------------------------------------------------------
1 | //
2 | // SDImageCacheConfig.m
3 | // SDWebImage
4 | //
5 | // Created by Bogdan on 09/09/16.
6 | // Copyright © 2016 Dailymotion. All rights reserved.
7 | //
8 |
9 | #import "SDImageCacheConfig.h"
10 |
11 | static const NSInteger kDefaultCacheMaxCacheAge = 60 * 60 * 24 * 7; // 1 week
12 |
13 | @implementation SDImageCacheConfig
14 |
15 | - (instancetype)init {
16 | if (self = [super init]) {
17 | _shouldDecompressImages = YES;
18 | _shouldDisableiCloud = YES;
19 | _shouldCacheImagesInMemory = YES;
20 | _maxCacheAge = kDefaultCacheMaxCacheAge;
21 | _maxCacheSize = 0;
22 | }
23 | return self;
24 | }
25 |
26 | @end
27 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/SDWebImage/SDWebImage/SDWebImageDecoder.h:
--------------------------------------------------------------------------------
1 | /*
2 | * This file is part of the SDWebImage package.
3 | * (c) Olivier Poitrey
4 | * (c) james
5 | *
6 | * For the full copyright and license information, please view the LICENSE
7 | * file that was distributed with this source code.
8 | */
9 |
10 | #import
11 | #import "SDWebImageCompat.h"
12 |
13 | @interface UIImage (ForceDecode)
14 |
15 | + (nullable UIImage *)decodedImageWithImage:(nullable UIImage *)image;
16 |
17 | + (nullable UIImage *)decodedAndScaledDownImageWithImage:(nullable UIImage *)image;
18 |
19 | @end
20 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/SDWebImage/SDWebImage/SDWebImageOperation.h:
--------------------------------------------------------------------------------
1 | /*
2 | * This file is part of the SDWebImage package.
3 | * (c) Olivier Poitrey
4 | *
5 | * For the full copyright and license information, please view the LICENSE
6 | * file that was distributed with this source code.
7 | */
8 |
9 | #import
10 |
11 | @protocol SDWebImageOperation
12 |
13 | - (void)cancel;
14 |
15 | @end
16 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/SDWebImage/SDWebImage/UIImage+GIF.h:
--------------------------------------------------------------------------------
1 | /*
2 | * This file is part of the SDWebImage package.
3 | * (c) Olivier Poitrey
4 | * (c) Laurin Brandner
5 | *
6 | * For the full copyright and license information, please view the LICENSE
7 | * file that was distributed with this source code.
8 | */
9 |
10 | #import "SDWebImageCompat.h"
11 |
12 | @interface UIImage (GIF)
13 |
14 | /**
15 | * Compatibility method - creates an animated UIImage from an NSData, it will only contain the 1st frame image
16 | */
17 | + (UIImage *)sd_animatedGIFWithData:(NSData *)data;
18 |
19 | /**
20 | * Checks if an UIImage instance is a GIF. Will use the `images` array
21 | */
22 | - (BOOL)isGIF;
23 |
24 | @end
25 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/SDWebImage/SDWebImage/UIImage+MultiFormat.h:
--------------------------------------------------------------------------------
1 | /*
2 | * This file is part of the SDWebImage package.
3 | * (c) Olivier Poitrey
4 | *
5 | * For the full copyright and license information, please view the LICENSE
6 | * file that was distributed with this source code.
7 | */
8 |
9 | #import "SDWebImageCompat.h"
10 | #import "NSData+ImageContentType.h"
11 |
12 | @interface UIImage (MultiFormat)
13 |
14 | + (nullable UIImage *)sd_imageWithData:(nullable NSData *)data;
15 | - (nullable NSData *)sd_imageData;
16 | - (nullable NSData *)sd_imageDataAsFormat:(SDImageFormat)imageFormat;
17 |
18 | @end
19 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Target Support Files/AFNetworking/AFNetworking-dummy.m:
--------------------------------------------------------------------------------
1 | #import
2 | @interface PodsDummy_AFNetworking : NSObject
3 | @end
4 | @implementation PodsDummy_AFNetworking
5 | @end
6 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Target Support Files/AFNetworking/AFNetworking-prefix.pch:
--------------------------------------------------------------------------------
1 | #ifdef __OBJC__
2 | #import
3 | #else
4 | #ifndef FOUNDATION_EXPORT
5 | #if defined(__cplusplus)
6 | #define FOUNDATION_EXPORT extern "C"
7 | #else
8 | #define FOUNDATION_EXPORT extern
9 | #endif
10 | #endif
11 | #endif
12 |
13 | #ifndef TARGET_OS_IOS
14 | #define TARGET_OS_IOS TARGET_OS_IPHONE
15 | #endif
16 |
17 | #ifndef TARGET_OS_WATCH
18 | #define TARGET_OS_WATCH 0
19 | #endif
20 |
21 | #ifndef TARGET_OS_TV
22 | #define TARGET_OS_TV 0
23 | #endif
24 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Target Support Files/FBRetainCycleDetector/FBRetainCycleDetector-dummy.m:
--------------------------------------------------------------------------------
1 | #import
2 | @interface PodsDummy_FBRetainCycleDetector : NSObject
3 | @end
4 | @implementation PodsDummy_FBRetainCycleDetector
5 | @end
6 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Target Support Files/FBRetainCycleDetector/FBRetainCycleDetector-prefix.pch:
--------------------------------------------------------------------------------
1 | #ifdef __OBJC__
2 | #import
3 | #else
4 | #ifndef FOUNDATION_EXPORT
5 | #if defined(__cplusplus)
6 | #define FOUNDATION_EXPORT extern "C"
7 | #else
8 | #define FOUNDATION_EXPORT extern
9 | #endif
10 | #endif
11 | #endif
12 |
13 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Target Support Files/FLEX/FLEX-dummy.m:
--------------------------------------------------------------------------------
1 | #import
2 | @interface PodsDummy_FLEX : NSObject
3 | @end
4 | @implementation PodsDummy_FLEX
5 | @end
6 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Target Support Files/FLEX/FLEX-prefix.pch:
--------------------------------------------------------------------------------
1 | #ifdef __OBJC__
2 | #import
3 | #else
4 | #ifndef FOUNDATION_EXPORT
5 | #if defined(__cplusplus)
6 | #define FOUNDATION_EXPORT extern "C"
7 | #else
8 | #define FOUNDATION_EXPORT extern
9 | #endif
10 | #endif
11 | #endif
12 |
13 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Target Support Files/INTULocationManager/INTULocationManager-dummy.m:
--------------------------------------------------------------------------------
1 | #import
2 | @interface PodsDummy_INTULocationManager : NSObject
3 | @end
4 | @implementation PodsDummy_INTULocationManager
5 | @end
6 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Target Support Files/INTULocationManager/INTULocationManager-prefix.pch:
--------------------------------------------------------------------------------
1 | #ifdef __OBJC__
2 | #import
3 | #else
4 | #ifndef FOUNDATION_EXPORT
5 | #if defined(__cplusplus)
6 | #define FOUNDATION_EXPORT extern "C"
7 | #else
8 | #define FOUNDATION_EXPORT extern
9 | #endif
10 | #endif
11 | #endif
12 |
13 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Target Support Files/MBProgressHUD/MBProgressHUD-dummy.m:
--------------------------------------------------------------------------------
1 | #import
2 | @interface PodsDummy_MBProgressHUD : NSObject
3 | @end
4 | @implementation PodsDummy_MBProgressHUD
5 | @end
6 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Target Support Files/MBProgressHUD/MBProgressHUD-prefix.pch:
--------------------------------------------------------------------------------
1 | #ifdef __OBJC__
2 | #import
3 | #else
4 | #ifndef FOUNDATION_EXPORT
5 | #if defined(__cplusplus)
6 | #define FOUNDATION_EXPORT extern "C"
7 | #else
8 | #define FOUNDATION_EXPORT extern
9 | #endif
10 | #endif
11 | #endif
12 |
13 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Target Support Files/MLeaksFinder/MLeaksFinder-dummy.m:
--------------------------------------------------------------------------------
1 | #import
2 | @interface PodsDummy_MLeaksFinder : NSObject
3 | @end
4 | @implementation PodsDummy_MLeaksFinder
5 | @end
6 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Target Support Files/MLeaksFinder/MLeaksFinder-prefix.pch:
--------------------------------------------------------------------------------
1 | #ifdef __OBJC__
2 | #import
3 | #else
4 | #ifndef FOUNDATION_EXPORT
5 | #if defined(__cplusplus)
6 | #define FOUNDATION_EXPORT extern "C"
7 | #else
8 | #define FOUNDATION_EXPORT extern
9 | #endif
10 | #endif
11 | #endif
12 |
13 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Target Support Files/NYXImagesKit/NYXImagesKit-dummy.m:
--------------------------------------------------------------------------------
1 | #import
2 | @interface PodsDummy_NYXImagesKit : NSObject
3 | @end
4 | @implementation PodsDummy_NYXImagesKit
5 | @end
6 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Target Support Files/NYXImagesKit/NYXImagesKit-prefix.pch:
--------------------------------------------------------------------------------
1 | #ifdef __OBJC__
2 | #import
3 | #else
4 | #ifndef FOUNDATION_EXPORT
5 | #if defined(__cplusplus)
6 | #define FOUNDATION_EXPORT extern "C"
7 | #else
8 | #define FOUNDATION_EXPORT extern
9 | #endif
10 | #endif
11 | #endif
12 |
13 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Target Support Files/Pods-FormTableDemo/Pods-FormTableDemo-dummy.m:
--------------------------------------------------------------------------------
1 | #import
2 | @interface PodsDummy_Pods_FormTableDemo : NSObject
3 | @end
4 | @implementation PodsDummy_Pods_FormTableDemo
5 | @end
6 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Target Support Files/PureLayout/PureLayout-dummy.m:
--------------------------------------------------------------------------------
1 | #import
2 | @interface PodsDummy_PureLayout : NSObject
3 | @end
4 | @implementation PodsDummy_PureLayout
5 | @end
6 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Target Support Files/PureLayout/PureLayout-prefix.pch:
--------------------------------------------------------------------------------
1 | #ifdef __OBJC__
2 | #import
3 | #else
4 | #ifndef FOUNDATION_EXPORT
5 | #if defined(__cplusplus)
6 | #define FOUNDATION_EXPORT extern "C"
7 | #else
8 | #define FOUNDATION_EXPORT extern
9 | #endif
10 | #endif
11 | #endif
12 |
13 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Target Support Files/SDWebImage/SDWebImage-dummy.m:
--------------------------------------------------------------------------------
1 | #import
2 | @interface PodsDummy_SDWebImage : NSObject
3 | @end
4 | @implementation PodsDummy_SDWebImage
5 | @end
6 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch:
--------------------------------------------------------------------------------
1 | #ifdef __OBJC__
2 | #import
3 | #else
4 | #ifndef FOUNDATION_EXPORT
5 | #if defined(__cplusplus)
6 | #define FOUNDATION_EXPORT extern "C"
7 | #else
8 | #define FOUNDATION_EXPORT extern
9 | #endif
10 | #endif
11 | #endif
12 |
13 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Target Support Files/YYKit/YYKit-dummy.m:
--------------------------------------------------------------------------------
1 | #import
2 | @interface PodsDummy_YYKit : NSObject
3 | @end
4 | @implementation PodsDummy_YYKit
5 | @end
6 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Target Support Files/YYKit/YYKit-prefix.pch:
--------------------------------------------------------------------------------
1 | #ifdef __OBJC__
2 | #import
3 | #else
4 | #ifndef FOUNDATION_EXPORT
5 | #if defined(__cplusplus)
6 | #define FOUNDATION_EXPORT extern "C"
7 | #else
8 | #define FOUNDATION_EXPORT extern
9 | #endif
10 | #endif
11 | #endif
12 |
13 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Target Support Files/uicontrol-blocks/uicontrol-blocks-dummy.m:
--------------------------------------------------------------------------------
1 | #import
2 | @interface PodsDummy_uicontrol_blocks : NSObject
3 | @end
4 | @implementation PodsDummy_uicontrol_blocks
5 | @end
6 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/Target Support Files/uicontrol-blocks/uicontrol-blocks-prefix.pch:
--------------------------------------------------------------------------------
1 | #ifdef __OBJC__
2 | #import
3 | #else
4 | #ifndef FOUNDATION_EXPORT
5 | #if defined(__cplusplus)
6 | #define FOUNDATION_EXPORT extern "C"
7 | #else
8 | #define FOUNDATION_EXPORT extern
9 | #endif
10 | #endif
11 | #endif
12 |
13 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/YYKit/Vendor/WebP.framework/WebP:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hmx101607/FormTable/fd987d5a1ca8de6a67f6ba391ff766ae14bc80dc/FormTableDemo/Pods/YYKit/Vendor/WebP.framework/WebP
--------------------------------------------------------------------------------
/FormTableDemo/Pods/YYKit/YYKit/Base/Foundation/NSObject+YYAddForARC.h:
--------------------------------------------------------------------------------
1 | //
2 | // NSObject+YYAddForARC.h
3 | // YYKit
4 | //
5 | // Created by ibireme on 13/12/15.
6 | // Copyright (c) 2015 ibireme.
7 | //
8 | // This source code is licensed under the MIT-style license found in the
9 | // LICENSE file in the root directory of this source tree.
10 | //
11 |
12 | #import
13 |
14 | /**
15 | Debug method for NSObject when using ARC.
16 | */
17 | @interface NSObject (YYAddForARC)
18 |
19 | /// Same as `retain`
20 | - (instancetype)arcDebugRetain;
21 |
22 | /// Same as `release`
23 | - (oneway void)arcDebugRelease;
24 |
25 | /// Same as `autorelease`
26 | - (instancetype)arcDebugAutorelease;
27 |
28 | /// Same as `retainCount`
29 | - (NSUInteger)arcDebugRetainCount;
30 |
31 | @end
32 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/YYKit/YYKit/Base/Foundation/NSThread+YYAdd.h:
--------------------------------------------------------------------------------
1 | //
2 | // NSThread+YYAdd.h
3 | // YYKit
4 | //
5 | // Created by ibireme on 15/7/3.
6 | // Copyright (c) 2015 ibireme.
7 | //
8 | // This source code is licensed under the MIT-style license found in the
9 | // LICENSE file in the root directory of this source tree.
10 | //
11 |
12 | #import
13 |
14 | @interface NSThread (YYAdd)
15 |
16 | /**
17 | Add an autorelease pool to current runloop for current thread.
18 |
19 | @discussion If you create your own thread (NSThread/pthread), and you use
20 | runloop to manage your task, you may use this method to add an autorelease pool
21 | to the runloop. Its behavior is the same as the main thread's autorelease pool.
22 | */
23 | + (void)addAutoreleasePoolToCurrentRunloop;
24 |
25 | @end
26 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/YYKit/YYKit/Base/UIKit/UITextField+YYAdd.h:
--------------------------------------------------------------------------------
1 | //
2 | // UITextField+YYAdd.h
3 | // YYKit
4 | //
5 | // Created by ibireme on 14/5/12.
6 | // Copyright (c) 2015 ibireme.
7 | //
8 | // This source code is licensed under the MIT-style license found in the
9 | // LICENSE file in the root directory of this source tree.
10 | //
11 |
12 | #import
13 |
14 | NS_ASSUME_NONNULL_BEGIN
15 |
16 | /**
17 | Provides extensions for `UITextField`.
18 | */
19 | @interface UITextField (YYAdd)
20 |
21 | /**
22 | Set all text selected.
23 | */
24 | - (void)selectAllText;
25 |
26 | /**
27 | Set text in range selected.
28 |
29 | @param range The range of selected text in a document.
30 | */
31 | - (void)setSelectedRange:(NSRange)range;
32 |
33 | @end
34 |
35 | NS_ASSUME_NONNULL_END
36 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/YYKit/YYKit/Utility/YYSentinel.h:
--------------------------------------------------------------------------------
1 | //
2 | // YYSentinel.h
3 | // YYKit
4 | //
5 | // Created by ibireme on 15/4/13.
6 | // Copyright (c) 2015 ibireme.
7 | //
8 | // This source code is licensed under the MIT-style license found in the
9 | // LICENSE file in the root directory of this source tree.
10 | //
11 |
12 | #import
13 |
14 | NS_ASSUME_NONNULL_BEGIN
15 |
16 | /**
17 | YYSentinel is a thread safe incrementing counter.
18 | It may be used in some multi-threaded situation.
19 | */
20 | @interface YYSentinel : NSObject
21 |
22 | /// Returns the current value of the counter.
23 | @property (readonly) int32_t value;
24 |
25 | /// Increase the value atomically.
26 | /// @return The new value.
27 | - (int32_t)increase;
28 |
29 | @end
30 |
31 | NS_ASSUME_NONNULL_END
32 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/YYKit/YYKit/Utility/YYSentinel.m:
--------------------------------------------------------------------------------
1 | //
2 | // YYSentinel.m
3 | // YYKit
4 | //
5 | // Created by ibireme on 15/4/13.
6 | // Copyright (c) 2015 ibireme.
7 | //
8 | // This source code is licensed under the MIT-style license found in the
9 | // LICENSE file in the root directory of this source tree.
10 | //
11 |
12 | #import "YYSentinel.h"
13 | #import
14 |
15 | @implementation YYSentinel {
16 | int32_t _value;
17 | }
18 |
19 | - (int32_t)value {
20 | return _value;
21 | }
22 |
23 | - (int32_t)increase {
24 | return OSAtomicIncrement32(&_value);
25 | }
26 |
27 | @end
28 |
--------------------------------------------------------------------------------
/FormTableDemo/Pods/uicontrol-blocks/README.md:
--------------------------------------------------------------------------------
1 | #uicontrol-blocks
2 |
3 | ##UIControl (Blocks)
4 |
5 | This category adds block support block based callbacks for UIControlEvents to UIControl.
6 |
7 | Simply call ``-[UIControl addActionForControlEvents:usingBlock:]`` to add an action block.
8 | Use ``-[UIControl removeAction:]`` to remove actions again.
--------------------------------------------------------------------------------