├── .codeclimate.yml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── Setup ├── app ├── Jasonette.xcodeproj │ └── project.pbxproj ├── Jasonette.xcworkspace │ └── contents.xcworkspacedata ├── Jasonette │ ├── Constants.h │ ├── Info.plist │ ├── JASONResponseSerializer.h │ ├── JASONResponseSerializer.m │ ├── Jason.h │ ├── Jason.m │ ├── JasonAction.h │ ├── JasonAction.m │ ├── JasonActionProtocol.h │ ├── JasonAgentAction.h │ ├── JasonAgentAction.m │ ├── JasonAgentService.h │ ├── JasonAgentService.m │ ├── JasonAppDelegate.h │ ├── JasonAppDelegate.m │ ├── JasonAudioAction.h │ ├── JasonAudioAction.m │ ├── JasonButtonComponent.h │ ├── JasonButtonComponent.m │ ├── JasonCacheAction.h │ ├── JasonCacheAction.m │ ├── JasonComponent.h │ ├── JasonComponent.m │ ├── JasonComponentFactory.h │ ├── JasonComponentFactory.m │ ├── JasonComponentProtocol.h │ ├── JasonConvertAction.h │ ├── JasonConvertAction.m │ ├── JasonGeoAction.h │ ├── JasonGeoAction.m │ ├── JasonGlobalAction.h │ ├── JasonGlobalAction.m │ ├── JasonHelper.h │ ├── JasonHelper.m │ ├── JasonHorizontalSection.h │ ├── JasonHorizontalSection.m │ ├── JasonHorizontalSection.xib │ ├── JasonHorizontalSectionItem.h │ ├── JasonHorizontalSectionItem.m │ ├── JasonHorizontalSectionItem.xib │ ├── JasonHtmlComponent.h │ ├── JasonHtmlComponent.m │ ├── JasonImageComponent.h │ ├── JasonImageComponent.m │ ├── JasonLabelComponent.h │ ├── JasonLabelComponent.m │ ├── JasonLayer.h │ ├── JasonLayer.m │ ├── JasonLayout.h │ ├── JasonLayout.m │ ├── JasonLogAction.h │ ├── JasonLogAction.m │ ├── JasonMapComponent.h │ ├── JasonMapComponent.m │ ├── JasonMediaAction.h │ ├── JasonMediaAction.m │ ├── JasonMemory.h │ ├── JasonMemory.m │ ├── JasonNetworkAction.h │ ├── JasonNetworkAction.m │ ├── JasonNotificationAction.h │ ├── JasonNotificationAction.m │ ├── JasonOauthAction.h │ ├── JasonOauthAction.m │ ├── JasonOptionHelper.h │ ├── JasonOptionHelper.m │ ├── JasonParser.h │ ├── JasonParser.m │ ├── JasonPortraitPicker.h │ ├── JasonPortraitPicker.m │ ├── JasonPushAction.h │ ├── JasonPushAction.m │ ├── JasonPushService.h │ ├── JasonPushService.m │ ├── JasonReturnAction.h │ ├── JasonReturnAction.m │ ├── JasonScriptAction.h │ ├── JasonScriptAction.m │ ├── JasonSessionAction.h │ ├── JasonSessionAction.m │ ├── JasonSliderComponent.h │ ├── JasonSliderComponent.m │ ├── JasonSpaceComponent.h │ ├── JasonSpaceComponent.m │ ├── JasonStack.h │ ├── JasonStack.m │ ├── JasonSwitchComponent.h │ ├── JasonSwitchComponent.m │ ├── JasonTextareaComponent.h │ ├── JasonTextareaComponent.m │ ├── JasonTextfieldComponent.h │ ├── JasonTextfieldComponent.m │ ├── JasonTimerAction.h │ ├── JasonTimerAction.m │ ├── JasonUtilAction.h │ ├── JasonUtilAction.m │ ├── JasonVerticalSectionItem.h │ ├── JasonVerticalSectionItem.m │ ├── JasonVerticalSectionItem.xib │ ├── JasonViewController.h │ ├── JasonViewController.m │ ├── JasonVisionAction.h │ ├── JasonVisionAction.m │ ├── JasonVisionService.h │ ├── JasonVisionService.m │ ├── JasonWebsocketAction.h │ ├── JasonWebsocketAction.m │ ├── JasonWebsocketService.h │ ├── JasonWebsocketService.m │ ├── LaunchScreen.storyboard │ ├── Media.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-1024@1x.png │ │ │ ├── Icon-20.png │ │ │ ├── Icon-20@2x.png │ │ │ ├── Icon-20@3x.png │ │ │ ├── Icon-40.png │ │ │ ├── Icon-40@2x.png │ │ │ ├── Icon-40@3x.png │ │ │ ├── Icon-60@2x.png │ │ │ ├── Icon-60@3x.png │ │ │ ├── Icon-72.png │ │ │ ├── Icon-72@2x.png │ │ │ ├── Icon-76.png │ │ │ ├── Icon-76@2x.png │ │ │ ├── Icon-83.5@2x.png │ │ │ ├── Icon-Small-50.png │ │ │ ├── Icon-Small-50@2x.png │ │ │ ├── Icon-Small.png │ │ │ ├── Icon-Small@2x.png │ │ │ ├── Icon-Small@3x.png │ │ │ ├── Icon.png │ │ │ └── Icon@2x.png │ │ └── Brand Assets.launchimage │ │ │ └── Contents.json │ ├── NSObject+JSONPayload.h │ ├── NSObject+JSONPayload.m │ ├── Next@2x.png │ ├── NoPaddingButton.h │ ├── NoPaddingButton.m │ ├── UIBarButtonItem+Badge.h │ ├── UIBarButtonItem+Badge.m │ ├── UIView+JasonComponentPayload.h │ ├── UIView+JasonComponentPayload.m │ ├── agent.js │ ├── csv.js │ ├── error.json │ ├── icon-error.png │ ├── icon-error@2x.png │ ├── icon-info.png │ ├── icon-info@2x.png │ ├── icon-success.png │ ├── icon-success@2x.png │ ├── main.m │ ├── more@2x.png │ ├── placeholder@2x.png │ ├── placeholderr@2x.png │ ├── preload.json │ ├── rss.js │ ├── settings.plist │ ├── st.js │ └── xhtml.js ├── 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 │ ├── AFOAuth2Manager │ ├── AFOAuth2Manager │ │ ├── AFHTTPRequestSerializer+OAuth2.h │ │ ├── AFHTTPRequestSerializer+OAuth2.m │ │ ├── AFOAuth2Manager.h │ │ ├── AFOAuth2Manager.m │ │ ├── AFOAuthCredential.h │ │ └── AFOAuthCredential.m │ ├── LICENSE │ └── README.md │ ├── AHKActionSheet │ ├── Classes │ │ ├── AHKActionSheet.h │ │ ├── AHKActionSheet.m │ │ ├── AHKActionSheetViewController.h │ │ ├── AHKActionSheetViewController.m │ │ ├── UIImage+AHKAdditions.h │ │ ├── UIImage+AHKAdditions.m │ │ ├── UIWindow+AHKAdditions.h │ │ └── UIWindow+AHKAdditions.m │ ├── LICENSE │ └── README.md │ ├── APAddressBook │ ├── LICENSE.txt │ ├── Pod │ │ └── Core │ │ │ ├── Private │ │ │ ├── Builders │ │ │ │ ├── APContactBuilder.h │ │ │ │ ├── APContactBuilder.m │ │ │ │ ├── APContactListBuilder.h │ │ │ │ └── APContactListBuilder.m │ │ │ ├── Deprecated │ │ │ │ └── APDeprecated.h │ │ │ ├── Extractors │ │ │ │ ├── APContactDataExtractor.h │ │ │ │ ├── APContactDataExtractor.m │ │ │ │ ├── APImageExtractor.h │ │ │ │ └── APImageExtractor.m │ │ │ ├── Helpers │ │ │ │ ├── APSocialServiceHelper.h │ │ │ │ └── APSocialServiceHelper.m │ │ │ ├── Routine │ │ │ │ ├── APAddressBookAccessRoutine.h │ │ │ │ ├── APAddressBookAccessRoutine.m │ │ │ │ ├── APAddressBookContactsRoutine.h │ │ │ │ ├── APAddressBookContactsRoutine.m │ │ │ │ ├── APAddressBookExternalChangeDelegate.h │ │ │ │ ├── APAddressBookExternalChangeRoutine.h │ │ │ │ ├── APAddressBookExternalChangeRoutine.m │ │ │ │ └── Base │ │ │ │ │ ├── APAddressBookBaseRoutine.h │ │ │ │ │ └── APAddressBookBaseRoutine.m │ │ │ ├── Thread │ │ │ │ ├── APThread.h │ │ │ │ └── APThread.m │ │ │ └── Wrapper │ │ │ │ ├── APAddressBookRefWrapper.h │ │ │ │ └── APAddressBookRefWrapper.m │ │ │ └── Public │ │ │ ├── APAddressBook.h │ │ │ ├── APAddressBook.m │ │ │ └── Models │ │ │ ├── APAddress.h │ │ │ ├── APAddress.m │ │ │ ├── APContact.h │ │ │ ├── APContact.m │ │ │ ├── APContactDate.h │ │ │ ├── APContactDate.m │ │ │ ├── APEmail.h │ │ │ ├── APEmail.m │ │ │ ├── APJob.h │ │ │ ├── APJob.m │ │ │ ├── APName.h │ │ │ ├── APName.m │ │ │ ├── APPhone.h │ │ │ ├── APPhone.m │ │ │ ├── APRecordDate.h │ │ │ ├── APRecordDate.m │ │ │ ├── APRelatedPerson.h │ │ │ ├── APRelatedPerson.m │ │ │ ├── APSocialProfile.h │ │ │ ├── APSocialProfile.m │ │ │ ├── APSource.h │ │ │ ├── APSource.m │ │ │ └── APTypes.h │ └── README.md │ ├── BBBadgeBarButtonItem │ ├── BBBadgeBarButtonItem │ │ ├── BBBadgeBarButtonItem.h │ │ └── BBBadgeBarButtonItem.m │ ├── LICENCE.txt │ └── README.md │ ├── CYRTextView │ ├── CYRTextView │ │ ├── CYRLayoutManager.h │ │ ├── CYRLayoutManager.m │ │ ├── CYRTextStorage.h │ │ ├── CYRTextStorage.m │ │ ├── CYRTextView.h │ │ ├── CYRTextView.m │ │ ├── CYRToken.h │ │ └── CYRToken.m │ ├── LICENSE │ └── README.md │ ├── DAKeyboardControl │ ├── DAKeyboardControl │ │ ├── DAKeyboardControl.h │ │ └── DAKeyboardControl.m │ ├── LICENSE.md │ └── README.md │ ├── DHSmartScreenshot │ ├── Classes │ │ ├── DHSmartScreenshot.h │ │ ├── UIImage+DHImageAdditions.h │ │ ├── UIImage+DHImageAdditions.m │ │ ├── UIScrollView+DHSmartScreenshot.h │ │ ├── UIScrollView+DHSmartScreenshot.m │ │ ├── UITableView+DHSmartScreenshot.h │ │ ├── UITableView+DHSmartScreenshot.m │ │ ├── UIView+DHSmartScreenshot.h │ │ └── UIView+DHSmartScreenshot.m │ ├── LICENSE │ └── README.md │ ├── DTCoreText │ ├── Core │ │ └── Source │ │ │ ├── CTLineUtils.h │ │ │ ├── CTLineUtils.m │ │ │ ├── DTAccessibilityElement.h │ │ │ ├── DTAccessibilityElement.m │ │ │ ├── DTAccessibilityViewProxy.h │ │ │ ├── DTAccessibilityViewProxy.m │ │ │ ├── DTAnchorHTMLElement.h │ │ │ ├── DTAnchorHTMLElement.m │ │ │ ├── DTAttributedLabel.h │ │ │ ├── DTAttributedLabel.m │ │ │ ├── DTAttributedTextCell.h │ │ │ ├── DTAttributedTextCell.m │ │ │ ├── DTAttributedTextContentView.h │ │ │ ├── DTAttributedTextContentView.m │ │ │ ├── DTAttributedTextView.h │ │ │ ├── DTAttributedTextView.m │ │ │ ├── DTBreakHTMLElement.h │ │ │ ├── DTBreakHTMLElement.m │ │ │ ├── DTCSSListStyle.h │ │ │ ├── DTCSSListStyle.m │ │ │ ├── DTCSSStylesheet.h │ │ │ ├── DTCSSStylesheet.m │ │ │ ├── DTColor+Compatibility.h │ │ │ ├── DTColor+Compatibility.m │ │ │ ├── DTColorFunctions.h │ │ │ ├── DTColorFunctions.m │ │ │ ├── DTCompatibility.h │ │ │ ├── DTCoreText.h │ │ │ ├── DTCoreTextConstants.h │ │ │ ├── DTCoreTextConstants.m │ │ │ ├── DTCoreTextFontCollection.h │ │ │ ├── DTCoreTextFontCollection.m │ │ │ ├── DTCoreTextFontDescriptor.h │ │ │ ├── DTCoreTextFontDescriptor.m │ │ │ ├── DTCoreTextFunctions.h │ │ │ ├── DTCoreTextFunctions.m │ │ │ ├── DTCoreTextGlyphRun.h │ │ │ ├── DTCoreTextGlyphRun.m │ │ │ ├── DTCoreTextLayoutFrame+Cursor.h │ │ │ ├── DTCoreTextLayoutFrame+Cursor.m │ │ │ ├── DTCoreTextLayoutFrame.h │ │ │ ├── DTCoreTextLayoutFrame.m │ │ │ ├── DTCoreTextLayoutFrameAccessibilityElementGenerator.h │ │ │ ├── DTCoreTextLayoutFrameAccessibilityElementGenerator.m │ │ │ ├── DTCoreTextLayoutLine.h │ │ │ ├── DTCoreTextLayoutLine.m │ │ │ ├── DTCoreTextLayouter.h │ │ │ ├── DTCoreTextLayouter.m │ │ │ ├── DTCoreTextMacros.h │ │ │ ├── DTCoreTextParagraphStyle.h │ │ │ ├── DTCoreTextParagraphStyle.m │ │ │ ├── DTDictationPlaceholderTextAttachment.h │ │ │ ├── DTDictationPlaceholderTextAttachment.m │ │ │ ├── DTDictationPlaceholderView.h │ │ │ ├── DTDictationPlaceholderView.m │ │ │ ├── DTHTMLAttributedStringBuilder.h │ │ │ ├── DTHTMLAttributedStringBuilder.m │ │ │ ├── DTHTMLElement.h │ │ │ ├── DTHTMLElement.m │ │ │ ├── DTHTMLParserNode.h │ │ │ ├── DTHTMLParserNode.m │ │ │ ├── DTHTMLParserTextNode.h │ │ │ ├── DTHTMLParserTextNode.m │ │ │ ├── DTHTMLWriter.h │ │ │ ├── DTHTMLWriter.m │ │ │ ├── DTHorizontalRuleHTMLElement.h │ │ │ ├── DTHorizontalRuleHTMLElement.m │ │ │ ├── DTIframeTextAttachment.h │ │ │ ├── DTIframeTextAttachment.m │ │ │ ├── DTImage+HTML.h │ │ │ ├── DTImage+HTML.m │ │ │ ├── DTImageTextAttachment.h │ │ │ ├── DTImageTextAttachment.m │ │ │ ├── DTLazyImageView.h │ │ │ ├── DTLazyImageView.m │ │ │ ├── DTLinkButton.h │ │ │ ├── DTLinkButton.m │ │ │ ├── DTListItemHTMLElement.h │ │ │ ├── DTListItemHTMLElement.m │ │ │ ├── DTObjectTextAttachment.h │ │ │ ├── DTObjectTextAttachment.m │ │ │ ├── DTStylesheetHTMLElement.h │ │ │ ├── DTStylesheetHTMLElement.m │ │ │ ├── DTTextAttachment.h │ │ │ ├── DTTextAttachment.m │ │ │ ├── DTTextAttachmentHTMLElement.h │ │ │ ├── DTTextAttachmentHTMLElement.m │ │ │ ├── DTTextBlock.h │ │ │ ├── DTTextBlock.m │ │ │ ├── DTTextHTMLElement.h │ │ │ ├── DTTextHTMLElement.m │ │ │ ├── DTVideoTextAttachment.h │ │ │ ├── DTVideoTextAttachment.m │ │ │ ├── DTWeakSupport.h │ │ │ ├── DTWebVideoView.h │ │ │ ├── DTWebVideoView.m │ │ │ ├── NSAttributedString+DTCoreText.h │ │ │ ├── NSAttributedString+DTCoreText.m │ │ │ ├── NSAttributedString+DTDebug.h │ │ │ ├── NSAttributedString+DTDebug.m │ │ │ ├── NSAttributedString+HTML.h │ │ │ ├── NSAttributedString+HTML.m │ │ │ ├── NSAttributedString+SmallCaps.h │ │ │ ├── NSAttributedString+SmallCaps.m │ │ │ ├── NSAttributedStringRunDelegates.h │ │ │ ├── NSAttributedStringRunDelegates.m │ │ │ ├── NSCharacterSet+HTML.h │ │ │ ├── NSCharacterSet+HTML.m │ │ │ ├── NSCoder+DTCompatibility.h │ │ │ ├── NSCoder+DTCompatibility.m │ │ │ ├── NSDictionary+DTCoreText.h │ │ │ ├── NSDictionary+DTCoreText.m │ │ │ ├── NSMutableAttributedString+HTML.h │ │ │ ├── NSMutableAttributedString+HTML.m │ │ │ ├── NSMutableString+HTML.h │ │ │ ├── NSMutableString+HTML.m │ │ │ ├── NSScanner+HTML.h │ │ │ ├── NSScanner+HTML.m │ │ │ ├── NSString+CSS.h │ │ │ ├── NSString+CSS.m │ │ │ ├── NSString+HTML.h │ │ │ ├── NSString+HTML.m │ │ │ ├── NSString+Paragraphs.h │ │ │ ├── NSString+Paragraphs.m │ │ │ ├── UIFont+DTCoreText.h │ │ │ ├── UIFont+DTCoreText.m │ │ │ ├── default.css │ │ │ └── default.css.c │ ├── LICENSE │ └── Readme.markdown │ ├── DTFoundation │ ├── Core │ │ └── Source │ │ │ ├── DTBase64Coding.h │ │ │ ├── DTBase64Coding.m │ │ │ ├── DTBlockFunctions.h │ │ │ ├── DTBlockFunctions.m │ │ │ ├── DTCompatibility.h │ │ │ ├── DTCoreGraphicsUtils.h │ │ │ ├── DTCoreGraphicsUtils.m │ │ │ ├── DTExtendedFileAttributes.h │ │ │ ├── DTExtendedFileAttributes.m │ │ │ ├── DTFolderMonitor.h │ │ │ ├── DTFolderMonitor.m │ │ │ ├── DTFoundationConstants.h │ │ │ ├── DTFoundationConstants.m │ │ │ ├── DTHTMLParser │ │ │ ├── DTHTMLParser.h │ │ │ └── DTHTMLParser.m │ │ │ ├── DTLog.h │ │ │ ├── DTLog.m │ │ │ ├── DTVersion.h │ │ │ ├── DTVersion.m │ │ │ ├── DTWeakSupport.h │ │ │ ├── NSArray+DTError.h │ │ │ ├── NSArray+DTError.m │ │ │ ├── NSData+DTCrypto.h │ │ │ ├── NSData+DTCrypto.m │ │ │ ├── NSDictionary+DTError.h │ │ │ ├── NSDictionary+DTError.m │ │ │ ├── NSFileWrapper+DTCopying.h │ │ │ ├── NSFileWrapper+DTCopying.m │ │ │ ├── NSMutableArray+DTMoving.h │ │ │ ├── NSMutableArray+DTMoving.m │ │ │ ├── NSString+DTFormatNumbers.h │ │ │ ├── NSString+DTFormatNumbers.m │ │ │ ├── NSString+DTPaths.h │ │ │ ├── NSString+DTPaths.m │ │ │ ├── NSString+DTURLEncoding.h │ │ │ ├── NSString+DTURLEncoding.m │ │ │ ├── NSString+DTUtilities.h │ │ │ ├── NSString+DTUtilities.m │ │ │ ├── NSURL+DTComparing.h │ │ │ ├── NSURL+DTComparing.m │ │ │ ├── NSURL+DTUnshorten.h │ │ │ ├── NSURL+DTUnshorten.m │ │ │ └── iOS │ │ │ ├── DTActivityTitleView.h │ │ │ ├── DTActivityTitleView.m │ │ │ ├── DTAnimatedGIF │ │ │ ├── DTAnimatedGIF.h │ │ │ └── DTAnimatedGIF.m │ │ │ ├── DTCustomColoredAccessory.h │ │ │ ├── DTCustomColoredAccessory.m │ │ │ ├── DTPieProgressIndicator.h │ │ │ ├── DTPieProgressIndicator.m │ │ │ ├── DTSmartPagingScrollView.h │ │ │ ├── DTSmartPagingScrollView.m │ │ │ ├── DTTiledLayerWithoutFade.h │ │ │ ├── DTTiledLayerWithoutFade.m │ │ │ ├── NSURL+DTAppLinks.h │ │ │ ├── NSURL+DTAppLinks.m │ │ │ ├── UIApplication+DTNetworkActivity.h │ │ │ ├── UIApplication+DTNetworkActivity.m │ │ │ ├── UIImage+DTFoundation.h │ │ │ ├── UIImage+DTFoundation.m │ │ │ ├── UIView+DTFoundation.h │ │ │ ├── UIView+DTFoundation.m │ │ │ ├── UIWebView+DTFoundation.h │ │ │ └── UIWebView+DTFoundation.m │ ├── LICENSE │ └── readme.markdown │ ├── 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 │ ├── FreeStreamer │ ├── FreeStreamer │ │ └── FreeStreamer │ │ │ ├── FSAudioController.h │ │ │ ├── FSAudioController.m │ │ │ ├── FSAudioStream.h │ │ │ ├── FSAudioStream.mm │ │ │ ├── FSCheckContentTypeRequest.h │ │ │ ├── FSCheckContentTypeRequest.m │ │ │ ├── FSParsePlaylistRequest.h │ │ │ ├── FSParsePlaylistRequest.m │ │ │ ├── FSParseRssPodcastFeedRequest.h │ │ │ ├── FSParseRssPodcastFeedRequest.m │ │ │ ├── FSPlaylistItem.h │ │ │ ├── FSPlaylistItem.m │ │ │ ├── FSXMLHttpRequest.h │ │ │ ├── FSXMLHttpRequest.m │ │ │ ├── audio_queue.cpp │ │ │ ├── audio_queue.h │ │ │ ├── audio_stream.cpp │ │ │ ├── audio_stream.h │ │ │ ├── caching_stream.cpp │ │ │ ├── caching_stream.h │ │ │ ├── file_output.cpp │ │ │ ├── file_output.h │ │ │ ├── file_stream.cpp │ │ │ ├── file_stream.h │ │ │ ├── http_stream.cpp │ │ │ ├── http_stream.h │ │ │ ├── id3_parser.cpp │ │ │ ├── id3_parser.h │ │ │ ├── input_stream.cpp │ │ │ ├── input_stream.h │ │ │ ├── stream_configuration.cpp │ │ │ └── stream_configuration.h │ ├── LICENSE.txt │ └── README.markdown │ ├── HMSegmentedControl │ ├── HMSegmentedControl │ │ ├── HMSegmentedControl.h │ │ └── HMSegmentedControl.m │ ├── LICENSE.md │ └── README.md │ ├── 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 │ ├── IQAudioRecorderController │ ├── IQAudioRecorderController │ │ ├── FDWaveformView │ │ │ ├── IQ_FDWaveformView.h │ │ │ └── IQ_FDWaveformView.m │ │ ├── IQAudioCropperViewController.h │ │ ├── IQAudioCropperViewController.m │ │ ├── IQAudioRecorderConstraints.h │ │ ├── IQAudioRecorderConstraints.m │ │ ├── IQAudioRecorderViewController.h │ │ ├── IQAudioRecorderViewController.m │ │ ├── IQCropSelectionBeginView.h │ │ ├── IQCropSelectionBeginView.m │ │ ├── IQCropSelectionEndView.h │ │ ├── IQCropSelectionEndView.m │ │ ├── IQCropSelectionView.h │ │ ├── IQCropSelectionView.m │ │ ├── IQMessageDisplayView.h │ │ ├── IQMessageDisplayView.m │ │ ├── IQPlaybackDurationView.h │ │ ├── IQPlaybackDurationView.m │ │ ├── NSString+IQTimeIntervalFormatter.h │ │ ├── NSString+IQTimeIntervalFormatter.m │ │ └── Resources │ │ │ ├── audio_record.png │ │ │ ├── audio_record@2x.png │ │ │ ├── audio_record@3x.png │ │ │ ├── microphone_access.png │ │ │ ├── microphone_access@2x.png │ │ │ ├── microphone_access@3x.png │ │ │ ├── scissor.png │ │ │ ├── scissor@2x.png │ │ │ ├── scissor@3x.png │ │ │ ├── stop_playing.png │ │ │ ├── stop_playing@2x.png │ │ │ ├── stop_playing@3x.png │ │ │ ├── stop_recording.png │ │ │ ├── stop_recording@2x.png │ │ │ └── stop_recording@3x.png │ ├── LICENSE │ └── README.md │ ├── JDStatusBarNotification │ ├── JDStatusBarNotification │ │ ├── JDStatusBarNotification.h │ │ ├── JDStatusBarNotification.m │ │ ├── JDStatusBarStyle.h │ │ ├── JDStatusBarStyle.m │ │ ├── JDStatusBarView.h │ │ └── JDStatusBarView.m │ ├── LICENSE │ └── README.md │ ├── JSCoreBom │ ├── JSCoreBom │ │ ├── JSCoreBom.h │ │ ├── JSCoreBom.m │ │ └── Modules │ │ │ ├── ModuleConsole.h │ │ │ ├── ModuleConsole.m │ │ │ ├── ModuleXMLHttpRequest.h │ │ │ └── ModuleXMLHttpRequest.m │ ├── LICENSE │ └── README.md │ ├── Local Podspecs │ ├── FreeStreamer.podspec.json │ ├── IQAudioRecorderController.podspec.json │ ├── SDWebImage.podspec.json │ └── SWTableViewCell.podspec.json │ ├── MBProgressHUD │ ├── LICENSE │ ├── MBProgressHUD.h │ ├── MBProgressHUD.m │ └── README.mdown │ ├── Manifest.lock │ ├── NSGIF │ ├── LICENSE │ ├── NSGIF │ │ ├── NSGIF.h │ │ └── NSGIF.m │ └── README.md │ ├── NSHash │ ├── LICENSE.txt │ ├── NSHash │ │ ├── NSData+NSHash.h │ │ ├── NSData+NSHash.m │ │ ├── NSString+NSHash.h │ │ └── NSString+NSHash.m │ └── README.md │ ├── OMGHTTPURLRQ │ ├── README.markdown │ └── Sources │ │ ├── OMGUserAgent.h │ │ └── OMGUserAgent.m │ ├── PHFComposeBarView │ ├── Classes │ │ ├── PHFComposeBarView.h │ │ ├── PHFComposeBarView.m │ │ ├── PHFComposeBarView_Button.h │ │ ├── PHFComposeBarView_Button.m │ │ ├── PHFComposeBarView_TextView.h │ │ └── PHFComposeBarView_TextView.m │ ├── LICENSE │ └── README.md │ ├── PHFDelegateChain │ ├── LICENSE │ ├── PHFDelegateChain.h │ ├── PHFDelegateChain.m │ └── README.md │ ├── Pods.xcodeproj │ └── project.pbxproj │ ├── REMenu │ ├── LICENSE │ ├── README.md │ └── REMenu │ │ ├── RECommonFunctions.h │ │ ├── RECommonFunctions.m │ │ ├── REMenu.h │ │ ├── REMenu.m │ │ ├── REMenuContainerView.h │ │ ├── REMenuContainerView.m │ │ ├── REMenuItem.h │ │ ├── REMenuItem.m │ │ ├── REMenuItemView.h │ │ └── REMenuItemView.m │ ├── RMActionController │ ├── LICENSE │ ├── README.md │ └── RMActionController │ │ ├── RMActionController.h │ │ └── RMActionController.m │ ├── RMDateSelectionViewController │ ├── LICENSE │ ├── README.md │ └── RMDateSelectionViewController │ │ ├── RMDateSelectionViewController.h │ │ └── RMDateSelectionViewController.m │ ├── Reachability │ ├── LICENCE.txt │ ├── README.md │ ├── Reachability.h │ └── Reachability.m │ ├── SBJson │ ├── LICENSE │ ├── README.md │ └── src │ │ └── main │ │ └── objc │ │ ├── SBJson4.h │ │ ├── SBJson4Parser.h │ │ ├── SBJson4Parser.m │ │ ├── SBJson4StreamParser.h │ │ ├── SBJson4StreamParser.m │ │ ├── SBJson4StreamParserState.h │ │ ├── SBJson4StreamParserState.m │ │ ├── SBJson4StreamTokeniser.h │ │ ├── SBJson4StreamTokeniser.m │ │ ├── SBJson4StreamWriter.h │ │ ├── SBJson4StreamWriter.m │ │ ├── SBJson4StreamWriterState.h │ │ ├── SBJson4StreamWriterState.m │ │ ├── SBJson4Writer.h │ │ └── SBJson4Writer.m │ ├── SCSiriWaveformView │ ├── LICENSE │ ├── README.md │ └── SCSiriWaveformView │ │ ├── SCSiriWaveformView.h │ │ └── SCSiriWaveformView.m │ ├── SDWebImage │ ├── LICENSE │ ├── README.md │ └── SDWebImage │ │ ├── NSData+ImageContentType.h │ │ ├── NSData+ImageContentType.m │ │ ├── SDImageCache.h │ │ ├── SDImageCache.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+WebCacheOperation.h │ │ └── UIView+WebCacheOperation.m │ ├── SWFrameButton │ ├── LICENSE │ ├── README.md │ └── SWFrameButton │ │ ├── SWFrameButton.h │ │ └── SWFrameButton.m │ ├── SWTableViewCell │ ├── LICENCE │ ├── README.md │ └── SWTableViewCell │ │ └── PodFiles │ │ ├── NSMutableArray+SWUtilityButtons.h │ │ ├── NSMutableArray+SWUtilityButtons.m │ │ ├── SWCellScrollView.h │ │ ├── SWCellScrollView.m │ │ ├── SWLongPressGestureRecognizer.h │ │ ├── SWLongPressGestureRecognizer.m │ │ ├── SWTableViewCell.h │ │ ├── SWTableViewCell.m │ │ ├── SWUtilityButtonTapGestureRecognizer.h │ │ ├── SWUtilityButtonTapGestureRecognizer.m │ │ ├── SWUtilityButtonView.h │ │ └── SWUtilityButtonView.m │ ├── SZTextView │ ├── Classes │ │ ├── SZTextView.h │ │ └── SZTextView.m │ ├── LICENSE │ └── README.md │ ├── SocketRocket │ ├── LICENSE │ ├── README.rst │ └── SocketRocket │ │ ├── SRWebSocket.h │ │ ├── SRWebSocket.m │ │ └── SocketRocket.h │ ├── TDOAuth │ ├── README.md │ ├── TDOAuth.h │ └── TDOAuth.m │ ├── TTTAttributedLabel │ ├── LICENSE │ ├── README.md │ └── TTTAttributedLabel │ │ ├── TTTAttributedLabel.h │ │ └── TTTAttributedLabel.m │ ├── TWMessageBarManager │ ├── Classes │ │ ├── Icons │ │ │ ├── icon-error.png │ │ │ ├── icon-error@2x.png │ │ │ ├── icon-info.png │ │ │ ├── icon-info@2x.png │ │ │ ├── icon-success.png │ │ │ └── icon-success@2x.png │ │ ├── TWMessageBarManager.h │ │ └── TWMessageBarManager.m │ ├── LICENSE │ └── README.md │ ├── Target Support Files │ ├── AFNetworking │ │ ├── AFNetworking-dummy.m │ │ ├── AFNetworking-prefix.pch │ │ ├── AFNetworking-umbrella.h │ │ ├── AFNetworking.modulemap │ │ ├── AFNetworking.xcconfig │ │ └── Info.plist │ ├── AFOAuth2Manager │ │ ├── AFOAuth2Manager-dummy.m │ │ ├── AFOAuth2Manager-prefix.pch │ │ ├── AFOAuth2Manager-umbrella.h │ │ ├── AFOAuth2Manager.modulemap │ │ ├── AFOAuth2Manager.xcconfig │ │ └── Info.plist │ ├── AHKActionSheet │ │ ├── AHKActionSheet-dummy.m │ │ ├── AHKActionSheet-prefix.pch │ │ ├── AHKActionSheet-umbrella.h │ │ ├── AHKActionSheet.modulemap │ │ ├── AHKActionSheet.xcconfig │ │ └── Info.plist │ ├── APAddressBook │ │ ├── APAddressBook-dummy.m │ │ ├── APAddressBook-prefix.pch │ │ ├── APAddressBook-umbrella.h │ │ ├── APAddressBook.modulemap │ │ ├── APAddressBook.xcconfig │ │ └── Info.plist │ ├── BBBadgeBarButtonItem │ │ ├── BBBadgeBarButtonItem-dummy.m │ │ ├── BBBadgeBarButtonItem-prefix.pch │ │ ├── BBBadgeBarButtonItem-umbrella.h │ │ ├── BBBadgeBarButtonItem.modulemap │ │ ├── BBBadgeBarButtonItem.xcconfig │ │ └── Info.plist │ ├── CYRTextView │ │ ├── CYRTextView-dummy.m │ │ ├── CYRTextView-prefix.pch │ │ ├── CYRTextView-umbrella.h │ │ ├── CYRTextView.modulemap │ │ ├── CYRTextView.xcconfig │ │ └── Info.plist │ ├── DAKeyboardControl │ │ ├── DAKeyboardControl-dummy.m │ │ ├── DAKeyboardControl-prefix.pch │ │ ├── DAKeyboardControl-umbrella.h │ │ ├── DAKeyboardControl.modulemap │ │ ├── DAKeyboardControl.xcconfig │ │ └── Info.plist │ ├── DHSmartScreenshot │ │ ├── DHSmartScreenshot-dummy.m │ │ ├── DHSmartScreenshot-prefix.pch │ │ ├── DHSmartScreenshot-umbrella.h │ │ ├── DHSmartScreenshot.modulemap │ │ ├── DHSmartScreenshot.xcconfig │ │ └── Info.plist │ ├── DTCoreText │ │ ├── DTCoreText-dummy.m │ │ ├── DTCoreText-prefix.pch │ │ ├── DTCoreText-umbrella.h │ │ ├── DTCoreText.modulemap │ │ ├── DTCoreText.xcconfig │ │ └── Info.plist │ ├── DTFoundation │ │ ├── DTFoundation-dummy.m │ │ ├── DTFoundation-prefix.pch │ │ ├── DTFoundation-umbrella.h │ │ ├── DTFoundation.modulemap │ │ ├── DTFoundation.xcconfig │ │ └── Info.plist │ ├── FLEX │ │ ├── FLEX-dummy.m │ │ ├── FLEX-prefix.pch │ │ ├── FLEX-umbrella.h │ │ ├── FLEX.modulemap │ │ ├── FLEX.xcconfig │ │ └── Info.plist │ ├── FreeStreamer │ │ ├── FreeStreamer-dummy.m │ │ ├── FreeStreamer-prefix.pch │ │ ├── FreeStreamer-umbrella.h │ │ ├── FreeStreamer.modulemap │ │ ├── FreeStreamer.xcconfig │ │ └── Info.plist │ ├── HMSegmentedControl │ │ ├── HMSegmentedControl-dummy.m │ │ ├── HMSegmentedControl-prefix.pch │ │ ├── HMSegmentedControl-umbrella.h │ │ ├── HMSegmentedControl.modulemap │ │ ├── HMSegmentedControl.xcconfig │ │ └── Info.plist │ ├── INTULocationManager │ │ ├── INTULocationManager-dummy.m │ │ ├── INTULocationManager-prefix.pch │ │ ├── INTULocationManager-umbrella.h │ │ ├── INTULocationManager.modulemap │ │ ├── INTULocationManager.xcconfig │ │ └── Info.plist │ ├── IQAudioRecorderController │ │ ├── IQAudioRecorderController-dummy.m │ │ ├── IQAudioRecorderController-prefix.pch │ │ ├── IQAudioRecorderController-umbrella.h │ │ ├── IQAudioRecorderController.modulemap │ │ ├── IQAudioRecorderController.xcconfig │ │ └── Info.plist │ ├── JDStatusBarNotification │ │ ├── Info.plist │ │ ├── JDStatusBarNotification-dummy.m │ │ ├── JDStatusBarNotification-prefix.pch │ │ ├── JDStatusBarNotification-umbrella.h │ │ ├── JDStatusBarNotification.modulemap │ │ └── JDStatusBarNotification.xcconfig │ ├── JSCoreBom │ │ ├── Info.plist │ │ ├── JSCoreBom-dummy.m │ │ ├── JSCoreBom-prefix.pch │ │ ├── JSCoreBom-umbrella.h │ │ ├── JSCoreBom.modulemap │ │ └── JSCoreBom.xcconfig │ ├── MBProgressHUD │ │ ├── Info.plist │ │ ├── MBProgressHUD-dummy.m │ │ ├── MBProgressHUD-prefix.pch │ │ ├── MBProgressHUD-umbrella.h │ │ ├── MBProgressHUD.modulemap │ │ └── MBProgressHUD.xcconfig │ ├── NSGIF │ │ ├── Info.plist │ │ ├── NSGIF-dummy.m │ │ ├── NSGIF-prefix.pch │ │ ├── NSGIF-umbrella.h │ │ ├── NSGIF.modulemap │ │ └── NSGIF.xcconfig │ ├── NSHash │ │ ├── Info.plist │ │ ├── NSHash-dummy.m │ │ ├── NSHash-prefix.pch │ │ ├── NSHash-umbrella.h │ │ ├── NSHash.modulemap │ │ └── NSHash.xcconfig │ ├── OMGHTTPURLRQ │ │ ├── Info.plist │ │ ├── OMGHTTPURLRQ-dummy.m │ │ ├── OMGHTTPURLRQ-prefix.pch │ │ ├── OMGHTTPURLRQ-umbrella.h │ │ ├── OMGHTTPURLRQ.modulemap │ │ └── OMGHTTPURLRQ.xcconfig │ ├── PHFComposeBarView │ │ ├── Info.plist │ │ ├── PHFComposeBarView-dummy.m │ │ ├── PHFComposeBarView-prefix.pch │ │ ├── PHFComposeBarView-umbrella.h │ │ ├── PHFComposeBarView.modulemap │ │ └── PHFComposeBarView.xcconfig │ ├── PHFDelegateChain │ │ ├── Info.plist │ │ ├── PHFDelegateChain-dummy.m │ │ ├── PHFDelegateChain-prefix.pch │ │ ├── PHFDelegateChain-umbrella.h │ │ ├── PHFDelegateChain.modulemap │ │ └── PHFDelegateChain.xcconfig │ ├── Pods-Jasonette │ │ ├── Info.plist │ │ ├── Pods-Jasonette-acknowledgements.markdown │ │ ├── Pods-Jasonette-acknowledgements.plist │ │ ├── Pods-Jasonette-dummy.m │ │ ├── Pods-Jasonette-frameworks.sh │ │ ├── Pods-Jasonette-resources.sh │ │ ├── Pods-Jasonette-umbrella.h │ │ ├── Pods-Jasonette.debug.xcconfig │ │ ├── Pods-Jasonette.modulemap │ │ └── Pods-Jasonette.release.xcconfig │ ├── REMenu │ │ ├── Info.plist │ │ ├── REMenu-dummy.m │ │ ├── REMenu-prefix.pch │ │ ├── REMenu-umbrella.h │ │ ├── REMenu.modulemap │ │ └── REMenu.xcconfig │ ├── RMActionController │ │ ├── Info.plist │ │ ├── RMActionController-dummy.m │ │ ├── RMActionController-prefix.pch │ │ ├── RMActionController-umbrella.h │ │ ├── RMActionController.modulemap │ │ └── RMActionController.xcconfig │ ├── RMDateSelectionViewController │ │ ├── Info.plist │ │ ├── RMDateSelectionViewController-dummy.m │ │ ├── RMDateSelectionViewController-prefix.pch │ │ ├── RMDateSelectionViewController-umbrella.h │ │ ├── RMDateSelectionViewController.modulemap │ │ └── RMDateSelectionViewController.xcconfig │ ├── Reachability │ │ ├── Info.plist │ │ ├── Reachability-dummy.m │ │ ├── Reachability-prefix.pch │ │ ├── Reachability-umbrella.h │ │ ├── Reachability.modulemap │ │ └── Reachability.xcconfig │ ├── SBJson │ │ ├── Info.plist │ │ ├── SBJson-dummy.m │ │ ├── SBJson-prefix.pch │ │ ├── SBJson-umbrella.h │ │ ├── SBJson.modulemap │ │ └── SBJson.xcconfig │ ├── SCSiriWaveformView │ │ ├── Info.plist │ │ ├── SCSiriWaveformView-dummy.m │ │ ├── SCSiriWaveformView-prefix.pch │ │ ├── SCSiriWaveformView-umbrella.h │ │ ├── SCSiriWaveformView.modulemap │ │ └── SCSiriWaveformView.xcconfig │ ├── SDWebImage │ │ ├── Info.plist │ │ ├── SDWebImage-dummy.m │ │ ├── SDWebImage-prefix.pch │ │ ├── SDWebImage-umbrella.h │ │ ├── SDWebImage.modulemap │ │ └── SDWebImage.xcconfig │ ├── SWFrameButton │ │ ├── Info.plist │ │ ├── SWFrameButton-dummy.m │ │ ├── SWFrameButton-prefix.pch │ │ ├── SWFrameButton-umbrella.h │ │ ├── SWFrameButton.modulemap │ │ └── SWFrameButton.xcconfig │ ├── SWTableViewCell │ │ ├── Info.plist │ │ ├── SWTableViewCell-dummy.m │ │ ├── SWTableViewCell-prefix.pch │ │ ├── SWTableViewCell-umbrella.h │ │ ├── SWTableViewCell.modulemap │ │ └── SWTableViewCell.xcconfig │ ├── SZTextView │ │ ├── Info.plist │ │ ├── SZTextView-dummy.m │ │ ├── SZTextView-prefix.pch │ │ ├── SZTextView-umbrella.h │ │ ├── SZTextView.modulemap │ │ └── SZTextView.xcconfig │ ├── SocketRocket │ │ ├── Info.plist │ │ ├── SocketRocket-dummy.m │ │ ├── SocketRocket-prefix.pch │ │ ├── SocketRocket-umbrella.h │ │ ├── SocketRocket.modulemap │ │ └── SocketRocket.xcconfig │ ├── TDOAuth │ │ ├── Info.plist │ │ ├── TDOAuth-dummy.m │ │ ├── TDOAuth-prefix.pch │ │ ├── TDOAuth-umbrella.h │ │ ├── TDOAuth.modulemap │ │ └── TDOAuth.xcconfig │ ├── TTTAttributedLabel │ │ ├── Info.plist │ │ ├── TTTAttributedLabel-dummy.m │ │ ├── TTTAttributedLabel-prefix.pch │ │ ├── TTTAttributedLabel-umbrella.h │ │ ├── TTTAttributedLabel.modulemap │ │ └── TTTAttributedLabel.xcconfig │ ├── TWMessageBarManager │ │ ├── Info.plist │ │ ├── TWMessageBarManager-dummy.m │ │ ├── TWMessageBarManager-prefix.pch │ │ ├── TWMessageBarManager-umbrella.h │ │ ├── TWMessageBarManager.modulemap │ │ └── TWMessageBarManager.xcconfig │ ├── UICKeyChainStore │ │ ├── Info.plist │ │ ├── UICKeyChainStore-dummy.m │ │ ├── UICKeyChainStore-prefix.pch │ │ ├── UICKeyChainStore-umbrella.h │ │ ├── UICKeyChainStore.modulemap │ │ └── UICKeyChainStore.xcconfig │ └── libPhoneNumber-iOS │ │ ├── Info.plist │ │ ├── libPhoneNumber-iOS-dummy.m │ │ ├── libPhoneNumber-iOS-prefix.pch │ │ ├── libPhoneNumber-iOS-umbrella.h │ │ ├── libPhoneNumber-iOS.modulemap │ │ └── libPhoneNumber-iOS.xcconfig │ ├── UICKeyChainStore │ ├── LICENSE │ ├── Lib │ │ └── UICKeyChainStore │ │ │ ├── UICKeyChainStore.h │ │ │ └── UICKeyChainStore.m │ └── README.md │ └── libPhoneNumber-iOS │ ├── LICENSE │ ├── README.md │ └── libPhoneNumber │ ├── NBAsYouTypeFormatter.h │ ├── NBAsYouTypeFormatter.m │ ├── NBMetadataCore.h │ ├── NBMetadataCore.m │ ├── NBMetadataCoreMapper.h │ ├── NBMetadataCoreMapper.m │ ├── NBMetadataCoreTest.h │ ├── NBMetadataCoreTest.m │ ├── NBMetadataCoreTestMapper.h │ ├── NBMetadataCoreTestMapper.m │ ├── NBMetadataHelper.h │ ├── NBMetadataHelper.m │ ├── NBNumberFormat.h │ ├── NBNumberFormat.m │ ├── NBPhoneMetaData.h │ ├── NBPhoneMetaData.m │ ├── NBPhoneNumber.h │ ├── NBPhoneNumber.m │ ├── NBPhoneNumberDefines.h │ ├── NBPhoneNumberDefines.m │ ├── NBPhoneNumberDesc.h │ ├── NBPhoneNumberDesc.m │ ├── NBPhoneNumberUtil.h │ └── NBPhoneNumberUtil.m ├── icon ├── Add a non-transparent icon to this folder └── jason.jpg └── refresh-icon /.codeclimate.yml: -------------------------------------------------------------------------------- 1 | engines: 2 | fixme: 3 | enabled: true 4 | tailor: 5 | enabled: false 6 | ratings: 7 | paths: 8 | - "**.swift" 9 | exclude_paths: 10 | - "/app/Pods/" 11 | - "**.js" 12 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | Development Moved to https://github.com/jasonelle/jasonelle/ 2 | -------------------------------------------------------------------------------- /app/Jasonette.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="UTF-8"?> 2 | <Workspace 3 | version = "1.0"> 4 | <FileRef 5 | location = "group:Jasonette.xcodeproj"> 6 | </FileRef> 7 | <FileRef 8 | location = "group:Pods/Pods.xcodeproj"> 9 | </FileRef> 10 | </Workspace> 11 | -------------------------------------------------------------------------------- /app/Jasonette/Constants.h: -------------------------------------------------------------------------------- 1 | // 2 | // Constants.h 3 | // Jasonette 4 | // 5 | // Copyright © 2016 gliechtenstein. All rights reserved. 6 | // 7 | 8 | 9 | 10 | #ifndef Constants_h 11 | #define Constants_h 12 | 13 | 14 | #endif /* Constants_h */ 15 | 16 | //#define PUSH 1 17 | //#define ADS 1 18 | -------------------------------------------------------------------------------- /app/Jasonette/JASONResponseSerializer.h: -------------------------------------------------------------------------------- 1 | // 2 | // JASONResponseSerializer.h 3 | // Jasonette 4 | // 5 | // Created by e on 7/12/17. 6 | // Copyright © 2017 Jasonette. All rights reserved. 7 | // 8 | 9 | #import <AFNetworking/AFNetworking.h> 10 | 11 | @interface JASONResponseSerializer : AFJSONResponseSerializer 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /app/Jasonette/JasonAction.h: -------------------------------------------------------------------------------- 1 | // 2 | // JasonAction.h 3 | // Jasonette 4 | // 5 | // Copyright © 2016 gliechtenstein. All rights reserved. 6 | // 7 | #import <Foundation/Foundation.h> 8 | #import <UIKit/UIKit.h> 9 | #import "JasonViewController.h" 10 | #import "Jason.h" 11 | 12 | @interface JasonAction : NSObject 13 | @property (nonatomic, strong) JasonViewController *VC; 14 | @property (nonatomic, strong) NSDictionary *options; 15 | @property (nonatomic, strong) NSMutableDictionary *cache; 16 | @end 17 | -------------------------------------------------------------------------------- /app/Jasonette/JasonAction.m: -------------------------------------------------------------------------------- 1 | // 2 | // JasonAction.m 3 | // Jasonette 4 | // 5 | // Copyright © 2016 gliechtenstein. All rights reserved. 6 | // 7 | #import "JasonAction.h" 8 | 9 | @implementation JasonAction 10 | @end 11 | -------------------------------------------------------------------------------- /app/Jasonette/JasonActionProtocol.h: -------------------------------------------------------------------------------- 1 | // 2 | // JasonActionProtocol.h 3 | // Jasonette 4 | // 5 | // Copyright © 2016 gliechtenstein. All rights reserved. 6 | // 7 | #import <Foundation/Foundation.h> 8 | #import "JasonViewController.h" 9 | 10 | @protocol JasonActionProtocol <NSObject> 11 | @optional 12 | @property (nonatomic, strong) JasonViewController *VC; 13 | @property (nonatomic, strong) NSDictionary *options; 14 | @end 15 | -------------------------------------------------------------------------------- /app/Jasonette/JasonAgentAction.h: -------------------------------------------------------------------------------- 1 | // 2 | // JasonAgentAction.h 3 | // Jasonette 4 | // 5 | // Copyright © 2017 Jasonette. All rights reserved. 6 | // 7 | 8 | #import "JasonAction.h" 9 | 10 | @interface JasonAgentAction : JasonAction 11 | 12 | @end 13 | -------------------------------------------------------------------------------- /app/Jasonette/JasonAppDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // JasonAppDelegate.h 3 | // Jasonette 4 | // 5 | // Copyright © 2016 gliechtenstein. All rights reserved. 6 | // 7 | #import <UIKit/UIKit.h> 8 | #import "JasonViewController.h" 9 | #include "Constants.h" 10 | 11 | @interface JasonAppDelegate : UIResponder <UIApplicationDelegate, UITabBarControllerDelegate> 12 | @property (strong, nonatomic) UIWindow *window; 13 | @property (strong, nonatomic) NSURL *launchURL; 14 | @end 15 | -------------------------------------------------------------------------------- /app/Jasonette/JasonAudioAction.h: -------------------------------------------------------------------------------- 1 | // 2 | // Audio.h 3 | // Jasonette 4 | // 5 | // Copyright © 2016 gliechtenstein. All rights reserved. 6 | // 7 | #import "JasonAction.h" 8 | #import "JasonHelper.h" 9 | #import <FreeStreamer/FSAudioStream.h> 10 | #import <AVFoundation/AVFoundation.h> 11 | #import <SDWebImage/UIImageView+WebCache.h> 12 | #import <IQAudioRecorderController/IQAudioRecorderViewController.h> 13 | @import MediaPlayer; 14 | 15 | @interface JasonAudioAction : JasonAction<IQAudioRecorderViewControllerDelegate, UINavigationControllerDelegate> 16 | @end 17 | -------------------------------------------------------------------------------- /app/Jasonette/JasonButtonComponent.h: -------------------------------------------------------------------------------- 1 | // 2 | // JasonButtonComponent.h 3 | // Jasonette 4 | // 5 | // Copyright © 2016 gliechtenstein. All rights reserved. 6 | // 7 | #import "JasonComponent.h" 8 | #import "Jason.h" 9 | #import "NoPaddingButton.h" 10 | #import "JasonLabelComponent.h" 11 | 12 | @interface JasonButtonComponent : JasonComponent 13 | @end 14 | -------------------------------------------------------------------------------- /app/Jasonette/JasonCacheAction.h: -------------------------------------------------------------------------------- 1 | // 2 | // Cache.h 3 | // Jasonette 4 | // 5 | // Copyright © 2016 gliechtenstein. All rights reserved. 6 | // 7 | #import "JasonAction.h" 8 | #import "JasonHelper.h" 9 | @interface JasonCacheAction : JasonAction 10 | @end 11 | -------------------------------------------------------------------------------- /app/Jasonette/JasonComponent.h: -------------------------------------------------------------------------------- 1 | // 2 | // JasonComponent.h 3 | // Jasonette 4 | // 5 | // Copyright © 2016 gliechtenstein. All rights reserved. 6 | // 7 | #import <UIKit/UIKit.h> 8 | #import "JasonComponentProtocol.h" 9 | #import "UIView+JasonComponentPayload.h" 10 | #import "JasonHelper.h" 11 | 12 | @interface JasonComponent : NSObject <JasonComponentProtocol> 13 | + (UIView *)build: (UIView*)component withJSON: (NSDictionary *)json withOptions: (NSDictionary *)options; 14 | + (void)stylize: (NSDictionary *)json component: (UIView *)el; 15 | + (void)stylize: (NSDictionary *)json text: (UIView *)el; 16 | + (void)updateForm:(NSDictionary *)kv; 17 | @end 18 | -------------------------------------------------------------------------------- /app/Jasonette/JasonComponentProtocol.h: -------------------------------------------------------------------------------- 1 | // 2 | // JasonComponentProtocol.h 3 | // Jasonette 4 | // 5 | // Copyright © 2016 gliechtenstein. All rights reserved. 6 | // 7 | #import <Foundation/Foundation.h> 8 | #import <UIKit/UIKit.h> 9 | 10 | @protocol JasonComponentProtocol <NSObject> 11 | 12 | + (UIView *)build: (UIView*)component withJSON: (NSDictionary *)json withOptions: (NSDictionary *)options; 13 | + (void)stylize: (NSDictionary *)json component: (UIView *)el; 14 | + (void)stylize: (NSDictionary *)json text: (UIView *)el; 15 | 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /app/Jasonette/JasonConvertAction.h: -------------------------------------------------------------------------------- 1 | // 2 | // JasonConvertAction.h 3 | // Jasonette 4 | // 5 | // Copyright © 2016 gliechtenstein. All rights reserved. 6 | // 7 | #import "JasonAction.h" 8 | #import <JavaScriptCore/JavaScriptCore.h> 9 | #import <JSCoreBom/JSCoreBom.h> 10 | @interface JasonConvertAction : JasonAction 11 | @end 12 | -------------------------------------------------------------------------------- /app/Jasonette/JasonGeoAction.h: -------------------------------------------------------------------------------- 1 | // 2 | // JasonGeoAction.h 3 | // Jasonette 4 | // 5 | // Copyright © 2016 gliechtenstein. All rights reserved. 6 | // 7 | #import "JasonAction.h" 8 | #import "INTULocationManager.h" 9 | @interface JasonGeoAction : JasonAction<UINavigationControllerDelegate> 10 | @end 11 | -------------------------------------------------------------------------------- /app/Jasonette/JasonGlobalAction.h: -------------------------------------------------------------------------------- 1 | // 2 | // JasonGlobalAction.h 3 | // Jasonette 4 | // 5 | // Created by e on 6/18/17. 6 | // Copyright © 2017 Jasonette. All rights reserved. 7 | // 8 | 9 | #import "JasonAction.h" 10 | #import "JasonHelper.h" 11 | 12 | @interface JasonGlobalAction : JasonAction 13 | 14 | @end 15 | -------------------------------------------------------------------------------- /app/Jasonette/JasonHorizontalSectionItem.h: -------------------------------------------------------------------------------- 1 | // 2 | // JasonHorizontalSectionItem.h 3 | // Jasonette 4 | // 5 | // Copyright © 2016 gliechtenstein. All rights reserved. 6 | // 7 | #import <UIKit/UIKit.h> 8 | 9 | @interface JasonHorizontalSectionItem : UICollectionViewCell 10 | 11 | @end 12 | -------------------------------------------------------------------------------- /app/Jasonette/JasonHtmlComponent.h: -------------------------------------------------------------------------------- 1 | // 2 | // JasonHtmlComponent.h 3 | // Jasonette 4 | // 5 | // Copyright © 2016 gliechtenstein. All rights reserved. 6 | // 7 | #import "JasonComponent.h" 8 | #import "Jason.h" 9 | 10 | @interface JasonHtmlComponent : JasonComponent 11 | @end 12 | -------------------------------------------------------------------------------- /app/Jasonette/JasonImageComponent.h: -------------------------------------------------------------------------------- 1 | // 2 | // JasonImageComponent.h 3 | // Jasonette 4 | // 5 | // Copyright © 2016 gliechtenstein. All rights reserved. 6 | // 7 | #import "JasonComponent.h" 8 | #import "JasonHelper.h" 9 | #import <SDWebImage/UIImageView+WebCache.h> 10 | 11 | @interface JasonImageComponent : JasonComponent 12 | @end 13 | -------------------------------------------------------------------------------- /app/Jasonette/JasonLabelComponent.h: -------------------------------------------------------------------------------- 1 | // 2 | // JasonLabelComponent.h 3 | // Jasonette 4 | // 5 | // Copyright © 2016 gliechtenstein. All rights reserved. 6 | // 7 | #import "JasonHelper.h" 8 | #import <TTTAttributedLabel/TTTAttributedLabel.h> 9 | #import "JasonComponent.h" 10 | 11 | @interface JasonLabelComponent : JasonComponent 12 | @end 13 | -------------------------------------------------------------------------------- /app/Jasonette/JasonLayer.h: -------------------------------------------------------------------------------- 1 | // 2 | // JasonLayer.h 3 | // Jasonette 4 | // 5 | // Copyright © 2016 gliechtenstein. All rights reserved. 6 | // 7 | #import <Foundation/Foundation.h> 8 | #import <UIKit/UIKit.h> 9 | #import "UIView+JasonComponentPayload.h" 10 | #import "Jason.h" 11 | 12 | @interface JasonLayer : NSObject 13 | @property (class, nonatomic, strong) NSMutableDictionary *stylesheet; 14 | + (NSArray *)setupLayers: (NSDictionary *)body withView: (UIView *)rootView; 15 | + (NSMutableDictionary *)applyStylesheet:(NSDictionary *)item; 16 | @end 17 | -------------------------------------------------------------------------------- /app/Jasonette/JasonLogAction.h: -------------------------------------------------------------------------------- 1 | // 2 | // JasonTimerAction.h 3 | // Jasonette 4 | // 5 | // Copyright © 2016 seletz. All rights reserved. 6 | // 7 | #import "JasonAction.h" 8 | @interface JasonLogAction : JasonAction 9 | @end 10 | -------------------------------------------------------------------------------- /app/Jasonette/JasonMapComponent.h: -------------------------------------------------------------------------------- 1 | // 2 | // JasonMapComponent.h 3 | // Jasonette 4 | // 5 | // Copyright © 2016 gliechtenstein. All rights reserved. 6 | // 7 | #import "JasonComponent.h" 8 | #import <MapKit/MapKit.h> 9 | #import "NSObject+JSONPayload.h" 10 | 11 | @interface JasonMapComponent : JasonComponent <MKMapViewDelegate> 12 | + (void)setRegion:(MKMapView *)mapView; 13 | @end 14 | -------------------------------------------------------------------------------- /app/Jasonette/JasonMediaAction.h: -------------------------------------------------------------------------------- 1 | // 2 | // JasonMediaAction.h 3 | // Jasonette 4 | // 5 | // Copyright © 2016 gliechtenstein. All rights reserved. 6 | // 7 | #import "JasonAction.h" 8 | #import "JasonHelper.h" 9 | #import "NSGIF.h" 10 | #import <AVFoundation/AVFoundation.h> 11 | #import "JasonPortraitPicker.h" 12 | #import <AVKit/AVKit.h> 13 | @interface JasonMediaAction : JasonAction <UINavigationControllerDelegate,UIImagePickerControllerDelegate> 14 | @end 15 | -------------------------------------------------------------------------------- /app/Jasonette/JasonMemory.h: -------------------------------------------------------------------------------- 1 | // 2 | // JasonMemory.h 3 | // Jasonette 4 | // 5 | // Copyright © 2016 gliechtenstein. All rights reserved. 6 | // 7 | #import <Foundation/Foundation.h> 8 | 9 | @interface JasonMemory : NSObject 10 | @property (nonatomic, strong) NSDictionary *_stack; 11 | @property (nonatomic, strong) NSDictionary *_register; 12 | @property (nonatomic, strong) NSDictionary *_caller; 13 | @property (nonatomic, assign) BOOL locked; 14 | @property (nonatomic, assign) BOOL need_to_exec; 15 | @property (nonatomic, assign) BOOL executing; 16 | + (JasonMemory*)client; 17 | - (void)pop; 18 | - (void)exception; 19 | - (void)setRegister:(id)value forKey: (NSString *)key; 20 | 21 | @end 22 | -------------------------------------------------------------------------------- /app/Jasonette/JasonNetworkAction.h: -------------------------------------------------------------------------------- 1 | // 2 | // JasonNetworkAction.h 3 | // Jasonette 4 | // 5 | // Copyright © 2016 gliechtenstein. All rights reserved. 6 | // 7 | #import "JasonAction.h" 8 | #import "JasonHelper.h" 9 | #import "JasonParser.h" 10 | #import <AFNetworking/AFNetworking.h> 11 | #import "JASONResponseSerializer.h" 12 | @import TWMessageBarManager; 13 | 14 | @interface JasonNetworkAction : JasonAction 15 | @end 16 | -------------------------------------------------------------------------------- /app/Jasonette/JasonNotificationAction.h: -------------------------------------------------------------------------------- 1 | // 2 | // JasonNotificationAction.h 3 | // Jasonette 4 | // 5 | // Created by Unknower on 11/6/16. 6 | // Copyright © 2016 Jasonette. All rights reserved. 7 | // 8 | 9 | #import "JasonAction.h" 10 | #import "JasonHelper.h" 11 | 12 | @interface JasonNotificationAction : JasonAction 13 | 14 | @end 15 | -------------------------------------------------------------------------------- /app/Jasonette/JasonOauthAction.h: -------------------------------------------------------------------------------- 1 | // 2 | // JasonOauthAction.h 3 | // Jasonette 4 | // 5 | // Copyright © 2016 gliechtenstein. All rights reserved. 6 | // 7 | #import "JasonAction.h" 8 | #import <SafariServices/SafariServices.h> 9 | #import "JasonHelper.h" 10 | #import <AFNetworking/AFNetworking.h> 11 | #import "AFOAuth2Manager.h" 12 | #import "AFHTTPRequestSerializer+OAuth2.h" 13 | @import AHKActionSheet; 14 | 15 | @interface JasonOauthAction : JasonAction <SFSafariViewControllerDelegate> 16 | @end 17 | -------------------------------------------------------------------------------- /app/Jasonette/JasonParser.h: -------------------------------------------------------------------------------- 1 | // 2 | // JasonParser.h 3 | // Jasonette 4 | // 5 | // Copyright © 2016 gliechtenstein. All rights reserved. 6 | // 7 | #import <Foundation/Foundation.h> 8 | #import "Jason.h" 9 | #import <JavaScriptCore/JavaScriptCore.h> 10 | @interface JasonParser : NSObject 11 | @property (nonatomic, strong) NSDictionary *options; 12 | + (NSDictionary *)parse: (NSDictionary *)data with: (id)parser; 13 | + (NSDictionary *)parse: (NSDictionary *)data type: (NSString *) type with: (id)parser; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /app/Jasonette/JasonPortraitPicker.h: -------------------------------------------------------------------------------- 1 | // 2 | // JasonPortraitPicker.h 3 | // Jasonette 4 | // 5 | // Copyright © 2016 gliechtenstein. All rights reserved. 6 | // 7 | #import <UIKit/UIKit.h> 8 | 9 | @interface JasonPortraitPicker : UIImagePickerController 10 | 11 | @end 12 | -------------------------------------------------------------------------------- /app/Jasonette/JasonPushAction.h: -------------------------------------------------------------------------------- 1 | // 2 | // JasonPushAction.h 3 | // Jasonette 4 | // 5 | // Created by e on 8/21/17. 6 | // Copyright © 2017 Jasonette. All rights reserved. 7 | // 8 | 9 | #import "JasonAction.h" 10 | #import "JasonHelper.h" 11 | #import "JasonPushService.h" 12 | #import <UserNotifications/UserNotifications.h> 13 | 14 | @interface JasonPushAction : JasonAction 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /app/Jasonette/JasonPushService.h: -------------------------------------------------------------------------------- 1 | // 2 | // JasonPushService.h 3 | // Jasonette 4 | // 5 | // Created by e on 8/25/17. 6 | // Copyright © 2017 Jasonette. All rights reserved. 7 | // 8 | 9 | #import <Foundation/Foundation.h> 10 | #import <UserNotifications/UserNotifications.h> 11 | #import "Jason.h" 12 | @interface JasonPushService : NSObject <UNUserNotificationCenterDelegate> 13 | 14 | @end 15 | -------------------------------------------------------------------------------- /app/Jasonette/JasonReturnAction.h: -------------------------------------------------------------------------------- 1 | // 2 | // JasonReturnAction.h 3 | // Jasonette 4 | // 5 | // Created by e on 1/4/17. 6 | // Copyright © 2017 Jasonette. All rights reserved. 7 | // 8 | 9 | #import "JasonAction.h" 10 | 11 | @interface JasonReturnAction : JasonAction 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /app/Jasonette/JasonScriptAction.h: -------------------------------------------------------------------------------- 1 | // 2 | // JasonScriptAction.h 3 | // Jasonette 4 | // 5 | // Created by e on 8/28/17. 6 | // Copyright © 2017 Jasonette. All rights reserved. 7 | // 8 | 9 | #import "JasonAction.h" 10 | #import "JasonHelper.h" 11 | #import <AFNetworking/AFNetworking.h> 12 | #import "JASONResponseSerializer.h" 13 | #import <JavaScriptCore/JavaScriptCore.h> 14 | @interface JasonScriptAction : JasonAction 15 | @end 16 | -------------------------------------------------------------------------------- /app/Jasonette/JasonSessionAction.h: -------------------------------------------------------------------------------- 1 | // 2 | // JasonSessionAction.h 3 | // Jasonette 4 | // 5 | // Copyright © 2016 gliechtenstein. All rights reserved. 6 | // 7 | #import "JasonAction.h" 8 | 9 | @interface JasonSessionAction : JasonAction 10 | 11 | @end 12 | -------------------------------------------------------------------------------- /app/Jasonette/JasonSliderComponent.h: -------------------------------------------------------------------------------- 1 | // 2 | // JasonSliderComponent.h 3 | // Jasonette 4 | // 5 | // Copyright © 2016 gliechtenstein. All rights reserved. 6 | // 7 | #import "JasonComponent.h" 8 | #import "JasonComponentFactory.h" 9 | 10 | @interface JasonSliderComponent : JasonComponent 11 | @end 12 | -------------------------------------------------------------------------------- /app/Jasonette/JasonSpaceComponent.h: -------------------------------------------------------------------------------- 1 | // 2 | // JasonSpaceComponent.h 3 | // Jasonette 4 | // 5 | // Copyright © 2016 gliechtenstein. All rights reserved. 6 | // 7 | #import "JasonComponent.h" 8 | #import "JasonHelper.h" 9 | 10 | @interface JasonSpaceComponent : JasonComponent 11 | @end 12 | -------------------------------------------------------------------------------- /app/Jasonette/JasonStack.h: -------------------------------------------------------------------------------- 1 | // 2 | // JasonStack.h 3 | // Jasonette 4 | // 5 | // Copyright © 2016 gliechtenstein. All rights reserved. 6 | // 7 | #import <Foundation/Foundation.h> 8 | 9 | @interface JasonStack : NSObject 10 | @property (nonatomic, strong) NSMutableArray *items; 11 | 12 | /** @name Static Initializer */ 13 | #pragma mark Static Initializer 14 | + (id)stack; 15 | 16 | /** @name Access methods */ 17 | #pragma mark Access methods 18 | - (void)push:(id)object; 19 | - (id)pop; 20 | 21 | @end 22 | -------------------------------------------------------------------------------- /app/Jasonette/JasonSwitchComponent.h: -------------------------------------------------------------------------------- 1 | // 2 | // JasonSwitchComponent.h 3 | // Jasonette 4 | // 5 | // Created by Camilo Castro on 13-10-17. 6 | // Copyright © 2017 Jasonette. All rights reserved. 7 | // 8 | 9 | #import "JasonComponent.h" 10 | #import "JasonComponentFactory.h" 11 | 12 | @interface JasonSwitchComponent : JasonComponent 13 | 14 | @end 15 | -------------------------------------------------------------------------------- /app/Jasonette/JasonTextareaComponent.h: -------------------------------------------------------------------------------- 1 | // 2 | // JasonTextareaComponent.h 3 | // Jasonette 4 | // 5 | // Copyright © 2016 gliechtenstein. All rights reserved. 6 | // 7 | #import "JasonComponent.h" 8 | #import <SZTextView/SZTextView.h> 9 | #import "JasonHelper.h" 10 | 11 | @interface JasonTextareaComponent : JasonComponent <UITextViewDelegate> 12 | @end 13 | -------------------------------------------------------------------------------- /app/Jasonette/JasonTextfieldComponent.h: -------------------------------------------------------------------------------- 1 | // 2 | // JasonTextfieldComponent.h 3 | // Jasonette 4 | // 5 | // Copyright © 2016 gliechtenstein. All rights reserved. 6 | // 7 | #import "JasonComponent.h" 8 | #import "JasonHelper.h" 9 | 10 | @interface JasonTextfieldComponent : JasonComponent <UITextFieldDelegate> 11 | @end 12 | -------------------------------------------------------------------------------- /app/Jasonette/JasonTimerAction.h: -------------------------------------------------------------------------------- 1 | // 2 | // JasonTimerAction.h 3 | // Jasonette 4 | // 5 | // Copyright © 2016 gliechtenstein. All rights reserved. 6 | // 7 | #import "JasonAction.h" 8 | @interface JasonTimerAction : JasonAction <UINavigationControllerDelegate> 9 | @end 10 | -------------------------------------------------------------------------------- /app/Jasonette/JasonUtilAction.h: -------------------------------------------------------------------------------- 1 | // 2 | // JasonUtilAction.h 3 | // Jasonette 4 | // 5 | // Copyright © 2016 gliechtenstein. All rights reserved. 6 | // 7 | #import "JasonAction.h" 8 | #import <MobileCoreServices/MobileCoreServices.h> 9 | #import "JasonHelper.h" 10 | #import <TWMessageBarManager/TWMessageBarManager.h> 11 | #import "JDStatusBarNotification.h" 12 | #import <AHKActionSheet/AHKActionSheet.h> 13 | #import <RMDateSelectionViewController/RMDateSelectionViewController.h> 14 | #import <SDWebImage/UIImageView+WebCache.h> 15 | @import APAddressBook; 16 | @interface JasonUtilAction : JasonAction 17 | @end 18 | -------------------------------------------------------------------------------- /app/Jasonette/JasonVerticalSectionItem.h: -------------------------------------------------------------------------------- 1 | // 2 | // JasonVerticalSectionItem.h 3 | // Jasonette 4 | // 5 | // Copyright © 2016 gliechtenstein. All rights reserved. 6 | // 7 | #import <UIKit/UIKit.h> 8 | #import "JasonHelper.h" 9 | #import <SWTableViewCell/SWTableViewCell.h> 10 | @interface JasonVerticalSectionItem : SWTableViewCell 11 | 12 | @end 13 | -------------------------------------------------------------------------------- /app/Jasonette/JasonVerticalSectionItem.m: -------------------------------------------------------------------------------- 1 | // 2 | // JasonVerticalSectionItem.m 3 | // Jasonette 4 | // 5 | // Copyright © 2016 gliechtenstein. All rights reserved. 6 | // 7 | #import "JasonVerticalSectionItem.h" 8 | 9 | @implementation JasonVerticalSectionItem 10 | 11 | 12 | - (void)setSelected:(BOOL)selected animated:(BOOL)animated { 13 | [super setSelected:selected animated:animated]; 14 | } 15 | 16 | - (void)prepareForReuse { 17 | [super prepareForReuse]; 18 | for(UIView *subview in [self.contentView subviews]) { 19 | [subview removeFromSuperview]; 20 | } 21 | } 22 | 23 | @end 24 | -------------------------------------------------------------------------------- /app/Jasonette/JasonVisionAction.h: -------------------------------------------------------------------------------- 1 | // 2 | // JasonVisionAction.h 3 | // Jasonette 4 | // 5 | // Created by e on 10/25/17. 6 | // Copyright © 2017 Jasonette. All rights reserved. 7 | // 8 | 9 | #import "JasonAction.h" 10 | #import "JasonVisionService.h" 11 | #import "Jason.h" 12 | 13 | @interface JasonVisionAction : JasonAction 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /app/Jasonette/JasonVisionService.h: -------------------------------------------------------------------------------- 1 | // 2 | // JasonVisionService.h 3 | // Jasonette 4 | // 5 | // Created by e on 10/25/17. 6 | // Copyright © 2017 Jasonette. All rights reserved. 7 | // 8 | 9 | #import <Foundation/Foundation.h> 10 | #import <AVFoundation/AVFoundation.h> 11 | #import "Jason.h" 12 | #import "JasonMemory.h" 13 | 14 | @interface JasonVisionService : NSObject <AVCaptureMetadataOutputObjectsDelegate> 15 | @property (nonatomic, assign) BOOL is_open; 16 | @end 17 | -------------------------------------------------------------------------------- /app/Jasonette/JasonWebsocketAction.h: -------------------------------------------------------------------------------- 1 | // 2 | // JasonWebsocketAction.h 3 | // Jasonette 4 | // 5 | // Created by e on 11/3/17. 6 | // Copyright © 2017 Jasonette. All rights reserved. 7 | // 8 | 9 | #import "JasonAction.h" 10 | #import "JasonWebsocketService.h" 11 | @interface JasonWebsocketAction : JasonAction 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /app/Jasonette/JasonWebsocketService.h: -------------------------------------------------------------------------------- 1 | // 2 | // JasonWebsocketService.h 3 | // Jasonette 4 | // 5 | // Created by e on 11/3/17. 6 | // Copyright © 2017 Jasonette. All rights reserved. 7 | // 8 | 9 | #import <Foundation/Foundation.h> 10 | #import <SocketRocket/SocketRocket.h> 11 | #import "Jason.h" 12 | 13 | @interface JasonWebsocketService : NSObject <SRWebSocketDelegate> 14 | @property (nonatomic, strong) SRWebSocket *websocket; 15 | - (void) open: (NSDictionary *)options; 16 | - (void) close; 17 | - (void) send: (NSDictionary *)options; 18 | @end 19 | -------------------------------------------------------------------------------- /app/Jasonette/Media.xcassets/AppIcon.appiconset/Icon-1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonette/JASONETTE-iOS/44849b19e275251f40398de5462fe80b7590cb4b/app/Jasonette/Media.xcassets/AppIcon.appiconset/Icon-1024@1x.png -------------------------------------------------------------------------------- /app/Jasonette/Media.xcassets/AppIcon.appiconset/Icon-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonette/JASONETTE-iOS/44849b19e275251f40398de5462fe80b7590cb4b/app/Jasonette/Media.xcassets/AppIcon.appiconset/Icon-20.png -------------------------------------------------------------------------------- /app/Jasonette/Media.xcassets/AppIcon.appiconset/Icon-20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonette/JASONETTE-iOS/44849b19e275251f40398de5462fe80b7590cb4b/app/Jasonette/Media.xcassets/AppIcon.appiconset/Icon-20@2x.png -------------------------------------------------------------------------------- /app/Jasonette/Media.xcassets/AppIcon.appiconset/Icon-20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonette/JASONETTE-iOS/44849b19e275251f40398de5462fe80b7590cb4b/app/Jasonette/Media.xcassets/AppIcon.appiconset/Icon-20@3x.png -------------------------------------------------------------------------------- /app/Jasonette/Media.xcassets/AppIcon.appiconset/Icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonette/JASONETTE-iOS/44849b19e275251f40398de5462fe80b7590cb4b/app/Jasonette/Media.xcassets/AppIcon.appiconset/Icon-40.png -------------------------------------------------------------------------------- /app/Jasonette/Media.xcassets/AppIcon.appiconset/Icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonette/JASONETTE-iOS/44849b19e275251f40398de5462fe80b7590cb4b/app/Jasonette/Media.xcassets/AppIcon.appiconset/Icon-40@2x.png -------------------------------------------------------------------------------- /app/Jasonette/Media.xcassets/AppIcon.appiconset/Icon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonette/JASONETTE-iOS/44849b19e275251f40398de5462fe80b7590cb4b/app/Jasonette/Media.xcassets/AppIcon.appiconset/Icon-40@3x.png -------------------------------------------------------------------------------- /app/Jasonette/Media.xcassets/AppIcon.appiconset/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonette/JASONETTE-iOS/44849b19e275251f40398de5462fe80b7590cb4b/app/Jasonette/Media.xcassets/AppIcon.appiconset/Icon-60@2x.png -------------------------------------------------------------------------------- /app/Jasonette/Media.xcassets/AppIcon.appiconset/Icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonette/JASONETTE-iOS/44849b19e275251f40398de5462fe80b7590cb4b/app/Jasonette/Media.xcassets/AppIcon.appiconset/Icon-60@3x.png -------------------------------------------------------------------------------- /app/Jasonette/Media.xcassets/AppIcon.appiconset/Icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonette/JASONETTE-iOS/44849b19e275251f40398de5462fe80b7590cb4b/app/Jasonette/Media.xcassets/AppIcon.appiconset/Icon-72.png -------------------------------------------------------------------------------- /app/Jasonette/Media.xcassets/AppIcon.appiconset/Icon-72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonette/JASONETTE-iOS/44849b19e275251f40398de5462fe80b7590cb4b/app/Jasonette/Media.xcassets/AppIcon.appiconset/Icon-72@2x.png -------------------------------------------------------------------------------- /app/Jasonette/Media.xcassets/AppIcon.appiconset/Icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonette/JASONETTE-iOS/44849b19e275251f40398de5462fe80b7590cb4b/app/Jasonette/Media.xcassets/AppIcon.appiconset/Icon-76.png -------------------------------------------------------------------------------- /app/Jasonette/Media.xcassets/AppIcon.appiconset/Icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonette/JASONETTE-iOS/44849b19e275251f40398de5462fe80b7590cb4b/app/Jasonette/Media.xcassets/AppIcon.appiconset/Icon-76@2x.png -------------------------------------------------------------------------------- /app/Jasonette/Media.xcassets/AppIcon.appiconset/Icon-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonette/JASONETTE-iOS/44849b19e275251f40398de5462fe80b7590cb4b/app/Jasonette/Media.xcassets/AppIcon.appiconset/Icon-83.5@2x.png -------------------------------------------------------------------------------- /app/Jasonette/Media.xcassets/AppIcon.appiconset/Icon-Small-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonette/JASONETTE-iOS/44849b19e275251f40398de5462fe80b7590cb4b/app/Jasonette/Media.xcassets/AppIcon.appiconset/Icon-Small-50.png -------------------------------------------------------------------------------- /app/Jasonette/Media.xcassets/AppIcon.appiconset/Icon-Small-50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonette/JASONETTE-iOS/44849b19e275251f40398de5462fe80b7590cb4b/app/Jasonette/Media.xcassets/AppIcon.appiconset/Icon-Small-50@2x.png -------------------------------------------------------------------------------- /app/Jasonette/Media.xcassets/AppIcon.appiconset/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonette/JASONETTE-iOS/44849b19e275251f40398de5462fe80b7590cb4b/app/Jasonette/Media.xcassets/AppIcon.appiconset/Icon-Small.png -------------------------------------------------------------------------------- /app/Jasonette/Media.xcassets/AppIcon.appiconset/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonette/JASONETTE-iOS/44849b19e275251f40398de5462fe80b7590cb4b/app/Jasonette/Media.xcassets/AppIcon.appiconset/Icon-Small@2x.png -------------------------------------------------------------------------------- /app/Jasonette/Media.xcassets/AppIcon.appiconset/Icon-Small@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonette/JASONETTE-iOS/44849b19e275251f40398de5462fe80b7590cb4b/app/Jasonette/Media.xcassets/AppIcon.appiconset/Icon-Small@3x.png -------------------------------------------------------------------------------- /app/Jasonette/Media.xcassets/AppIcon.appiconset/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonette/JASONETTE-iOS/44849b19e275251f40398de5462fe80b7590cb4b/app/Jasonette/Media.xcassets/AppIcon.appiconset/Icon.png -------------------------------------------------------------------------------- /app/Jasonette/Media.xcassets/AppIcon.appiconset/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonette/JASONETTE-iOS/44849b19e275251f40398de5462fe80b7590cb4b/app/Jasonette/Media.xcassets/AppIcon.appiconset/Icon@2x.png -------------------------------------------------------------------------------- /app/Jasonette/NSObject+JSONPayload.h: -------------------------------------------------------------------------------- 1 | // 2 | // NSObject+JSONPayload.h 3 | // Jasonette 4 | // 5 | // Created by e on 7/28/17. 6 | // Copyright © 2017 Jasonette. All rights reserved. 7 | // 8 | 9 | #import <Foundation/Foundation.h> 10 | #import <objc/runtime.h> 11 | 12 | @interface NSObject (JSONPayload) 13 | 14 | @property ( nonatomic, strong ) NSMutableDictionary* payload; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /app/Jasonette/NSObject+JSONPayload.m: -------------------------------------------------------------------------------- 1 | // 2 | // NSObject+JSONPayload.m 3 | // Jasonette 4 | // 5 | // Created by e on 7/28/17. 6 | // Copyright © 2017 Jasonette. All rights reserved. 7 | // 8 | 9 | #import "NSObject+JSONPayload.h" 10 | 11 | @implementation NSObject (JSONPayload) 12 | -(void)setPayload:(id)payload 13 | { 14 | objc_setAssociatedObject( self, "_payload", payload, OBJC_ASSOCIATION_RETAIN_NONATOMIC ) ; 15 | } 16 | 17 | -(id)payload 18 | { 19 | return objc_getAssociatedObject( self, "_payload" ) ; 20 | } 21 | 22 | @end 23 | -------------------------------------------------------------------------------- /app/Jasonette/Next@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonette/JASONETTE-iOS/44849b19e275251f40398de5462fe80b7590cb4b/app/Jasonette/Next@2x.png -------------------------------------------------------------------------------- /app/Jasonette/NoPaddingButton.h: -------------------------------------------------------------------------------- 1 | // 2 | // NoPaddingButton.h 3 | // Jasonette 4 | // 5 | // Created by e on 4/7/17. 6 | // Copyright © 2017 Jasonette. All rights reserved. 7 | // 8 | 9 | #import <UIKit/UIKit.h> 10 | 11 | @interface NoPaddingButton : UIButton 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /app/Jasonette/UIView+JasonComponentPayload.h: -------------------------------------------------------------------------------- 1 | // 2 | // UIView+Extension.h 3 | // Jasonette 4 | // 5 | // Copyright © 2016 gliechtenstein. All rights reserved. 6 | // 7 | // Enable attaching payloads to UIView subviews 8 | #import <UIKit/UIKit.h> 9 | #import <objc/runtime.h> 10 | 11 | @interface UIView (JasonComponentPayload) 12 | 13 | @property ( nonatomic, strong ) NSMutableDictionary* payload; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /app/Jasonette/UIView+JasonComponentPayload.m: -------------------------------------------------------------------------------- 1 | // 2 | // UIView+Extension.m 3 | // Jasonette 4 | // 5 | // Copyright © 2016 gliechtenstein. All rights reserved. 6 | // 7 | #import "UIView+JasonComponentPayload.h" 8 | 9 | @implementation UIView (JasonComponentPayload) 10 | -(void)setPayload:(id)payload 11 | { 12 | objc_setAssociatedObject( self, "_payload", payload, OBJC_ASSOCIATION_RETAIN_NONATOMIC ) ; 13 | } 14 | 15 | -(id)payload 16 | { 17 | return objc_getAssociatedObject( self, "_payload" ) ; 18 | } 19 | 20 | @end 21 | -------------------------------------------------------------------------------- /app/Jasonette/icon-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonette/JASONETTE-iOS/44849b19e275251f40398de5462fe80b7590cb4b/app/Jasonette/icon-error.png -------------------------------------------------------------------------------- /app/Jasonette/icon-error@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonette/JASONETTE-iOS/44849b19e275251f40398de5462fe80b7590cb4b/app/Jasonette/icon-error@2x.png -------------------------------------------------------------------------------- /app/Jasonette/icon-info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonette/JASONETTE-iOS/44849b19e275251f40398de5462fe80b7590cb4b/app/Jasonette/icon-info.png -------------------------------------------------------------------------------- /app/Jasonette/icon-info@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonette/JASONETTE-iOS/44849b19e275251f40398de5462fe80b7590cb4b/app/Jasonette/icon-info@2x.png -------------------------------------------------------------------------------- /app/Jasonette/icon-success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonette/JASONETTE-iOS/44849b19e275251f40398de5462fe80b7590cb4b/app/Jasonette/icon-success.png -------------------------------------------------------------------------------- /app/Jasonette/icon-success@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonette/JASONETTE-iOS/44849b19e275251f40398de5462fe80b7590cb4b/app/Jasonette/icon-success@2x.png -------------------------------------------------------------------------------- /app/Jasonette/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // Jasonette 4 | // 5 | // Copyright © 2016 gliechtenstein. All rights reserved. 6 | // 7 | #import <UIKit/UIKit.h> 8 | #import "JasonAppDelegate.h" 9 | 10 | int main(int argc, char * argv[]) { 11 | @autoreleasepool { 12 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([JasonAppDelegate class])); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /app/Jasonette/more@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonette/JASONETTE-iOS/44849b19e275251f40398de5462fe80b7590cb4b/app/Jasonette/more@2x.png -------------------------------------------------------------------------------- /app/Jasonette/placeholder@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonette/JASONETTE-iOS/44849b19e275251f40398de5462fe80b7590cb4b/app/Jasonette/placeholder@2x.png -------------------------------------------------------------------------------- /app/Jasonette/placeholderr@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonette/JASONETTE-iOS/44849b19e275251f40398de5462fe80b7590cb4b/app/Jasonette/placeholderr@2x.png -------------------------------------------------------------------------------- /app/Jasonette/settings.plist: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="UTF-8"?> 2 | <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> 3 | <plist version="1.0"> 4 | <dict> 5 | <key>client_id</key> 6 | <string></string> 7 | <key>client_secret</key> 8 | <string></string> 9 | <key>url</key> 10 | <string>https://jasonette.github.io/Jasonpedia/hello.json</string> 11 | <key>loading</key> 12 | <false/> 13 | <key>launch</key> 14 | <string></string> 15 | <key>debug</key> 16 | <false/> 17 | </dict> 18 | </plist> 19 | -------------------------------------------------------------------------------- /app/Pods/AHKActionSheet/Classes/AHKActionSheetViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // AHKActionSheetViewController.h 3 | // AHKActionSheetExample 4 | // 5 | // Created by Arkadiusz on 09-04-14. 6 | // Copyright (c) 2014 Arkadiusz Holko. All rights reserved. 7 | // 8 | 9 | #import <UIKit/UIKit.h> 10 | 11 | @class AHKActionSheet; 12 | 13 | @interface AHKActionSheetViewController : UIViewController 14 | @property (strong, nonatomic) AHKActionSheet *actionSheet; 15 | @end 16 | -------------------------------------------------------------------------------- /app/Pods/AHKActionSheet/Classes/UIWindow+AHKAdditions.h: -------------------------------------------------------------------------------- 1 | // 2 | // UIWindow+AHKAdditions.h 3 | // AHKActionSheetExample 4 | // 5 | // Created by Arkadiusz on 14-04-14. 6 | // Copyright (c) 2014 Arkadiusz Holko. All rights reserved. 7 | // 8 | // Original source: https://github.com/Sumi-Interactive/SIAlertView/blob/master/SIAlertView/UIWindow%2BSIUtils.h 9 | 10 | #import <UIKit/UIKit.h> 11 | 12 | @interface UIWindow (AHKAdditions) 13 | 14 | - (UIViewController *)ahk_viewControllerForStatusBarStyle; 15 | - (UIViewController *)ahk_viewControllerForStatusBarHidden; 16 | - (UIImage *)ahk_snapshot; 17 | 18 | @end 19 | -------------------------------------------------------------------------------- /app/Pods/APAddressBook/Pod/Core/Private/Builders/APContactBuilder.h: -------------------------------------------------------------------------------- 1 | // 2 | // APContactBuilder 3 | // AddressBook 4 | // 5 | // Created by Alexey Belkevich on 21.09.15. 6 | // Copyright © 2015 alterplay. All rights reserved. 7 | // 8 | 9 | #import <Foundation/Foundation.h> 10 | #import <AddressBook/ABRecord.h> 11 | #import "APTypes.h" 12 | 13 | @class APContact; 14 | 15 | @interface APContactBuilder : NSObject 16 | 17 | - (APContact *)contactWithRecordRef:(ABRecordRef)recordRef fieldMask:(APContactField)fieldMask; 18 | 19 | @end -------------------------------------------------------------------------------- /app/Pods/APAddressBook/Pod/Core/Private/Builders/APContactListBuilder.h: -------------------------------------------------------------------------------- 1 | // 2 | // APContactListBuilder 3 | // AddressBook 4 | // 5 | // Created by Alexey Belkevich on 06.10.15. 6 | // Copyright © 2015 alterplay. All rights reserved. 7 | // 8 | 9 | #import <Foundation/Foundation.h> 10 | 11 | @class APContact; 12 | 13 | @interface APContactListBuilder : NSObject 14 | 15 | @property (nonatomic, strong) BOOL (^filterBlock)(APContact *contact); 16 | @property (nonatomic, strong) NSArray *sortDescriptors; 17 | 18 | - (NSArray *)contactListWithAllContacts:(NSArray *)allContacts; 19 | 20 | @end -------------------------------------------------------------------------------- /app/Pods/APAddressBook/Pod/Core/Private/Deprecated/APDeprecated.h: -------------------------------------------------------------------------------- 1 | // 2 | // APDeprecated.h 3 | // AddressBook 4 | // 5 | // Created by Alexey Belkevich on 05.01.16. 6 | // Copyright (c) 2016 alterplay. All rights reserved. 7 | // 8 | 9 | #define AP_DEPRECATED(_useInstead) __attribute__((deprecated("Use " #_useInstead " instead"))) -------------------------------------------------------------------------------- /app/Pods/APAddressBook/Pod/Core/Private/Extractors/APImageExtractor.h: -------------------------------------------------------------------------------- 1 | // 2 | // APImageExtractor 3 | // AddressBook 4 | // 5 | // Created by Alexey Belkevich on 29.09.15. 6 | // Copyright © 2015 alterplay. All rights reserved. 7 | // 8 | 9 | #import <Foundation/Foundation.h> 10 | #import <UIKit/UIKit.h> 11 | #import <AddressBook/AddressBook.h> 12 | 13 | @interface APImageExtractor : NSObject 14 | 15 | + (UIImage *)thumbnailWithRecordRef:(ABRecordRef)recordRef; 16 | + (UIImage *)photoWithRecordRef:(ABRecordRef)recordRef; 17 | 18 | @end -------------------------------------------------------------------------------- /app/Pods/APAddressBook/Pod/Core/Private/Helpers/APSocialServiceHelper.h: -------------------------------------------------------------------------------- 1 | // 2 | // APSocialServiceHelper 3 | // AddressBook 4 | // 5 | // Created by Alexey Belkevich on 22.09.15. 6 | // Copyright © 2015 alterplay. All rights reserved. 7 | // 8 | 9 | #import <Foundation/Foundation.h> 10 | #import "APTypes.h" 11 | 12 | @interface APSocialServiceHelper : NSObject 13 | 14 | + (APSocialNetworkType)socialNetworkTypeWithString:(NSString *)string; 15 | 16 | @end -------------------------------------------------------------------------------- /app/Pods/APAddressBook/Pod/Core/Private/Routine/APAddressBookAccessRoutine.h: -------------------------------------------------------------------------------- 1 | // 2 | // APAddressBookAccessRoutine 3 | // AddressBook 4 | // 5 | // Created by Alexey Belkevich on 21.09.15. 6 | // Copyright © 2015 alterplay. All rights reserved. 7 | // 8 | 9 | #import <Foundation/Foundation.h> 10 | #import "APAddressBookBaseRoutine.h" 11 | #import "APTypes.h" 12 | 13 | @interface APAddressBookAccessRoutine : APAddressBookBaseRoutine 14 | 15 | - (void)requestAccessWithCompletion:(void (^)(BOOL granted, NSError *error))completionBlock; 16 | + (APAddressBookAccess)accessStatus; 17 | 18 | @end -------------------------------------------------------------------------------- /app/Pods/APAddressBook/Pod/Core/Private/Routine/APAddressBookExternalChangeDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // APAddressBookExternalChangeDelegate 3 | // AddressBook 4 | // 5 | // Created by Alexey Belkevich on 21.09.15. 6 | // Copyright © 2015 alterplay. All rights reserved. 7 | // 8 | 9 | #import <Foundation/Foundation.h> 10 | 11 | @protocol APAddressBookExternalChangeDelegate <NSObject> 12 | 13 | - (void)addressBookDidChange; 14 | 15 | @end -------------------------------------------------------------------------------- /app/Pods/APAddressBook/Pod/Core/Private/Routine/APAddressBookExternalChangeRoutine.h: -------------------------------------------------------------------------------- 1 | // 2 | // APAddressBookExternalChangeRoutine 3 | // AddressBook 4 | // 5 | // Created by Alexey Belkevich on 21.09.15. 6 | // Copyright © 2015 alterplay. All rights reserved. 7 | // 8 | 9 | #import <Foundation/Foundation.h> 10 | #import "APAddressBookBaseRoutine.h" 11 | #import "APAddressBookExternalChangeDelegate.h" 12 | 13 | @interface APAddressBookExternalChangeRoutine : APAddressBookBaseRoutine 14 | 15 | @property (nonatomic, weak) NSObject <APAddressBookExternalChangeDelegate> *delegate; 16 | 17 | @end -------------------------------------------------------------------------------- /app/Pods/APAddressBook/Pod/Core/Private/Routine/Base/APAddressBookBaseRoutine.h: -------------------------------------------------------------------------------- 1 | // 2 | // APAddressBookBaseRoutine 3 | // AddressBook 4 | // 5 | // Created by Alexey Belkevich on 21.09.15. 6 | // Copyright © 2015 alterplay. All rights reserved. 7 | // 8 | 9 | #import <Foundation/Foundation.h> 10 | 11 | @class APAddressBookRefWrapper; 12 | 13 | @interface APAddressBookBaseRoutine : NSObject 14 | 15 | @property (nonatomic, readonly) APAddressBookRefWrapper *wrapper; 16 | 17 | - (instancetype)initWithAddressBookRefWrapper:(APAddressBookRefWrapper *)wrapper; 18 | 19 | @end -------------------------------------------------------------------------------- /app/Pods/APAddressBook/Pod/Core/Private/Thread/APThread.h: -------------------------------------------------------------------------------- 1 | // 2 | // APThread 3 | // APAddressBook 4 | // 5 | // Created by Alexey Belkevich on 20.08.15. 6 | // Copyright © 2015 alterplay. All rights reserved. 7 | // 8 | 9 | #import <Foundation/Foundation.h> 10 | 11 | @interface APThread : NSThread 12 | 13 | - (void)dispatchAsync:(void (^)())block; 14 | - (void)dispatchSync:(void (^)())block; 15 | 16 | @end -------------------------------------------------------------------------------- /app/Pods/APAddressBook/Pod/Core/Private/Wrapper/APAddressBookRefWrapper.h: -------------------------------------------------------------------------------- 1 | // 2 | // APAddressBookRefWrapper 3 | // AddressBook 4 | // 5 | // Created by Alexey Belkevich on 21.09.15. 6 | // Copyright © 2015 alterplay. All rights reserved. 7 | // 8 | 9 | #import <Foundation/Foundation.h> 10 | #import <AddressBook/AddressBook.h> 11 | 12 | @interface APAddressBookRefWrapper : NSObject 13 | 14 | @property (nonatomic, readonly) ABAddressBookRef ref; 15 | @property (nonatomic, readonly) NSError *error; 16 | 17 | @end -------------------------------------------------------------------------------- /app/Pods/APAddressBook/Pod/Core/Public/Models/APAddress.m: -------------------------------------------------------------------------------- 1 | // 2 | // APAddress.m 3 | // APAddressBook 4 | // 5 | // Created by Alexey Belkevich on 4/19/14. 6 | // Copyright (c) 2014 alterplay. All rights reserved. 7 | // 8 | 9 | #import "APAddress.h" 10 | 11 | @implementation APAddress 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /app/Pods/APAddressBook/Pod/Core/Public/Models/APContact.m: -------------------------------------------------------------------------------- 1 | // 2 | // APContact.m 3 | // APAddressBook 4 | // 5 | // Created by Alexey Belkevich on 1/10/14. 6 | // Copyright (c) 2014 alterplay. All rights reserved. 7 | // 8 | 9 | #import "APContact.h" 10 | 11 | @implementation APContact 12 | @end 13 | -------------------------------------------------------------------------------- /app/Pods/APAddressBook/Pod/Core/Public/Models/APContactDate.h: -------------------------------------------------------------------------------- 1 | // 2 | // APContactDate.h 3 | // APAddressBook 4 | // 5 | // Created by Alexandre Plisson on 14/01/2016. 6 | // 7 | // 8 | 9 | #import <Foundation/Foundation.h> 10 | 11 | @interface APContactDate : NSObject 12 | 13 | @property (nullable, nonatomic, strong) NSDate *date; 14 | @property (nullable, nonatomic, strong) NSString *originalLabel; 15 | @property (nullable, nonatomic, strong) NSString *localizedLabel; 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /app/Pods/APAddressBook/Pod/Core/Public/Models/APContactDate.m: -------------------------------------------------------------------------------- 1 | // 2 | // APContactDate.m 3 | // APAddressBook 4 | // 5 | // Created by Alexandre Plisson on 14/01/2016. 6 | // 7 | // 8 | 9 | #import "APContactDate.h" 10 | 11 | @implementation APContactDate 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /app/Pods/APAddressBook/Pod/Core/Public/Models/APEmail.h: -------------------------------------------------------------------------------- 1 | // 2 | // APEmail.h 3 | // APAddressBook 4 | // 5 | // Created by Sean Langley on 2015-03-18. 6 | // Copyright (c) 2015 Sean Langley. All rights reserved. 7 | // 8 | 9 | #import <Foundation/Foundation.h> 10 | 11 | @interface APEmail : NSObject 12 | 13 | @property (nullable, nonatomic, strong) NSString *address; 14 | @property (nullable, nonatomic, strong) NSString *originalLabel; 15 | @property (nullable, nonatomic, strong) NSString *localizedLabel; 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /app/Pods/APAddressBook/Pod/Core/Public/Models/APEmail.m: -------------------------------------------------------------------------------- 1 | // 2 | // APEmail.m 3 | // APAddressBook 4 | // 5 | // Created by Sean Langley on 2015-03-18. 6 | // Copyright (c) 2015 Sean Langley. All rights reserved. 7 | // 8 | 9 | #import "APEmail.h" 10 | 11 | @implementation APEmail 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /app/Pods/APAddressBook/Pod/Core/Public/Models/APJob.h: -------------------------------------------------------------------------------- 1 | // 2 | // APJob 3 | // APAddressBook 4 | // 5 | // Created by Alexey Belkevich on 05.10.15. 6 | // Copyright © 2015 alterplay. All rights reserved. 7 | // 8 | 9 | #import <Foundation/Foundation.h> 10 | 11 | @interface APJob : NSObject 12 | 13 | @property (nullable, nonatomic, strong) NSString *company; 14 | @property (nullable, nonatomic, strong) NSString *jobTitle; 15 | 16 | @end -------------------------------------------------------------------------------- /app/Pods/APAddressBook/Pod/Core/Public/Models/APJob.m: -------------------------------------------------------------------------------- 1 | // 2 | // APJob 3 | // APAddressBook 4 | // 5 | // Created by Alexey Belkevich on 05.10.15. 6 | // Copyright © 2015 alterplay. All rights reserved. 7 | // 8 | 9 | #import "APJob.h" 10 | 11 | @implementation APJob 12 | @end -------------------------------------------------------------------------------- /app/Pods/APAddressBook/Pod/Core/Public/Models/APName.h: -------------------------------------------------------------------------------- 1 | // 2 | // APName 3 | // APAddressBook 4 | // 5 | // Created by Alexey Belkevich on 05.10.15. 6 | // Copyright © 2015 alterplay. All rights reserved. 7 | // 8 | 9 | #import <Foundation/Foundation.h> 10 | 11 | @interface APName : NSObject 12 | 13 | @property (nullable, nonatomic, strong) NSString *firstName; 14 | @property (nullable, nonatomic, strong) NSString *lastName; 15 | @property (nullable, nonatomic, strong) NSString *middleName; 16 | @property (nullable, nonatomic, strong) NSString *compositeName; 17 | 18 | @end -------------------------------------------------------------------------------- /app/Pods/APAddressBook/Pod/Core/Public/Models/APName.m: -------------------------------------------------------------------------------- 1 | // 2 | // APName 3 | // APAddressBook 4 | // 5 | // Created by Alexey Belkevich on 05.10.15. 6 | // Copyright © 2015 alterplay. All rights reserved. 7 | // 8 | 9 | #import "APName.h" 10 | 11 | @implementation APName 12 | @end -------------------------------------------------------------------------------- /app/Pods/APAddressBook/Pod/Core/Public/Models/APPhone.h: -------------------------------------------------------------------------------- 1 | // 2 | // APPhone.h 3 | // APAddressBook 4 | // 5 | // Created by John Hobbs on 2/7/14. 6 | // Copyright (c) 2014 alterplay. All rights reserved. 7 | // 8 | 9 | #import <Foundation/Foundation.h> 10 | 11 | @interface APPhone : NSObject 12 | 13 | @property (nullable, nonatomic, strong) NSString *number; 14 | @property (nullable, nonatomic, strong) NSString *originalLabel; 15 | @property (nullable, nonatomic, strong) NSString *localizedLabel; 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /app/Pods/APAddressBook/Pod/Core/Public/Models/APPhone.m: -------------------------------------------------------------------------------- 1 | // 2 | // APPhone.m 3 | // APAddressBook 4 | // 5 | // Created by John Hobbs on 2/7/14. 6 | // Copyright (c) 2014 alterplay. All rights reserved. 7 | // 8 | 9 | #import "APPhone.h" 10 | 11 | @implementation APPhone 12 | 13 | #pragma mark - overrides 14 | 15 | - (NSString *)description 16 | { 17 | return [NSString stringWithFormat:@"%@ (%@) - %@", self.localizedLabel, self.originalLabel, 18 | self.number]; 19 | } 20 | 21 | @end 22 | -------------------------------------------------------------------------------- /app/Pods/APAddressBook/Pod/Core/Public/Models/APRecordDate.h: -------------------------------------------------------------------------------- 1 | // 2 | // APRecordDate 3 | // APAddressBook 4 | // 5 | // Created by Alexey Belkevich on 05.10.15. 6 | // Copyright © 2015 alterplay. All rights reserved. 7 | // 8 | 9 | #import <Foundation/Foundation.h> 10 | 11 | @interface APRecordDate : NSObject 12 | 13 | @property (nonnull, nonatomic, strong) NSDate *creationDate; 14 | @property (nonnull, nonatomic, strong) NSDate *modificationDate; 15 | 16 | @end -------------------------------------------------------------------------------- /app/Pods/APAddressBook/Pod/Core/Public/Models/APRecordDate.m: -------------------------------------------------------------------------------- 1 | // 2 | // APRecordDate 3 | // APAddressBook 4 | // 5 | // Created by Alexey Belkevich on 05.10.15. 6 | // Copyright © 2015 alterplay. All rights reserved. 7 | // 8 | 9 | #import "APRecordDate.h" 10 | 11 | @implementation APRecordDate 12 | @end -------------------------------------------------------------------------------- /app/Pods/APAddressBook/Pod/Core/Public/Models/APRelatedPerson.h: -------------------------------------------------------------------------------- 1 | // 2 | // APPhone.h 3 | // APAddressBook 4 | // 5 | // Created by John Hobbs on 2/7/14. 6 | // Copyright (c) 2014 alterplay. All rights reserved. 7 | // 8 | 9 | #import <Foundation/Foundation.h> 10 | 11 | @interface APRelatedPerson : NSObject 12 | 13 | @property (nullable, nonatomic, strong) NSString *name; 14 | @property (nullable, nonatomic, strong) NSString *originalLabel; 15 | @property (nullable, nonatomic, strong) NSString *localizedLabel; 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /app/Pods/APAddressBook/Pod/Core/Public/Models/APRelatedPerson.m: -------------------------------------------------------------------------------- 1 | // 2 | // APPhone.m 3 | // APAddressBook 4 | // 5 | // Created by John Hobbs on 2/7/14. 6 | // Copyright (c) 2014 alterplay. All rights reserved. 7 | // 8 | 9 | #import "APRelatedPerson.h" 10 | 11 | @implementation APRelatedPerson 12 | 13 | #pragma mark - overrides 14 | 15 | - (NSString *)description 16 | { 17 | return [NSString stringWithFormat:@"%@ (%@) - %@", self.localizedLabel, self.originalLabel, self.name]; 18 | } 19 | 20 | @end 21 | -------------------------------------------------------------------------------- /app/Pods/APAddressBook/Pod/Core/Public/Models/APSocialProfile.h: -------------------------------------------------------------------------------- 1 | // 2 | // APSocialContact.h 3 | // APAddressBook 4 | // 5 | // Created by David on 2014-08-01. 6 | // Copyright (c) 2014 David Muzi. All rights reserved. 7 | // 8 | 9 | #import <Foundation/Foundation.h> 10 | #import "APTypes.h" 11 | 12 | @interface APSocialProfile : NSObject 13 | 14 | @property (nonatomic, assign) APSocialNetworkType socialNetwork; 15 | @property (nullable, nonatomic, strong) NSString *username; 16 | @property (nullable, nonatomic, strong) NSString *userIdentifier; 17 | @property (nullable, nonatomic, strong) NSURL *url; 18 | 19 | @end 20 | -------------------------------------------------------------------------------- /app/Pods/APAddressBook/Pod/Core/Public/Models/APSocialProfile.m: -------------------------------------------------------------------------------- 1 | // 2 | // APSocialContact.m 3 | // APAddressBook 4 | // 5 | // Created by David on 2014-08-01. 6 | // Copyright (c) 2014 David Muzi. All rights reserved. 7 | // 8 | 9 | #import "APSocialProfile.h" 10 | 11 | @implementation APSocialProfile 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /app/Pods/APAddressBook/Pod/Core/Public/Models/APSource.h: -------------------------------------------------------------------------------- 1 | // 2 | // APSource 3 | // APAddressBook 4 | // 5 | // Created by Alexey Belkevich on 23.09.15. 6 | // Copyright © 2015 alterplay. All rights reserved. 7 | // 8 | 9 | #import <Foundation/Foundation.h> 10 | 11 | @interface APSource : NSObject 12 | 13 | @property (nonnull, nonatomic, strong) NSString *sourceType; 14 | @property (nonnull, nonatomic, strong) NSNumber *sourceID; 15 | 16 | @end -------------------------------------------------------------------------------- /app/Pods/APAddressBook/Pod/Core/Public/Models/APSource.m: -------------------------------------------------------------------------------- 1 | // 2 | // APSource 3 | // APAddressBook 4 | // 5 | // Created by Alexey Belkevich on 23.09.15. 6 | // Copyright © 2015 alterplay. All rights reserved. 7 | // 8 | 9 | #import "APSource.h" 10 | 11 | @implementation APSource 12 | @end -------------------------------------------------------------------------------- /app/Pods/DHSmartScreenshot/Classes/DHSmartScreenshot.h: -------------------------------------------------------------------------------- 1 | // 2 | // DHSmartScreenshot.h 3 | // TableViewScreenshots 4 | // 5 | // Created by Hernandez Alvarez, David on 12/3/13. 6 | // Copyright (c) 2013 David Hernandez. All rights reserved. 7 | // 8 | 9 | #ifndef TableViewScreenshots_DHSmartScreenshot_h 10 | #define TableViewScreenshots_DHSmartScreenshot_h 11 | 12 | #import "UITableView+DHSmartScreenshot.h" 13 | #import "UIScrollView+DHSmartScreenshot.h" 14 | 15 | #endif 16 | -------------------------------------------------------------------------------- /app/Pods/DHSmartScreenshot/Classes/UIImage+DHImageAdditions.h: -------------------------------------------------------------------------------- 1 | // 2 | // UIImage+ImageFromArrayUtils.h 3 | // TableViewScreenshots 4 | // 5 | // Created by Hernandez Alvarez, David on 11/28/13. 6 | // Copyright (c) 2013 David Hernandez. All rights reserved. 7 | // 8 | 9 | #import <UIKit/UIKit.h> 10 | 11 | @interface UIImage (DHImageUtils) 12 | 13 | + (UIImage *)imageWithColor:(UIColor *)color size:(CGSize)size; 14 | 15 | @end 16 | 17 | @interface UIImage (DHImageFromArrayUtils) 18 | 19 | + (UIImage *)verticalImageFromArray:(NSArray *)imagesArray; 20 | 21 | @end 22 | -------------------------------------------------------------------------------- /app/Pods/DHSmartScreenshot/Classes/UIScrollView+DHSmartScreenshot.h: -------------------------------------------------------------------------------- 1 | // 2 | // UITableView+Screenshot.h 3 | // Kiwi 4 | // 5 | // Created by Marcin Stepnowski on 10/11/14. 6 | // Copyright (c) 2014 Marcin Stepnowski. All rights reserved. 7 | // 8 | 9 | #import <UIKit/UIKit.h> 10 | 11 | @interface UIScrollView (DHSmartScreenshot) 12 | 13 | -(UIImage*)screenshotOfVisibleContent; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /app/Pods/DHSmartScreenshot/Classes/UIScrollView+DHSmartScreenshot.m: -------------------------------------------------------------------------------- 1 | // 2 | // UITableView+Screenshot.m 3 | // Kiwi 4 | // 5 | // Created by Marcin Stepnowski on 10/11/14. 6 | // Copyright (c) 2014 Marcin Stepnowski. All rights reserved. 7 | // 8 | 9 | #import "UIScrollView+DHSmartScreenshot.h" 10 | #import "UIView+DHSmartScreenshot.h" 11 | 12 | @implementation UIScrollView (DHSmartScreenshot) 13 | 14 | -(UIImage*)screenshotOfVisibleContent{ 15 | CGRect croppingRect = self.bounds; 16 | croppingRect.origin = self.contentOffset; 17 | return [self screenshotForCroppingRect: croppingRect]; 18 | } 19 | 20 | @end 21 | -------------------------------------------------------------------------------- /app/Pods/DHSmartScreenshot/Classes/UIView+DHSmartScreenshot.h: -------------------------------------------------------------------------------- 1 | // 2 | // UIView+DHSmartScreenshot.h 3 | // TableViewScreenshots 4 | // 5 | // Created by Hernandez Alvarez, David on 11/30/13. 6 | // Copyright (c) 2013 David Hernandez. All rights reserved. 7 | // 8 | 9 | #import <UIKit/UIKit.h> 10 | 11 | @interface UIView (DHSmartScreenshot) 12 | 13 | - (UIImage *)screenshot; 14 | - (UIImage *)screenshotForCroppingRect:(CGRect)rect; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /app/Pods/DTCoreText/Core/Source/CTLineUtils.h: -------------------------------------------------------------------------------- 1 | // 2 | // CTLineUtils.h 3 | // DTCoreText 4 | // 5 | // Created by Oleksandr Deundiak on 7/15/15. 6 | // Copyright 2015. All rights reserved. 7 | // 8 | 9 | #import <CoreText/CoreText.h> 10 | 11 | BOOL areLinesEqual(CTLineRef line1, CTLineRef line2); 12 | CFIndex getTruncationIndex(CTLineRef line, CTLineRef trunc); 13 | -------------------------------------------------------------------------------- /app/Pods/DTCoreText/Core/Source/DTAnchorHTMLElement.h: -------------------------------------------------------------------------------- 1 | // 2 | // DTHTMLElementA.h 3 | // DTCoreText 4 | // 5 | // Created by Oliver Drobnik on 21.03.13. 6 | // Copyright (c) 2013 Drobnik.com. All rights reserved. 7 | // 8 | 9 | #import "DTHTMLElement.h" 10 | 11 | /** 12 | Specialized subclass of <DTHTMLElement> that represents a hyperlink. 13 | */ 14 | @interface DTAnchorHTMLElement : DTHTMLElement 15 | 16 | /** 17 | Foreground text color of the receiver when highlighted 18 | */ 19 | @property (nonatomic, strong) DTColor *highlightedTextColor; 20 | 21 | @end 22 | -------------------------------------------------------------------------------- /app/Pods/DTCoreText/Core/Source/DTBreakHTMLElement.h: -------------------------------------------------------------------------------- 1 | // 2 | // DTHTMLElementBR.h 3 | // DTCoreText 4 | // 5 | // Created by Oliver Drobnik on 26.12.12. 6 | // Copyright (c) 2012 Drobnik.com. All rights reserved. 7 | // 8 | 9 | #import "DTHTMLElement.h" 10 | 11 | /** 12 | Specialized subclass of <DTHTMLElement> that represents a line break. 13 | */ 14 | 15 | @interface DTBreakHTMLElement : DTHTMLElement 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /app/Pods/DTCoreText/Core/Source/DTBreakHTMLElement.m: -------------------------------------------------------------------------------- 1 | // 2 | // DTHTMLElementBR.m 3 | // DTCoreText 4 | // 5 | // Created by Oliver Drobnik on 26.12.12. 6 | // Copyright (c) 2012 Drobnik.com. All rights reserved. 7 | // 8 | 9 | #import "DTBreakHTMLElement.h" 10 | 11 | @implementation DTBreakHTMLElement 12 | 13 | - (NSAttributedString *)attributedString 14 | { 15 | @synchronized(self) 16 | { 17 | NSDictionary *attributes = [self attributesForAttributedStringRepresentation]; 18 | return [[NSAttributedString alloc] initWithString:UNICODE_LINE_FEED attributes:attributes]; 19 | } 20 | } 21 | 22 | @end 23 | -------------------------------------------------------------------------------- /app/Pods/DTCoreText/Core/Source/DTCoreTextMacros.h: -------------------------------------------------------------------------------- 1 | // 2 | // DTCoreTextMacros.h 3 | // DTCoreText 4 | // 5 | // Created by Jean-Charles BERTIN on 5/28/14. 6 | // Copyright (c) 2014 Axinoe. All rights reserved. 7 | // 8 | 9 | #import <Availability.h> 10 | 11 | #ifndef DT_RETURNS_INNER_POINTER 12 | #if __has_attribute(objc_returns_inner_pointer) 13 | #define DT_RETURNS_INNER_POINTER __attribute__((objc_returns_inner_pointer)) 14 | #else 15 | #define DT_RETURNS_INNER_POINTER 16 | #endif 17 | #endif 18 | -------------------------------------------------------------------------------- /app/Pods/DTCoreText/Core/Source/DTHorizontalRuleHTMLElement.h: -------------------------------------------------------------------------------- 1 | // 2 | // DTHTMLElementHR.h 3 | // DTCoreText 4 | // 5 | // Created by Oliver Drobnik on 26.12.12. 6 | // Copyright (c) 2012 Drobnik.com. All rights reserved. 7 | // 8 | 9 | #import "DTHTMLElement.h" 10 | 11 | /** 12 | Specialized subclass of <DTHTMLElement> that deals with list items. 13 | */ 14 | 15 | @interface DTHorizontalRuleHTMLElement : DTHTMLElement 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /app/Pods/DTCoreText/Core/Source/DTIframeTextAttachment.h: -------------------------------------------------------------------------------- 1 | // 2 | // DTTextAttachmentIframe.h 3 | // DTCoreText 4 | // 5 | // Created by Oliver Drobnik on 22.04.13. 6 | // Copyright (c) 2013 Drobnik.com. All rights reserved. 7 | // 8 | 9 | #import "DTTextAttachment.h" 10 | 11 | /** 12 | A specialized subclass in the DTTextAttachment class cluster to represent an IFRAME 13 | */ 14 | 15 | @interface DTIframeTextAttachment : DTTextAttachment <DTTextAttachmentHTMLPersistence> 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /app/Pods/DTCoreText/Core/Source/DTListItemHTMLElement.h: -------------------------------------------------------------------------------- 1 | // 2 | // DTHTMLElementLI.h 3 | // DTCoreText 4 | // 5 | // Created by Oliver Drobnik on 27.12.12. 6 | // Copyright (c) 2012 Drobnik.com. All rights reserved. 7 | // 8 | 9 | #import "DTHTMLElement.h" 10 | 11 | /** 12 | Specialized subclass of <DTHTMLElement> that deals with list items. 13 | */ 14 | @interface DTListItemHTMLElement : DTHTMLElement 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /app/Pods/DTCoreText/Core/Source/DTObjectTextAttachment.h: -------------------------------------------------------------------------------- 1 | // 2 | // DTObjectTextAttachment.h 3 | // DTCoreText 4 | // 5 | // Created by Oliver Drobnik on 22.04.13. 6 | // Copyright (c) 2013 Drobnik.com. All rights reserved. 7 | // 8 | 9 | #import "DTTextAttachment.h" 10 | 11 | /** 12 | A specialized subclass in the DTTextAttachment class cluster to represent an generic object 13 | */ 14 | 15 | @interface DTObjectTextAttachment : DTTextAttachment <DTTextAttachmentHTMLPersistence> 16 | 17 | /** 18 | The DTHTMLElement child nodes of the receiver. This array is only used for object tags at the moment. 19 | */ 20 | @property (nonatomic, strong) NSArray *childNodes; 21 | 22 | @end 23 | -------------------------------------------------------------------------------- /app/Pods/DTCoreText/Core/Source/DTStylesheetHTMLElement.h: -------------------------------------------------------------------------------- 1 | // 2 | // DTHTMLElementStylesheet.h 3 | // DTCoreText 4 | // 5 | // Created by Oliver Drobnik on 29.12.12. 6 | // Copyright (c) 2012 Drobnik.com. All rights reserved. 7 | // 8 | 9 | #import "DTHTMLElement.h" 10 | 11 | @class DTCSSStylesheet; 12 | 13 | /** 14 | This is a specialized subclass of <DTHTMLElement> representing a style block. 15 | */ 16 | @interface DTStylesheetHTMLElement : DTHTMLElement 17 | 18 | /** 19 | Parses the text children and assembles the resulting stylesheet. 20 | */ 21 | - (DTCSSStylesheet *)stylesheet; 22 | 23 | @end 24 | -------------------------------------------------------------------------------- /app/Pods/DTCoreText/Core/Source/DTStylesheetHTMLElement.m: -------------------------------------------------------------------------------- 1 | // 2 | // DTHTMLElementStylesheet.m 3 | // DTCoreText 4 | // 5 | // Created by Oliver Drobnik on 29.12.12. 6 | // Copyright (c) 2012 Drobnik.com. All rights reserved. 7 | // 8 | 9 | #import "DTStylesheetHTMLElement.h" 10 | #import "DTCSSStylesheet.h" 11 | 12 | @implementation DTStylesheetHTMLElement 13 | 14 | - (NSAttributedString *)attributedString 15 | { 16 | return nil; 17 | } 18 | 19 | - (DTCSSStylesheet *)stylesheet 20 | { 21 | NSString *text = [self text]; 22 | 23 | return [[DTCSSStylesheet alloc] initWithStyleBlock:text]; 24 | } 25 | 26 | @end 27 | -------------------------------------------------------------------------------- /app/Pods/DTCoreText/Core/Source/DTTextAttachmentHTMLElement.h: -------------------------------------------------------------------------------- 1 | // 2 | // DTHTMLElementAttachment.h 3 | // DTCoreText 4 | // 5 | // Created by Oliver Drobnik on 26.12.12. 6 | // Copyright (c) 2012 Drobnik.com. All rights reserved. 7 | // 8 | 9 | #import "DTHTMLElement.h" 10 | 11 | /** 12 | Specialized subclass of <DTHTMLElement> for dealing with <DTTextAttachment> instances, e.g. images. 13 | */ 14 | 15 | @interface DTTextAttachmentHTMLElement : DTHTMLElement 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /app/Pods/DTCoreText/Core/Source/DTTextHTMLElement.h: -------------------------------------------------------------------------------- 1 | // 2 | // DTHTMLElementText.h 3 | // DTCoreText 4 | // 5 | // Created by Oliver Drobnik on 26.12.12. 6 | // Copyright (c) 2012 Drobnik.com. All rights reserved. 7 | // 8 | 9 | #import "DTHTMLElement.h" 10 | 11 | /** 12 | Specialized subclass of <DTHTMLElement> that deals with text. It represents a text node. The text inside a DTHTMLElement can consist of any number of such text nodes. 13 | */ 14 | 15 | @interface DTTextHTMLElement : DTHTMLElement 16 | 17 | /** 18 | The text content of the element. 19 | */ 20 | @property (nonatomic, strong) NSString *text; 21 | 22 | @end 23 | -------------------------------------------------------------------------------- /app/Pods/DTCoreText/Core/Source/DTVideoTextAttachment.h: -------------------------------------------------------------------------------- 1 | // 2 | // DTTextAttachmentVideo.h 3 | // DTCoreText 4 | // 5 | // Created by Oliver Drobnik on 22.04.13. 6 | // Copyright (c) 2013 Drobnik.com. All rights reserved. 7 | // 8 | 9 | #import "DTTextAttachment.h" 10 | 11 | /** 12 | A specialized subclass in the DTTextAttachment class cluster to represent an embedded video 13 | */ 14 | 15 | @interface DTVideoTextAttachment : DTTextAttachment <DTTextAttachmentHTMLPersistence> 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /app/Pods/DTCoreText/Core/Source/NSAttributedString+DTDebug.h: -------------------------------------------------------------------------------- 1 | // 2 | // NSAttributedString+DTDebug.h 3 | // DTCoreText 4 | // 5 | // Created by Oliver Drobnik on 29.04.13. 6 | // Copyright (c) 2013 Drobnik.com. All rights reserved. 7 | // 8 | 9 | #import <Foundation/Foundation.h> 10 | 11 | /** 12 | The *DTDebug* category contains methods for debugging and dumping attributed strings 13 | */ 14 | @interface NSAttributedString (DTDebug) 15 | 16 | - (void)dumpRangesOfAttribute:(id)attribute; 17 | 18 | @end 19 | -------------------------------------------------------------------------------- /app/Pods/DTCoreText/Core/Source/NSAttributedStringRunDelegates.h: -------------------------------------------------------------------------------- 1 | // 2 | // NSAttributedStringRunDelegates.h 3 | // DTCoreText 4 | // 5 | // Created by Oliver on 14.01.11. 6 | // Copyright 2011 Drobnik.com. All rights reserved. 7 | // 8 | 9 | #if TARGET_OS_IPHONE 10 | #import <CoreText/CoreText.h> 11 | #elif TARGET_OS_MAC 12 | #import <ApplicationServices/ApplicationServices.h> 13 | #endif 14 | 15 | void embeddedObjectDeallocCallback(void *context); 16 | CGFloat embeddedObjectGetAscentCallback(void *context); 17 | CGFloat embeddedObjectGetDescentCallback(void *context); 18 | CGFloat embeddedObjectGetWidthCallback(void *context); 19 | CTRunDelegateRef createEmbeddedObjectRunDelegate(id obj); 20 | -------------------------------------------------------------------------------- /app/Pods/DTCoreText/Core/Source/NSCoder+DTCompatibility.h: -------------------------------------------------------------------------------- 1 | // 2 | // NSCoder+DTCompatibility.h 3 | // DTCoreText 4 | // 5 | // Created by Ryan Johnson on 14/02/19. 6 | // Copyright (c) 2014 Drobnik.com. All rights reserved. 7 | // 8 | 9 | #import <DTCoreText/DTCoreText.h> 10 | 11 | @interface NSCoder (DTCompatibility) 12 | 13 | #if !TARGET_OS_IPHONE 14 | - (void)encodeCGSize:(CGSize)size forKey:(NSString *)key; 15 | - (CGSize)decodeCGSizeForKey:(NSString *)key; 16 | #endif 17 | 18 | - (void)encodeDTEdgeInsets:(DTEdgeInsets)insets forKey:(NSString *)key; 19 | - (DTEdgeInsets)decodeDTEdgeInsetsForKey:(NSString *)key; 20 | 21 | @end 22 | -------------------------------------------------------------------------------- /app/Pods/DTCoreText/Core/Source/NSMutableString+HTML.h: -------------------------------------------------------------------------------- 1 | // 2 | // NSMutableString+HTML.h 3 | // DTCoreText 4 | // 5 | // Created by Oliver Drobnik on 01.02.12. 6 | // Copyright (c) 2012 Drobnik.com. All rights reserved. 7 | // 8 | 9 | 10 | /** 11 | Categories needed for modifying mutable strings, as needed for DTCoreText. 12 | */ 13 | @interface NSMutableString (HTML) 14 | 15 | /** 16 | Removes the trailing whitespace from the receiver. 17 | */ 18 | - (void)removeTrailingWhitespace; 19 | 20 | @end 21 | -------------------------------------------------------------------------------- /app/Pods/DTCoreText/Core/Source/UIFont+DTCoreText.h: -------------------------------------------------------------------------------- 1 | // 2 | // UIFont+DTCoreText.h 3 | // DTCoreText 4 | // 5 | // Created by Oliver Drobnik on 11.12.12. 6 | // Copyright (c) 2012 Drobnik.com. All rights reserved. 7 | // 8 | 9 | #import <CoreText/CoreText.h> 10 | 11 | /** 12 | Methods to translate from `CTFont` to `UIFont` 13 | */ 14 | 15 | @interface UIFont (DTCoreText) 16 | 17 | /** 18 | Creates a UIFont that matches the provided CTFont. 19 | @param ctFont a `CTFontRef` 20 | @returns The matching UIFont 21 | */ 22 | + (UIFont *)fontWithCTFont:(CTFontRef)ctFont; 23 | 24 | @end 25 | -------------------------------------------------------------------------------- /app/Pods/DTFoundation/Core/Source/DTCompatibility.h: -------------------------------------------------------------------------------- 1 | // 2 | // DTCompatibility.h 3 | // DTFoundation 4 | // 5 | // Created by Rene Pirringer on 30.07.15. 6 | // Copyright (c) 2015 Cocoanetics. All rights reserved. 7 | // 8 | 9 | #import <Availability.h> 10 | 11 | #if __IPHONE_OS_VERSION_MAX_ALLOWED > 80400 12 | #define DT_SUPPORTED_INTERFACE_ORIENTATIONS_RETURN_TYPE UIInterfaceOrientationMask 13 | #else 14 | #define DT_SUPPORTED_INTERFACE_ORIENTATIONS_RETURN_TYPE NSUInteger 15 | #endif 16 | 17 | -------------------------------------------------------------------------------- /app/Pods/DTFoundation/Core/Source/DTFoundationConstants.h: -------------------------------------------------------------------------------- 1 | // 2 | // DTFoundationConstants.h 3 | // DTFoundation 4 | // 5 | // Created by Stefan Gugarel on 10/18/12. 6 | // Copyright (c) 2012 Cocoanetics. All rights reserved. 7 | // 8 | 9 | 10 | // string constant for NSError domain 11 | extern NSString * const DTFoundationErrorDomain; -------------------------------------------------------------------------------- /app/Pods/DTFoundation/Core/Source/DTFoundationConstants.m: -------------------------------------------------------------------------------- 1 | // 2 | // DTFoundationConstants.m 3 | // DTFoundation 4 | // 5 | // Created by Stefan Gugarel on 10/18/12. 6 | // Copyright (c) 2012 Cocoanetics. All rights reserved. 7 | // 8 | 9 | #import "DTFoundationConstants.h" 10 | 11 | NSString * const DTFoundationErrorDomain = @"DTFoundation"; -------------------------------------------------------------------------------- /app/Pods/DTFoundation/Core/Source/NSFileWrapper+DTCopying.h: -------------------------------------------------------------------------------- 1 | // 2 | // NSFileWrapper+DTCopying.h 3 | // DTFoundation 4 | // 5 | // Created by Oliver Drobnik on 10/19/12. 6 | // Copyright (c) 2012 Cocoanetics. All rights reserved. 7 | // 8 | 9 | /** 10 | Methods for copying file wrappers. 11 | */ 12 | @interface NSFileWrapper (DTCopying) 13 | 14 | /** 15 | Creates a copy of the receiver by deep copying all contained sub filewrappers. 16 | */ 17 | - (NSFileWrapper *)fileWrapperByDeepCopying; 18 | 19 | @end 20 | -------------------------------------------------------------------------------- /app/Pods/DTFoundation/Core/Source/NSURL+DTComparing.h: -------------------------------------------------------------------------------- 1 | // 2 | // NSURL+DTComparing.h 3 | // DTFoundation 4 | // 5 | // Created by Oliver Drobnik on 13.11.12. 6 | // Copyright (c) 2012 Cocoanetics. All rights reserved. 7 | // 8 | 9 | /** 10 | Category for comparing URLs. 11 | 12 | Contrary to what you might think isEqual: does not work properly in many cases. 13 | */ 14 | 15 | @interface NSURL (DTComparing) 16 | 17 | /** 18 | Compares the receiver with another URL 19 | @param URL another URL 20 | @returns `YES` if the receiver is equivalent with the passed URL 21 | */ 22 | - (BOOL)isEqualToURL:(NSURL *)URL; 23 | 24 | @end 25 | -------------------------------------------------------------------------------- /app/Pods/DTFoundation/Core/Source/iOS/DTAnimatedGIF/DTAnimatedGIF.h: -------------------------------------------------------------------------------- 1 | // 2 | // DTAnimatedGIF.h 3 | // DTFoundation 4 | // 5 | // Created by Oliver Drobnik on 7/2/14. 6 | // Copyright (c) 2014 Cocoanetics. All rights reserved. 7 | // 8 | 9 | 10 | /** 11 | Loads an animated GIF from file, compatible with UIImageView 12 | */ 13 | UIImage *DTAnimatedGIFFromFile(NSString *path); 14 | 15 | /** 16 | Loads an animated GIF from data, compatible with UIImageView 17 | */ 18 | UIImage *DTAnimatedGIFFromData(NSData *data); 19 | -------------------------------------------------------------------------------- /app/Pods/DTFoundation/Core/Source/iOS/DTTiledLayerWithoutFade.h: -------------------------------------------------------------------------------- 1 | // 2 | // DTTiledLayerWithoutFade.h 3 | // DTRichTextEditor 4 | // 5 | // Created by Oliver Drobnik on 8/24/11. 6 | // Copyright 2011 Cocoanetics. All rights reserved. 7 | // 8 | 9 | #import <QuartzCore/QuartzCore.h> 10 | 11 | /** 12 | Simple subclass of `CATiledLayer` that does not fade in drawn tiles. 13 | */ 14 | 15 | @interface DTTiledLayerWithoutFade : CATiledLayer 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /app/Pods/DTFoundation/Core/Source/iOS/DTTiledLayerWithoutFade.m: -------------------------------------------------------------------------------- 1 | // 2 | // DTTiledLayerWithoutFade.m 3 | // DTRichTextEditor 4 | // 5 | // Created by Oliver Drobnik on 8/24/11. 6 | // Copyright 2011 Cocoanetics. All rights reserved. 7 | // 8 | 9 | #import "DTTiledLayerWithoutFade.h" 10 | 11 | @implementation DTTiledLayerWithoutFade 12 | 13 | + (CFTimeInterval)fadeDuration 14 | { 15 | return 0; 16 | } 17 | 18 | @end 19 | -------------------------------------------------------------------------------- /app/Pods/DTFoundation/Core/Source/iOS/UIWebView+DTFoundation.h: -------------------------------------------------------------------------------- 1 | // 2 | // UIWebView+DTFoundation.h 3 | // DTFoundation 4 | // 5 | // Created by Oliver Drobnik on 25.05.12. 6 | // Copyright (c) 2012 Cocoanetics. All rights reserved. 7 | // 8 | 9 | /** 10 | Some convenient functions that can be also achieved if you know JavaScript, but are way more easy to remember like this. 11 | */ 12 | 13 | @interface UIWebView (DTFoundation) 14 | 15 | /** 16 | Getting the current document's title 17 | @returns A string with the document title 18 | */ 19 | - (NSString *)documentTitle; 20 | 21 | @end 22 | -------------------------------------------------------------------------------- /app/Pods/DTFoundation/Core/Source/iOS/UIWebView+DTFoundation.m: -------------------------------------------------------------------------------- 1 | // 2 | // UIWebView+DTFoundation.m 3 | // DTFoundation 4 | // 5 | // Created by Oliver Drobnik on 25.05.12. 6 | // Copyright (c) 2012 Cocoanetics. All rights reserved. 7 | // 8 | 9 | #import "UIWebView+DTFoundation.h" 10 | #if !TARGET_OS_TV 11 | @implementation UIWebView (DTFoundation) 12 | 13 | - (NSString *)documentTitle 14 | { 15 | return [self stringByEvaluatingJavaScriptFromString:@"document.title"]; 16 | } 17 | 18 | @end 19 | #endif 20 | -------------------------------------------------------------------------------- /app/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 | -------------------------------------------------------------------------------- /app/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 | -------------------------------------------------------------------------------- /app/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 | -------------------------------------------------------------------------------- /app/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 <UIPickerViewDataSource, UIPickerViewDelegate> 12 | @end 13 | -------------------------------------------------------------------------------- /app/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 | -------------------------------------------------------------------------------- /app/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 | -------------------------------------------------------------------------------- /app/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 | -------------------------------------------------------------------------------- /app/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 | -------------------------------------------------------------------------------- /app/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 | -------------------------------------------------------------------------------- /app/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 | -------------------------------------------------------------------------------- /app/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 | -------------------------------------------------------------------------------- /app/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 | -------------------------------------------------------------------------------- /app/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 <UIKit/UIKit.h> 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 | -------------------------------------------------------------------------------- /app/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 <objc/runtime.h> 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 | -------------------------------------------------------------------------------- /app/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 <objc/runtime.h> 11 | 12 | @interface FLEXMethodCallingViewController : FLEXFieldEditorViewController 13 | 14 | - (id)initWithTarget:(id)target method:(Method)method; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /app/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 <objc/runtime.h> 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 | -------------------------------------------------------------------------------- /app/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 <UIKit/UIKit.h> 10 | 11 | @protocol FLEXWindowEventDelegate; 12 | 13 | @interface FLEXWindow : UIWindow 14 | 15 | @property (nonatomic, weak) id <FLEXWindowEventDelegate> eventDelegate; 16 | 17 | @end 18 | 19 | @protocol FLEXWindowEventDelegate <NSObject> 20 | 21 | - (BOOL)shouldHandleTouchAtPoint:(CGPoint)pointInWindow; 22 | - (BOOL)canBecomeKeyWindow; 23 | 24 | @end 25 | -------------------------------------------------------------------------------- /app/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 <FLEX/FLEXManager.h> 10 | -------------------------------------------------------------------------------- /app/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 <Foundation/Foundation.h> 10 | #import "FLEXDatabaseManager.h" 11 | 12 | @interface FLEXRealmDatabaseManager : NSObject <FLEXDatabaseManager> 13 | 14 | @end 15 | -------------------------------------------------------------------------------- /app/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 <Foundation/Foundation.h> 15 | #import "FLEXDatabaseManager.h" 16 | 17 | @interface FLEXSQLiteDatabaseManager : NSObject <FLEXDatabaseManager> 18 | 19 | @end 20 | -------------------------------------------------------------------------------- /app/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 <UIKit/UIKit.h> 10 | 11 | @interface FLEXTableContentViewController : UIViewController 12 | 13 | @property (nonatomic, strong) NSArray *columnsArray; 14 | @property (nonatomic, strong) NSArray *contentsArray; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /app/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 <UIKit/UIKit.h> 10 | 11 | @interface FLEXTableLeftCell : UITableViewCell 12 | 13 | @property (nonatomic, strong) UILabel *titlelabel; 14 | 15 | + (instancetype)cellWithTableView:(UITableView *)tableView; 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /app/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 <UIKit/UIKit.h> 10 | 11 | @interface FLEXTableListViewController : UITableViewController 12 | 13 | + (BOOL)supportsExtension:(NSString *)extension; 14 | - (instancetype)initWithPath:(NSString *)path; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /app/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 <UIKit/UIKit.h> 10 | 11 | @interface FLEXClassesTableViewController : UITableViewController 12 | 13 | @property (nonatomic, copy) NSString *binaryImageName; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /app/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 <UIKit/UIKit.h> 10 | 11 | @interface FLEXCookiesTableViewController : UITableViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /app/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 <UIKit/UIKit.h> 10 | 11 | #import "FLEXFileBrowserSearchOperation.h" 12 | 13 | @interface FLEXFileBrowserTableViewController : UITableViewController 14 | 15 | - (id)initWithPath:(NSString *)path; 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /app/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 <UIKit/UIKit.h> 10 | 11 | @interface FLEXInstancesTableViewController : UITableViewController 12 | 13 | + (instancetype)instancesTableViewControllerForClassName:(NSString *)className; 14 | + (instancetype)instancesTableViewControllerForInstancesReferencingObject:(id)object; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /app/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 <UIKit/UIKit.h> 10 | 11 | @interface FLEXLibrariesTableViewController : UITableViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /app/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 <UIKit/UIKit.h> 10 | 11 | @interface FLEXLiveObjectsTableViewController : UITableViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /app/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 <UIKit/UIKit.h> 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 | -------------------------------------------------------------------------------- /app/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 <Foundation/Foundation.h> 10 | #import <asl.h> 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 | -------------------------------------------------------------------------------- /app/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 <UIKit/UIKit.h> 10 | 11 | @interface FLEXSystemLogTableViewController : UITableViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /app/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 | -------------------------------------------------------------------------------- /app/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 <Foundation/Foundation.h> 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 | -------------------------------------------------------------------------------- /app/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 <UIKit/UIKit.h> 10 | 11 | @interface FLEXNetworkHistoryTableViewController : UITableViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /app/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 <UIKit/UIKit.h> 10 | 11 | @interface FLEXNetworkSettingsTableViewController : UITableViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /app/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 <UIKit/UIKit.h> 10 | 11 | @class FLEXNetworkTransaction; 12 | 13 | @interface FLEXNetworkTransactionDetailTableViewController : UITableViewController 14 | 15 | @property (nonatomic, strong) FLEXNetworkTransaction *transaction; 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /app/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 <UIKit/UIKit.h> 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 | -------------------------------------------------------------------------------- /app/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 | -------------------------------------------------------------------------------- /app/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 | -------------------------------------------------------------------------------- /app/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 | -------------------------------------------------------------------------------- /app/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 | -------------------------------------------------------------------------------- /app/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 | -------------------------------------------------------------------------------- /app/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 | -------------------------------------------------------------------------------- /app/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 <Foundation/Foundation.h> 10 | 11 | @class FLEXObjectExplorerViewController; 12 | 13 | @interface FLEXObjectExplorerFactory : NSObject 14 | 15 | + (FLEXObjectExplorerViewController *)explorerViewControllerForObject:(id)object; 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /app/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 | -------------------------------------------------------------------------------- /app/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 | -------------------------------------------------------------------------------- /app/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 | -------------------------------------------------------------------------------- /app/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 <UIKit/UIKit.h> 10 | 11 | @interface FLEXToolbarItem : UIButton 12 | 13 | + (instancetype)toolbarItemWithTitle:(NSString *)title image:(UIImage *)image; 14 | 15 | + (UIColor *)defaultBackgroundColor; 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /app/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 <Foundation/Foundation.h> 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 | -------------------------------------------------------------------------------- /app/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 <UIKit/UIKit.h> 10 | 11 | @interface FLEXKeyboardHelpViewController : UIViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /app/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 <UIKit/UIKit.h> 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 | -------------------------------------------------------------------------------- /app/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 <UIKit/UIKit.h> 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 | -------------------------------------------------------------------------------- /app/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 <UIKit/UIKit.h> 10 | 11 | @interface FLEXImagePreviewViewController : UIViewController 12 | 13 | - (id)initWithImage:(UIImage *)image; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /app/Pods/FreeStreamer/FreeStreamer/FreeStreamer/FSPlaylistItem.m: -------------------------------------------------------------------------------- 1 | /* 2 | * This file is part of the FreeStreamer project, 3 | * (C)Copyright 2011-2016 Matias Muhonen <mmu@iki.fi> 穆马帝 4 | * See the file ''LICENSE'' for using the code. 5 | * 6 | * https://github.com/muhku/FreeStreamer 7 | */ 8 | 9 | #import "FSPlaylistItem.h" 10 | 11 | @implementation FSPlaylistItem 12 | 13 | - (BOOL)isEqual:(id)anObject 14 | { 15 | FSPlaylistItem *otherObject = anObject; 16 | 17 | if ([otherObject.title isEqual:self.title] && 18 | [otherObject.url isEqual:self.url]) { 19 | return YES; 20 | } 21 | 22 | return NO; 23 | } 24 | 25 | @end -------------------------------------------------------------------------------- /app/Pods/FreeStreamer/FreeStreamer/FreeStreamer/input_stream.cpp: -------------------------------------------------------------------------------- 1 | /* 2 | * This file is part of the FreeStreamer project, 3 | * (C)Copyright 2011-2016 Matias Muhonen <mmu@iki.fi> 穆马帝 4 | * See the file ''LICENSE'' for using the code. 5 | * 6 | * https://github.com/muhku/FreeStreamer 7 | */ 8 | 9 | #include "input_stream.h" 10 | 11 | namespace astreamer { 12 | 13 | Input_Stream::Input_Stream() : m_delegate(0) 14 | { 15 | } 16 | 17 | Input_Stream::~Input_Stream() 18 | { 19 | } 20 | 21 | } -------------------------------------------------------------------------------- /app/Pods/IQAudioRecorderController/IQAudioRecorderController/Resources/audio_record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonette/JASONETTE-iOS/44849b19e275251f40398de5462fe80b7590cb4b/app/Pods/IQAudioRecorderController/IQAudioRecorderController/Resources/audio_record.png -------------------------------------------------------------------------------- /app/Pods/IQAudioRecorderController/IQAudioRecorderController/Resources/audio_record@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonette/JASONETTE-iOS/44849b19e275251f40398de5462fe80b7590cb4b/app/Pods/IQAudioRecorderController/IQAudioRecorderController/Resources/audio_record@2x.png -------------------------------------------------------------------------------- /app/Pods/IQAudioRecorderController/IQAudioRecorderController/Resources/audio_record@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonette/JASONETTE-iOS/44849b19e275251f40398de5462fe80b7590cb4b/app/Pods/IQAudioRecorderController/IQAudioRecorderController/Resources/audio_record@3x.png -------------------------------------------------------------------------------- /app/Pods/IQAudioRecorderController/IQAudioRecorderController/Resources/microphone_access.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonette/JASONETTE-iOS/44849b19e275251f40398de5462fe80b7590cb4b/app/Pods/IQAudioRecorderController/IQAudioRecorderController/Resources/microphone_access.png -------------------------------------------------------------------------------- /app/Pods/IQAudioRecorderController/IQAudioRecorderController/Resources/microphone_access@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonette/JASONETTE-iOS/44849b19e275251f40398de5462fe80b7590cb4b/app/Pods/IQAudioRecorderController/IQAudioRecorderController/Resources/microphone_access@2x.png -------------------------------------------------------------------------------- /app/Pods/IQAudioRecorderController/IQAudioRecorderController/Resources/microphone_access@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonette/JASONETTE-iOS/44849b19e275251f40398de5462fe80b7590cb4b/app/Pods/IQAudioRecorderController/IQAudioRecorderController/Resources/microphone_access@3x.png -------------------------------------------------------------------------------- /app/Pods/IQAudioRecorderController/IQAudioRecorderController/Resources/scissor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonette/JASONETTE-iOS/44849b19e275251f40398de5462fe80b7590cb4b/app/Pods/IQAudioRecorderController/IQAudioRecorderController/Resources/scissor.png -------------------------------------------------------------------------------- /app/Pods/IQAudioRecorderController/IQAudioRecorderController/Resources/scissor@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonette/JASONETTE-iOS/44849b19e275251f40398de5462fe80b7590cb4b/app/Pods/IQAudioRecorderController/IQAudioRecorderController/Resources/scissor@2x.png -------------------------------------------------------------------------------- /app/Pods/IQAudioRecorderController/IQAudioRecorderController/Resources/scissor@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonette/JASONETTE-iOS/44849b19e275251f40398de5462fe80b7590cb4b/app/Pods/IQAudioRecorderController/IQAudioRecorderController/Resources/scissor@3x.png -------------------------------------------------------------------------------- /app/Pods/IQAudioRecorderController/IQAudioRecorderController/Resources/stop_playing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonette/JASONETTE-iOS/44849b19e275251f40398de5462fe80b7590cb4b/app/Pods/IQAudioRecorderController/IQAudioRecorderController/Resources/stop_playing.png -------------------------------------------------------------------------------- /app/Pods/IQAudioRecorderController/IQAudioRecorderController/Resources/stop_playing@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonette/JASONETTE-iOS/44849b19e275251f40398de5462fe80b7590cb4b/app/Pods/IQAudioRecorderController/IQAudioRecorderController/Resources/stop_playing@2x.png -------------------------------------------------------------------------------- /app/Pods/IQAudioRecorderController/IQAudioRecorderController/Resources/stop_playing@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonette/JASONETTE-iOS/44849b19e275251f40398de5462fe80b7590cb4b/app/Pods/IQAudioRecorderController/IQAudioRecorderController/Resources/stop_playing@3x.png -------------------------------------------------------------------------------- /app/Pods/IQAudioRecorderController/IQAudioRecorderController/Resources/stop_recording.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonette/JASONETTE-iOS/44849b19e275251f40398de5462fe80b7590cb4b/app/Pods/IQAudioRecorderController/IQAudioRecorderController/Resources/stop_recording.png -------------------------------------------------------------------------------- /app/Pods/IQAudioRecorderController/IQAudioRecorderController/Resources/stop_recording@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonette/JASONETTE-iOS/44849b19e275251f40398de5462fe80b7590cb4b/app/Pods/IQAudioRecorderController/IQAudioRecorderController/Resources/stop_recording@2x.png -------------------------------------------------------------------------------- /app/Pods/IQAudioRecorderController/IQAudioRecorderController/Resources/stop_recording@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonette/JASONETTE-iOS/44849b19e275251f40398de5462fe80b7590cb4b/app/Pods/IQAudioRecorderController/IQAudioRecorderController/Resources/stop_recording@3x.png -------------------------------------------------------------------------------- /app/Pods/JDStatusBarNotification/JDStatusBarNotification/JDStatusBarView.h: -------------------------------------------------------------------------------- 1 | // 2 | // JDStatusBarView.h 3 | // JDStatusBarNotificationExample 4 | // 5 | // Created by Markus on 04.12.13. 6 | // Copyright (c) 2013 Markus. All rights reserved. 7 | // 8 | 9 | #import <UIKit/UIKit.h> 10 | 11 | @interface JDStatusBarView : UIView 12 | @property (nonatomic, strong, readonly) UILabel *textLabel; 13 | @property (nonatomic, strong, readonly) UIActivityIndicatorView *activityIndicatorView; 14 | @property (nonatomic, assign) CGFloat textVerticalPositionAdjustment; 15 | @end 16 | -------------------------------------------------------------------------------- /app/Pods/JSCoreBom/JSCoreBom/JSCoreBom.h: -------------------------------------------------------------------------------- 1 | #import <Foundation/Foundation.h> 2 | #import <JavaScriptCore/JavaScriptCore.h> 3 | 4 | @interface JSCoreBom : NSObject 5 | 6 | +(JSCoreBom*)shared; 7 | -(void)extend:(JSContext*)context; 8 | -(void)extend:(JSContext*)context logHandler:(void (^)(NSString* logLevel,NSArray* params,NSString* formatedLogEntry))logHandler; 9 | 10 | @end 11 | -------------------------------------------------------------------------------- /app/Pods/JSCoreBom/JSCoreBom/Modules/ModuleConsole.h: -------------------------------------------------------------------------------- 1 | #import <JavaScriptCore/JavaScriptCore.h> 2 | 3 | @protocol ExportConsole <JSExport> 4 | 5 | @property (readonly) JSValue* log; 6 | @property (readonly) JSValue* debug; 7 | @property (readonly) JSValue* error; 8 | @property (readonly) JSValue* info; 9 | @property (readonly) JSValue* warn; 10 | 11 | -(void)__write:(NSString*)logLevel :(NSArray*)params; 12 | 13 | @end 14 | 15 | @interface ModuleConsole : NSObject <ExportConsole> 16 | 17 | -(instancetype)initWithLogHandler:(void (^)(NSString*,NSArray*,NSString*))logHandler; 18 | 19 | @end 20 | -------------------------------------------------------------------------------- /app/Pods/JSCoreBom/JSCoreBom/Modules/ModuleXMLHttpRequest.h: -------------------------------------------------------------------------------- 1 | #import <Foundation/Foundation.h> 2 | #import <JavaScriptCore/JavaScriptCore.h> 3 | 4 | @protocol ExportXMLHttpRequest <JSExport> 5 | 6 | @property NSString* responseText; 7 | @property JSValue* onload; 8 | @property JSValue* onerror; 9 | 10 | -(instancetype)init; 11 | 12 | -(void)open:(NSString*)httpMethod :(NSString*)url :(bool)async; 13 | -(void)send; 14 | 15 | @end 16 | 17 | @interface ModuleXMLHttpRequest: NSObject <ExportXMLHttpRequest> 18 | 19 | @end -------------------------------------------------------------------------------- /app/Pods/Local Podspecs/SWTableViewCell.podspec.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "SWTableViewCell", 3 | "version": "0.3.7", 4 | "authors": { 5 | "Chris Wendel": "chriwend@umich.edu" 6 | }, 7 | "homepage": "https://github.com/CEWendel/SWTableViewCell", 8 | "summary": "UITableViewCell subclass that implements a swipeable content view which exposes utility buttons.", 9 | "license": "MIT", 10 | "source": { 11 | "git": "https://github.com/CEWendel/SWTableViewCell.git", 12 | "tag": "0.3.7" 13 | }, 14 | "source_files": "SWTableViewCell/PodFiles/*.{h,m}", 15 | "platforms": { 16 | "ios": "6.0" 17 | }, 18 | "requires_arc": true 19 | } 20 | -------------------------------------------------------------------------------- /app/Pods/OMGHTTPURLRQ/Sources/OMGUserAgent.h: -------------------------------------------------------------------------------- 1 | #import <Foundation/NSObjCRuntime.h> 2 | @class NSString; 3 | 4 | #if __has_feature(nullability) && defined(NS_ASSUME_NONNULL_BEGIN) 5 | NS_ASSUME_NONNULL_BEGIN 6 | #endif 7 | 8 | NSString *OMGUserAgent(); 9 | 10 | #if __has_feature(nullability) && defined(NS_ASSUME_NONNULL_END) 11 | NS_ASSUME_NONNULL_END 12 | #endif 13 | -------------------------------------------------------------------------------- /app/Pods/PHFComposeBarView/Classes/PHFComposeBarView_Button.h: -------------------------------------------------------------------------------- 1 | #import <UIKit/UIKit.h> 2 | 3 | @interface PHFComposeBarView_Button : UIButton 4 | @end 5 | -------------------------------------------------------------------------------- /app/Pods/PHFComposeBarView/Classes/PHFComposeBarView_Button.m: -------------------------------------------------------------------------------- 1 | #import "PHFComposeBarView_Button.h" 2 | 3 | @implementation PHFComposeBarView_Button 4 | 5 | - (void)setHighlighted:(BOOL)highlighted { 6 | if (highlighted) { 7 | [self setAlpha:0.2f]; 8 | } else { 9 | [UIView animateWithDuration:0.2 10 | delay:0 11 | options:UIViewAnimationOptionBeginFromCurrentState 12 | animations:^{ 13 | [self setAlpha:1.0f]; 14 | } 15 | completion:NULL]; 16 | } 17 | } 18 | 19 | @end 20 | -------------------------------------------------------------------------------- /app/Pods/PHFComposeBarView/Classes/PHFComposeBarView_TextView.h: -------------------------------------------------------------------------------- 1 | #import <UIKit/UIKit.h> 2 | 3 | @interface PHFComposeBarView_TextView : UITextView 4 | - (void)PHFComposeBarView_setContentOffset:(CGPoint)contentOffset; 5 | @end 6 | -------------------------------------------------------------------------------- /app/Pods/PHFDelegateChain/PHFDelegateChain.h: -------------------------------------------------------------------------------- 1 | // 2 | // PHFDelegateChain.h 3 | // PHFDelegateChain 4 | // 5 | // Created by Philipe Fatio on 28.05.12. 6 | // Copyright (c) 2012 loqize.me. All rights reserved. 7 | // 8 | 9 | #import <Foundation/Foundation.h> 10 | 11 | @interface PHFDelegateChain : NSProxy 12 | 13 | + (id)delegateChainWithObjects:(id)firstObject, ... NS_REQUIRES_NIL_TERMINATION; 14 | - (id)__initWithObjectsInArray:(NSArray *)objects; 15 | 16 | @property (nonatomic, assign, getter=__isBreaking, setter=__setBreaking:) BOOL breaking; 17 | 18 | - (NSMutableArray *)__objects; 19 | - (void)__setObjects:(NSArray *)objects; 20 | 21 | @end 22 | -------------------------------------------------------------------------------- /app/Pods/SDWebImage/SDWebImage/SDWebImageDecoder.h: -------------------------------------------------------------------------------- 1 | /* 2 | * This file is part of the SDWebImage package. 3 | * (c) Olivier Poitrey <rs@dailymotion.com> 4 | * 5 | * Created by james <https://github.com/mystcolor> on 9/28/11. 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | #import <Foundation/Foundation.h> 12 | #import "SDWebImageCompat.h" 13 | 14 | @interface UIImage (ForceDecode) 15 | 16 | + (UIImage *)decodedImageWithImage:(UIImage *)image; 17 | 18 | @end 19 | -------------------------------------------------------------------------------- /app/Pods/SDWebImage/SDWebImage/SDWebImageOperation.h: -------------------------------------------------------------------------------- 1 | /* 2 | * This file is part of the SDWebImage package. 3 | * (c) Olivier Poitrey <rs@dailymotion.com> 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 <Foundation/Foundation.h> 10 | 11 | @protocol SDWebImageOperation <NSObject> 12 | 13 | - (void)cancel; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /app/Pods/SDWebImage/SDWebImage/UIImage+GIF.h: -------------------------------------------------------------------------------- 1 | // 2 | // UIImage+GIF.h 3 | // LBGIFImage 4 | // 5 | // Created by Laurin Brandner on 06.01.12. 6 | // Copyright (c) 2012 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import <UIKit/UIKit.h> 10 | 11 | @interface UIImage (GIF) 12 | 13 | + (UIImage *)sd_animatedGIFNamed:(NSString *)name; 14 | 15 | + (UIImage *)sd_animatedGIFWithData:(NSData *)data; 16 | 17 | - (UIImage *)sd_animatedImageByScalingAndCroppingToSize:(CGSize)size; 18 | 19 | @end 20 | -------------------------------------------------------------------------------- /app/Pods/SDWebImage/SDWebImage/UIImage+MultiFormat.h: -------------------------------------------------------------------------------- 1 | // 2 | // UIImage+MultiFormat.h 3 | // SDWebImage 4 | // 5 | // Created by Olivier Poitrey on 07/06/13. 6 | // Copyright (c) 2013 Dailymotion. All rights reserved. 7 | // 8 | 9 | #import <UIKit/UIKit.h> 10 | 11 | @interface UIImage (MultiFormat) 12 | 13 | + (UIImage *)sd_imageWithData:(NSData *)data; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /app/Pods/SWTableViewCell/SWTableViewCell/PodFiles/SWCellScrollView.h: -------------------------------------------------------------------------------- 1 | // 2 | // SWCellScrollView.h 3 | // SWTableViewCell 4 | // 5 | // Created by Matt Bowman on 11/27/13. 6 | // Copyright (c) 2013 Chris Wendel. All rights reserved. 7 | // 8 | 9 | #import <UIKit/UIKit.h> 10 | 11 | @interface SWCellScrollView : UIScrollView <UIGestureRecognizerDelegate> 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /app/Pods/SWTableViewCell/SWTableViewCell/PodFiles/SWLongPressGestureRecognizer.h: -------------------------------------------------------------------------------- 1 | // 2 | // SWLongPressGestureRecognizer.h 3 | // SWTableViewCell 4 | // 5 | // Created by Matt Bowman on 11/27/13. 6 | // Copyright (c) 2013 Chris Wendel. All rights reserved. 7 | // 8 | 9 | #import <UIKit/UIKit.h> 10 | #import <UIKit/UIGestureRecognizerSubclass.h> 11 | 12 | @interface SWLongPressGestureRecognizer : UILongPressGestureRecognizer 13 | 14 | @end 15 | 16 | -------------------------------------------------------------------------------- /app/Pods/SWTableViewCell/SWTableViewCell/PodFiles/SWUtilityButtonTapGestureRecognizer.h: -------------------------------------------------------------------------------- 1 | // 2 | // SWUtilityButtonTapGestureRecognizer.h 3 | // SWTableViewCell 4 | // 5 | // Created by Matt Bowman on 11/27/13. 6 | // Copyright (c) 2013 Chris Wendel. All rights reserved. 7 | // 8 | 9 | #import <UIKit/UIKit.h> 10 | #import <UIKit/UIGestureRecognizerSubclass.h> 11 | 12 | @interface SWUtilityButtonTapGestureRecognizer : UITapGestureRecognizer 13 | 14 | @property (nonatomic) NSUInteger buttonIndex; 15 | 16 | @end 17 | 18 | -------------------------------------------------------------------------------- /app/Pods/SWTableViewCell/SWTableViewCell/PodFiles/SWUtilityButtonTapGestureRecognizer.m: -------------------------------------------------------------------------------- 1 | // 2 | // SWUtilityButtonTapGestureRecognizer.m 3 | // SWTableViewCell 4 | // 5 | // Created by Matt Bowman on 11/27/13. 6 | // Copyright (c) 2013 Chris Wendel. All rights reserved. 7 | // 8 | 9 | #import "SWUtilityButtonTapGestureRecognizer.h" 10 | 11 | @implementation SWUtilityButtonTapGestureRecognizer 12 | 13 | @end 14 | 15 | -------------------------------------------------------------------------------- /app/Pods/SocketRocket/LICENSE: -------------------------------------------------------------------------------- 1 | 2 | Copyright 2012 Square Inc. 3 | 4 | Licensed under the Apache License, Version 2.0 (the "License"); 5 | you may not use this file except in compliance with the License. 6 | You may obtain a copy of the License at 7 | 8 | http://www.apache.org/licenses/LICENSE-2.0 9 | 10 | Unless required by applicable law or agreed to in writing, software 11 | distributed under the License is distributed on an "AS IS" BASIS, 12 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | See the License for the specific language governing permissions and 14 | limitations under the License. 15 | 16 | -------------------------------------------------------------------------------- /app/Pods/TDOAuth/README.md: -------------------------------------------------------------------------------- 1 | A BSD-licensed single-header-single-source OAuth1 implementation. 2 | 3 | Use CocoaPods: 4 | 5 | pod 'TDOAuth' 6 | 7 | Or Carthage: 8 | 9 | github "tweetdeck/TDOAuth" 10 | 11 | Or just drag and drop the two sources and grab 12 | [OMGUserAgent.{h,m}](https://github.com/mxcl/OMGHTTPURLRQ). 13 | 14 | Usage is fully documented in the header. 15 | 16 | Tested against Foursquare and Twitter. If you test it against something else, 17 | please fork and list the services you used it against here. Thanks. 18 | -------------------------------------------------------------------------------- /app/Pods/TWMessageBarManager/Classes/Icons/icon-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonette/JASONETTE-iOS/44849b19e275251f40398de5462fe80b7590cb4b/app/Pods/TWMessageBarManager/Classes/Icons/icon-error.png -------------------------------------------------------------------------------- /app/Pods/TWMessageBarManager/Classes/Icons/icon-error@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonette/JASONETTE-iOS/44849b19e275251f40398de5462fe80b7590cb4b/app/Pods/TWMessageBarManager/Classes/Icons/icon-error@2x.png -------------------------------------------------------------------------------- /app/Pods/TWMessageBarManager/Classes/Icons/icon-info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonette/JASONETTE-iOS/44849b19e275251f40398de5462fe80b7590cb4b/app/Pods/TWMessageBarManager/Classes/Icons/icon-info.png -------------------------------------------------------------------------------- /app/Pods/TWMessageBarManager/Classes/Icons/icon-info@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonette/JASONETTE-iOS/44849b19e275251f40398de5462fe80b7590cb4b/app/Pods/TWMessageBarManager/Classes/Icons/icon-info@2x.png -------------------------------------------------------------------------------- /app/Pods/TWMessageBarManager/Classes/Icons/icon-success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonette/JASONETTE-iOS/44849b19e275251f40398de5462fe80b7590cb4b/app/Pods/TWMessageBarManager/Classes/Icons/icon-success.png -------------------------------------------------------------------------------- /app/Pods/TWMessageBarManager/Classes/Icons/icon-success@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonette/JASONETTE-iOS/44849b19e275251f40398de5462fe80b7590cb4b/app/Pods/TWMessageBarManager/Classes/Icons/icon-success@2x.png -------------------------------------------------------------------------------- /app/Pods/Target Support Files/AFNetworking/AFNetworking-dummy.m: -------------------------------------------------------------------------------- 1 | #import <Foundation/Foundation.h> 2 | @interface PodsDummy_AFNetworking : NSObject 3 | @end 4 | @implementation PodsDummy_AFNetworking 5 | @end 6 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/AFNetworking/AFNetworking-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import <UIKit/UIKit.h> 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 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/AFNetworking/AFNetworking.modulemap: -------------------------------------------------------------------------------- 1 | framework module AFNetworking { 2 | umbrella header "AFNetworking-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/AFOAuth2Manager/AFOAuth2Manager-dummy.m: -------------------------------------------------------------------------------- 1 | #import <Foundation/Foundation.h> 2 | @interface PodsDummy_AFOAuth2Manager : NSObject 3 | @end 4 | @implementation PodsDummy_AFOAuth2Manager 5 | @end 6 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/AFOAuth2Manager/AFOAuth2Manager-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import <UIKit/UIKit.h> 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 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/AFOAuth2Manager/AFOAuth2Manager-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import <UIKit/UIKit.h> 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 | #import "AFHTTPRequestSerializer+OAuth2.h" 14 | #import "AFOAuth2Manager.h" 15 | #import "AFOAuthCredential.h" 16 | 17 | FOUNDATION_EXPORT double AFOAuth2ManagerVersionNumber; 18 | FOUNDATION_EXPORT const unsigned char AFOAuth2ManagerVersionString[]; 19 | 20 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/AFOAuth2Manager/AFOAuth2Manager.modulemap: -------------------------------------------------------------------------------- 1 | framework module AFOAuth2Manager { 2 | umbrella header "AFOAuth2Manager-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/AHKActionSheet/AHKActionSheet-dummy.m: -------------------------------------------------------------------------------- 1 | #import <Foundation/Foundation.h> 2 | @interface PodsDummy_AHKActionSheet : NSObject 3 | @end 4 | @implementation PodsDummy_AHKActionSheet 5 | @end 6 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/AHKActionSheet/AHKActionSheet-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import <UIKit/UIKit.h> 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 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/AHKActionSheet/AHKActionSheet-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import <UIKit/UIKit.h> 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 | #import "AHKActionSheet.h" 14 | #import "AHKActionSheetViewController.h" 15 | #import "UIImage+AHKAdditions.h" 16 | #import "UIWindow+AHKAdditions.h" 17 | 18 | FOUNDATION_EXPORT double AHKActionSheetVersionNumber; 19 | FOUNDATION_EXPORT const unsigned char AHKActionSheetVersionString[]; 20 | 21 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/AHKActionSheet/AHKActionSheet.modulemap: -------------------------------------------------------------------------------- 1 | framework module AHKActionSheet { 2 | umbrella header "AHKActionSheet-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/AHKActionSheet/AHKActionSheet.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = $PODS_CONFIGURATION_BUILD_DIR/AHKActionSheet 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Public" 4 | OTHER_LDFLAGS = -framework "QuartzCore" 5 | PODS_BUILD_DIR = $BUILD_DIR 6 | PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 7 | PODS_ROOT = ${SRCROOT} 8 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/AHKActionSheet 9 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 10 | SKIP_INSTALL = YES 11 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/APAddressBook/APAddressBook-dummy.m: -------------------------------------------------------------------------------- 1 | #import <Foundation/Foundation.h> 2 | @interface PodsDummy_APAddressBook : NSObject 3 | @end 4 | @implementation PodsDummy_APAddressBook 5 | @end 6 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/APAddressBook/APAddressBook-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import <UIKit/UIKit.h> 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 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/APAddressBook/APAddressBook.modulemap: -------------------------------------------------------------------------------- 1 | framework module APAddressBook { 2 | umbrella header "APAddressBook-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/APAddressBook/APAddressBook.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = $PODS_CONFIGURATION_BUILD_DIR/APAddressBook 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Public" 4 | OTHER_LDFLAGS = -framework "AddressBook" 5 | PODS_BUILD_DIR = $BUILD_DIR 6 | PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 7 | PODS_ROOT = ${SRCROOT} 8 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/APAddressBook 9 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 10 | SKIP_INSTALL = YES 11 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/BBBadgeBarButtonItem/BBBadgeBarButtonItem-dummy.m: -------------------------------------------------------------------------------- 1 | #import <Foundation/Foundation.h> 2 | @interface PodsDummy_BBBadgeBarButtonItem : NSObject 3 | @end 4 | @implementation PodsDummy_BBBadgeBarButtonItem 5 | @end 6 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/BBBadgeBarButtonItem/BBBadgeBarButtonItem-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import <UIKit/UIKit.h> 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 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/BBBadgeBarButtonItem/BBBadgeBarButtonItem-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import <UIKit/UIKit.h> 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 | #import "BBBadgeBarButtonItem.h" 14 | 15 | FOUNDATION_EXPORT double BBBadgeBarButtonItemVersionNumber; 16 | FOUNDATION_EXPORT const unsigned char BBBadgeBarButtonItemVersionString[]; 17 | 18 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/BBBadgeBarButtonItem/BBBadgeBarButtonItem.modulemap: -------------------------------------------------------------------------------- 1 | framework module BBBadgeBarButtonItem { 2 | umbrella header "BBBadgeBarButtonItem-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/BBBadgeBarButtonItem/BBBadgeBarButtonItem.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = $PODS_CONFIGURATION_BUILD_DIR/BBBadgeBarButtonItem 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Public" 4 | PODS_BUILD_DIR = $BUILD_DIR 5 | PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 6 | PODS_ROOT = ${SRCROOT} 7 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/BBBadgeBarButtonItem 8 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 9 | SKIP_INSTALL = YES 10 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/CYRTextView/CYRTextView-dummy.m: -------------------------------------------------------------------------------- 1 | #import <Foundation/Foundation.h> 2 | @interface PodsDummy_CYRTextView : NSObject 3 | @end 4 | @implementation PodsDummy_CYRTextView 5 | @end 6 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/CYRTextView/CYRTextView-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import <UIKit/UIKit.h> 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 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/CYRTextView/CYRTextView-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import <UIKit/UIKit.h> 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 | #import "CYRLayoutManager.h" 14 | #import "CYRTextStorage.h" 15 | #import "CYRTextView.h" 16 | #import "CYRToken.h" 17 | 18 | FOUNDATION_EXPORT double CYRTextViewVersionNumber; 19 | FOUNDATION_EXPORT const unsigned char CYRTextViewVersionString[]; 20 | 21 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/CYRTextView/CYRTextView.modulemap: -------------------------------------------------------------------------------- 1 | framework module CYRTextView { 2 | umbrella header "CYRTextView-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/CYRTextView/CYRTextView.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = $PODS_CONFIGURATION_BUILD_DIR/CYRTextView 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Public" 4 | OTHER_LDFLAGS = -framework "CoreText" 5 | PODS_BUILD_DIR = $BUILD_DIR 6 | PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 7 | PODS_ROOT = ${SRCROOT} 8 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/CYRTextView 9 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 10 | SKIP_INSTALL = YES 11 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/DAKeyboardControl/DAKeyboardControl-dummy.m: -------------------------------------------------------------------------------- 1 | #import <Foundation/Foundation.h> 2 | @interface PodsDummy_DAKeyboardControl : NSObject 3 | @end 4 | @implementation PodsDummy_DAKeyboardControl 5 | @end 6 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/DAKeyboardControl/DAKeyboardControl-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import <UIKit/UIKit.h> 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 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/DAKeyboardControl/DAKeyboardControl-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import <UIKit/UIKit.h> 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 | #import "DAKeyboardControl.h" 14 | 15 | FOUNDATION_EXPORT double DAKeyboardControlVersionNumber; 16 | FOUNDATION_EXPORT const unsigned char DAKeyboardControlVersionString[]; 17 | 18 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/DAKeyboardControl/DAKeyboardControl.modulemap: -------------------------------------------------------------------------------- 1 | framework module DAKeyboardControl { 2 | umbrella header "DAKeyboardControl-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/DAKeyboardControl/DAKeyboardControl.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = $PODS_CONFIGURATION_BUILD_DIR/DAKeyboardControl 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Public" 4 | PODS_BUILD_DIR = $BUILD_DIR 5 | PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 6 | PODS_ROOT = ${SRCROOT} 7 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/DAKeyboardControl 8 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 9 | SKIP_INSTALL = YES 10 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/DHSmartScreenshot/DHSmartScreenshot-dummy.m: -------------------------------------------------------------------------------- 1 | #import <Foundation/Foundation.h> 2 | @interface PodsDummy_DHSmartScreenshot : NSObject 3 | @end 4 | @implementation PodsDummy_DHSmartScreenshot 5 | @end 6 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/DHSmartScreenshot/DHSmartScreenshot-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import <UIKit/UIKit.h> 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 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/DHSmartScreenshot/DHSmartScreenshot-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import <UIKit/UIKit.h> 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 | #import "DHSmartScreenshot.h" 14 | #import "UIImage+DHImageAdditions.h" 15 | #import "UIScrollView+DHSmartScreenshot.h" 16 | #import "UITableView+DHSmartScreenshot.h" 17 | #import "UIView+DHSmartScreenshot.h" 18 | 19 | FOUNDATION_EXPORT double DHSmartScreenshotVersionNumber; 20 | FOUNDATION_EXPORT const unsigned char DHSmartScreenshotVersionString[]; 21 | 22 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/DHSmartScreenshot/DHSmartScreenshot.modulemap: -------------------------------------------------------------------------------- 1 | framework module DHSmartScreenshot { 2 | umbrella header "DHSmartScreenshot-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/DHSmartScreenshot/DHSmartScreenshot.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = $PODS_CONFIGURATION_BUILD_DIR/DHSmartScreenshot 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Public" 4 | PODS_BUILD_DIR = $BUILD_DIR 5 | PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 6 | PODS_ROOT = ${SRCROOT} 7 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/DHSmartScreenshot 8 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 9 | SKIP_INSTALL = YES 10 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/DTCoreText/DTCoreText-dummy.m: -------------------------------------------------------------------------------- 1 | #import <Foundation/Foundation.h> 2 | @interface PodsDummy_DTCoreText : NSObject 3 | @end 4 | @implementation PodsDummy_DTCoreText 5 | @end 6 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/DTCoreText/DTCoreText-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import <UIKit/UIKit.h> 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 | #import <CoreText/CoreText.h> 14 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/DTCoreText/DTCoreText.modulemap: -------------------------------------------------------------------------------- 1 | framework module DTCoreText { 2 | umbrella header "DTCoreText-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/DTFoundation/DTFoundation-dummy.m: -------------------------------------------------------------------------------- 1 | #import <Foundation/Foundation.h> 2 | @interface PodsDummy_DTFoundation : NSObject 3 | @end 4 | @implementation PodsDummy_DTFoundation 5 | @end 6 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/DTFoundation/DTFoundation-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import <UIKit/UIKit.h> 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 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/DTFoundation/DTFoundation.modulemap: -------------------------------------------------------------------------------- 1 | framework module DTFoundation { 2 | umbrella header "DTFoundation-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/DTFoundation/DTFoundation.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = $PODS_CONFIGURATION_BUILD_DIR/DTFoundation 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Public" "$(SDKROOT)/usr/include/libxml2" 4 | OTHER_LDFLAGS = -l"xml2" -framework "ImageIO" -framework "QuartzCore" 5 | PODS_BUILD_DIR = $BUILD_DIR 6 | PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 7 | PODS_ROOT = ${SRCROOT} 8 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/DTFoundation 9 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 10 | SKIP_INSTALL = YES 11 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/FLEX/FLEX-dummy.m: -------------------------------------------------------------------------------- 1 | #import <Foundation/Foundation.h> 2 | @interface PodsDummy_FLEX : NSObject 3 | @end 4 | @implementation PodsDummy_FLEX 5 | @end 6 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/FLEX/FLEX-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import <UIKit/UIKit.h> 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 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/FLEX/FLEX-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import <UIKit/UIKit.h> 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 | #import "FLEXManager.h" 14 | #import "FLEX.h" 15 | 16 | FOUNDATION_EXPORT double FLEXVersionNumber; 17 | FOUNDATION_EXPORT const unsigned char FLEXVersionString[]; 18 | 19 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/FLEX/FLEX.modulemap: -------------------------------------------------------------------------------- 1 | framework module FLEX { 2 | umbrella header "FLEX-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/FLEX/FLEX.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = $PODS_CONFIGURATION_BUILD_DIR/FLEX 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Public" 4 | OTHER_LDFLAGS = -l"sqlite3" -l"z" -framework "CoreGraphics" -framework "Foundation" -framework "UIKit" 5 | PODS_BUILD_DIR = $BUILD_DIR 6 | PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 7 | PODS_ROOT = ${SRCROOT} 8 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/FLEX 9 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 10 | SKIP_INSTALL = YES 11 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/FreeStreamer/FreeStreamer-dummy.m: -------------------------------------------------------------------------------- 1 | #import <Foundation/Foundation.h> 2 | @interface PodsDummy_FreeStreamer : NSObject 3 | @end 4 | @implementation PodsDummy_FreeStreamer 5 | @end 6 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/FreeStreamer/FreeStreamer-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import <UIKit/UIKit.h> 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 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/FreeStreamer/FreeStreamer.modulemap: -------------------------------------------------------------------------------- 1 | framework module FreeStreamer { 2 | umbrella header "FreeStreamer-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/HMSegmentedControl/HMSegmentedControl-dummy.m: -------------------------------------------------------------------------------- 1 | #import <Foundation/Foundation.h> 2 | @interface PodsDummy_HMSegmentedControl : NSObject 3 | @end 4 | @implementation PodsDummy_HMSegmentedControl 5 | @end 6 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/HMSegmentedControl/HMSegmentedControl-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import <UIKit/UIKit.h> 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 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/HMSegmentedControl/HMSegmentedControl-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import <UIKit/UIKit.h> 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 | #import "HMSegmentedControl.h" 14 | 15 | FOUNDATION_EXPORT double HMSegmentedControlVersionNumber; 16 | FOUNDATION_EXPORT const unsigned char HMSegmentedControlVersionString[]; 17 | 18 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/HMSegmentedControl/HMSegmentedControl.modulemap: -------------------------------------------------------------------------------- 1 | framework module HMSegmentedControl { 2 | umbrella header "HMSegmentedControl-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/HMSegmentedControl/HMSegmentedControl.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = $PODS_CONFIGURATION_BUILD_DIR/HMSegmentedControl 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Public" 4 | OTHER_LDFLAGS = -framework "QuartzCore" 5 | PODS_BUILD_DIR = $BUILD_DIR 6 | PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 7 | PODS_ROOT = ${SRCROOT} 8 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/HMSegmentedControl 9 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 10 | SKIP_INSTALL = YES 11 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/INTULocationManager/INTULocationManager-dummy.m: -------------------------------------------------------------------------------- 1 | #import <Foundation/Foundation.h> 2 | @interface PodsDummy_INTULocationManager : NSObject 3 | @end 4 | @implementation PodsDummy_INTULocationManager 5 | @end 6 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/INTULocationManager/INTULocationManager-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import <UIKit/UIKit.h> 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 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/INTULocationManager/INTULocationManager.modulemap: -------------------------------------------------------------------------------- 1 | framework module INTULocationManager { 2 | umbrella header "INTULocationManager-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/INTULocationManager/INTULocationManager.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = $PODS_CONFIGURATION_BUILD_DIR/INTULocationManager 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Public" 4 | PODS_BUILD_DIR = $BUILD_DIR 5 | PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 6 | PODS_ROOT = ${SRCROOT} 7 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/INTULocationManager 8 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 9 | SKIP_INSTALL = YES 10 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/IQAudioRecorderController/IQAudioRecorderController-dummy.m: -------------------------------------------------------------------------------- 1 | #import <Foundation/Foundation.h> 2 | @interface PodsDummy_IQAudioRecorderController : NSObject 3 | @end 4 | @implementation PodsDummy_IQAudioRecorderController 5 | @end 6 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/IQAudioRecorderController/IQAudioRecorderController-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import <UIKit/UIKit.h> 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 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/IQAudioRecorderController/IQAudioRecorderController.modulemap: -------------------------------------------------------------------------------- 1 | framework module IQAudioRecorderController { 2 | umbrella header "IQAudioRecorderController-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/JDStatusBarNotification/JDStatusBarNotification-dummy.m: -------------------------------------------------------------------------------- 1 | #import <Foundation/Foundation.h> 2 | @interface PodsDummy_JDStatusBarNotification : NSObject 3 | @end 4 | @implementation PodsDummy_JDStatusBarNotification 5 | @end 6 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/JDStatusBarNotification/JDStatusBarNotification-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import <UIKit/UIKit.h> 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 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/JDStatusBarNotification/JDStatusBarNotification-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import <UIKit/UIKit.h> 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 | #import "JDStatusBarNotification.h" 14 | #import "JDStatusBarStyle.h" 15 | #import "JDStatusBarView.h" 16 | 17 | FOUNDATION_EXPORT double JDStatusBarNotificationVersionNumber; 18 | FOUNDATION_EXPORT const unsigned char JDStatusBarNotificationVersionString[]; 19 | 20 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/JDStatusBarNotification/JDStatusBarNotification.modulemap: -------------------------------------------------------------------------------- 1 | framework module JDStatusBarNotification { 2 | umbrella header "JDStatusBarNotification-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/JDStatusBarNotification/JDStatusBarNotification.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = $PODS_CONFIGURATION_BUILD_DIR/JDStatusBarNotification 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Public" 4 | OTHER_LDFLAGS = -framework "QuartzCore" 5 | PODS_BUILD_DIR = $BUILD_DIR 6 | PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 7 | PODS_ROOT = ${SRCROOT} 8 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/JDStatusBarNotification 9 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 10 | SKIP_INSTALL = YES 11 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/JSCoreBom/JSCoreBom-dummy.m: -------------------------------------------------------------------------------- 1 | #import <Foundation/Foundation.h> 2 | @interface PodsDummy_JSCoreBom : NSObject 3 | @end 4 | @implementation PodsDummy_JSCoreBom 5 | @end 6 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/JSCoreBom/JSCoreBom-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import <UIKit/UIKit.h> 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 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/JSCoreBom/JSCoreBom-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import <UIKit/UIKit.h> 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 | #import "JSCoreBom.h" 14 | 15 | FOUNDATION_EXPORT double JSCoreBomVersionNumber; 16 | FOUNDATION_EXPORT const unsigned char JSCoreBomVersionString[]; 17 | 18 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/JSCoreBom/JSCoreBom.modulemap: -------------------------------------------------------------------------------- 1 | framework module JSCoreBom { 2 | umbrella header "JSCoreBom-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/JSCoreBom/JSCoreBom.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = $PODS_CONFIGURATION_BUILD_DIR/JSCoreBom 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Public" 4 | OTHER_LDFLAGS = -framework "JavaScriptCore" 5 | PODS_BUILD_DIR = $BUILD_DIR 6 | PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 7 | PODS_ROOT = ${SRCROOT} 8 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/JSCoreBom 9 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 10 | SKIP_INSTALL = YES 11 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/MBProgressHUD/MBProgressHUD-dummy.m: -------------------------------------------------------------------------------- 1 | #import <Foundation/Foundation.h> 2 | @interface PodsDummy_MBProgressHUD : NSObject 3 | @end 4 | @implementation PodsDummy_MBProgressHUD 5 | @end 6 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/MBProgressHUD/MBProgressHUD-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import <UIKit/UIKit.h> 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 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/MBProgressHUD/MBProgressHUD-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import <UIKit/UIKit.h> 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 | #import "MBProgressHUD.h" 14 | 15 | FOUNDATION_EXPORT double MBProgressHUDVersionNumber; 16 | FOUNDATION_EXPORT const unsigned char MBProgressHUDVersionString[]; 17 | 18 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/MBProgressHUD/MBProgressHUD.modulemap: -------------------------------------------------------------------------------- 1 | framework module MBProgressHUD { 2 | umbrella header "MBProgressHUD-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/MBProgressHUD/MBProgressHUD.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = $PODS_CONFIGURATION_BUILD_DIR/MBProgressHUD 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Public" 4 | OTHER_LDFLAGS = -framework "CoreGraphics" -framework "QuartzCore" 5 | PODS_BUILD_DIR = $BUILD_DIR 6 | PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 7 | PODS_ROOT = ${SRCROOT} 8 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/MBProgressHUD 9 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 10 | SKIP_INSTALL = YES 11 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/NSGIF/NSGIF-dummy.m: -------------------------------------------------------------------------------- 1 | #import <Foundation/Foundation.h> 2 | @interface PodsDummy_NSGIF : NSObject 3 | @end 4 | @implementation PodsDummy_NSGIF 5 | @end 6 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/NSGIF/NSGIF-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import <UIKit/UIKit.h> 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 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/NSGIF/NSGIF-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import <UIKit/UIKit.h> 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 | #import "NSGIF.h" 14 | 15 | FOUNDATION_EXPORT double NSGIFVersionNumber; 16 | FOUNDATION_EXPORT const unsigned char NSGIFVersionString[]; 17 | 18 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/NSGIF/NSGIF.modulemap: -------------------------------------------------------------------------------- 1 | framework module NSGIF { 2 | umbrella header "NSGIF-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/NSGIF/NSGIF.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = $PODS_CONFIGURATION_BUILD_DIR/NSGIF 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Public" 4 | PODS_BUILD_DIR = $BUILD_DIR 5 | PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 6 | PODS_ROOT = ${SRCROOT} 7 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/NSGIF 8 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 9 | SKIP_INSTALL = YES 10 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/NSHash/NSHash-dummy.m: -------------------------------------------------------------------------------- 1 | #import <Foundation/Foundation.h> 2 | @interface PodsDummy_NSHash : NSObject 3 | @end 4 | @implementation PodsDummy_NSHash 5 | @end 6 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/NSHash/NSHash-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import <UIKit/UIKit.h> 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 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/NSHash/NSHash-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import <UIKit/UIKit.h> 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 | #import "NSData+NSHash.h" 14 | #import "NSString+NSHash.h" 15 | 16 | FOUNDATION_EXPORT double NSHashVersionNumber; 17 | FOUNDATION_EXPORT const unsigned char NSHashVersionString[]; 18 | 19 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/NSHash/NSHash.modulemap: -------------------------------------------------------------------------------- 1 | framework module NSHash { 2 | umbrella header "NSHash-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/NSHash/NSHash.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = $PODS_CONFIGURATION_BUILD_DIR/NSHash 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Public" 4 | PODS_BUILD_DIR = $BUILD_DIR 5 | PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 6 | PODS_ROOT = ${SRCROOT} 7 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/NSHash 8 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 9 | SKIP_INSTALL = YES 10 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/OMGHTTPURLRQ/OMGHTTPURLRQ-dummy.m: -------------------------------------------------------------------------------- 1 | #import <Foundation/Foundation.h> 2 | @interface PodsDummy_OMGHTTPURLRQ : NSObject 3 | @end 4 | @implementation PodsDummy_OMGHTTPURLRQ 5 | @end 6 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/OMGHTTPURLRQ/OMGHTTPURLRQ-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import <UIKit/UIKit.h> 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 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/OMGHTTPURLRQ/OMGHTTPURLRQ-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import <UIKit/UIKit.h> 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 | #import "OMGUserAgent.h" 14 | 15 | FOUNDATION_EXPORT double OMGHTTPURLRQVersionNumber; 16 | FOUNDATION_EXPORT const unsigned char OMGHTTPURLRQVersionString[]; 17 | 18 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/OMGHTTPURLRQ/OMGHTTPURLRQ.modulemap: -------------------------------------------------------------------------------- 1 | framework module OMGHTTPURLRQ { 2 | umbrella header "OMGHTTPURLRQ-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/OMGHTTPURLRQ/OMGHTTPURLRQ.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = $PODS_CONFIGURATION_BUILD_DIR/OMGHTTPURLRQ 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Public" 4 | PODS_BUILD_DIR = $BUILD_DIR 5 | PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 6 | PODS_ROOT = ${SRCROOT} 7 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/OMGHTTPURLRQ 8 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 9 | SKIP_INSTALL = YES 10 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/PHFComposeBarView/PHFComposeBarView-dummy.m: -------------------------------------------------------------------------------- 1 | #import <Foundation/Foundation.h> 2 | @interface PodsDummy_PHFComposeBarView : NSObject 3 | @end 4 | @implementation PodsDummy_PHFComposeBarView 5 | @end 6 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/PHFComposeBarView/PHFComposeBarView-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import <UIKit/UIKit.h> 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 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/PHFComposeBarView/PHFComposeBarView-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import <UIKit/UIKit.h> 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 | #import "PHFComposeBarView.h" 14 | #import "PHFComposeBarView_Button.h" 15 | #import "PHFComposeBarView_TextView.h" 16 | 17 | FOUNDATION_EXPORT double PHFComposeBarViewVersionNumber; 18 | FOUNDATION_EXPORT const unsigned char PHFComposeBarViewVersionString[]; 19 | 20 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/PHFComposeBarView/PHFComposeBarView.modulemap: -------------------------------------------------------------------------------- 1 | framework module PHFComposeBarView { 2 | umbrella header "PHFComposeBarView-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/PHFDelegateChain/PHFDelegateChain-dummy.m: -------------------------------------------------------------------------------- 1 | #import <Foundation/Foundation.h> 2 | @interface PodsDummy_PHFDelegateChain : NSObject 3 | @end 4 | @implementation PodsDummy_PHFDelegateChain 5 | @end 6 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/PHFDelegateChain/PHFDelegateChain-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import <UIKit/UIKit.h> 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 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/PHFDelegateChain/PHFDelegateChain-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import <UIKit/UIKit.h> 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 | #import "PHFDelegateChain.h" 14 | 15 | FOUNDATION_EXPORT double PHFDelegateChainVersionNumber; 16 | FOUNDATION_EXPORT const unsigned char PHFDelegateChainVersionString[]; 17 | 18 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/PHFDelegateChain/PHFDelegateChain.modulemap: -------------------------------------------------------------------------------- 1 | framework module PHFDelegateChain { 2 | umbrella header "PHFDelegateChain-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/PHFDelegateChain/PHFDelegateChain.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = $PODS_CONFIGURATION_BUILD_DIR/PHFDelegateChain 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Public" 4 | PODS_BUILD_DIR = $BUILD_DIR 5 | PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 6 | PODS_ROOT = ${SRCROOT} 7 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/PHFDelegateChain 8 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 9 | SKIP_INSTALL = YES 10 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/Pods-Jasonette/Pods-Jasonette-dummy.m: -------------------------------------------------------------------------------- 1 | #import <Foundation/Foundation.h> 2 | @interface PodsDummy_Pods_Jasonette : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_Jasonette 5 | @end 6 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/Pods-Jasonette/Pods-Jasonette-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import <UIKit/UIKit.h> 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 | 14 | FOUNDATION_EXPORT double Pods_JasonetteVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char Pods_JasonetteVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/Pods-Jasonette/Pods-Jasonette.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_Jasonette { 2 | umbrella header "Pods-Jasonette-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/REMenu/REMenu-dummy.m: -------------------------------------------------------------------------------- 1 | #import <Foundation/Foundation.h> 2 | @interface PodsDummy_REMenu : NSObject 3 | @end 4 | @implementation PodsDummy_REMenu 5 | @end 6 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/REMenu/REMenu-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import <UIKit/UIKit.h> 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 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/REMenu/REMenu-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import <UIKit/UIKit.h> 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 | #import "RECommonFunctions.h" 14 | #import "REMenu.h" 15 | #import "REMenuContainerView.h" 16 | #import "REMenuItem.h" 17 | #import "REMenuItemView.h" 18 | 19 | FOUNDATION_EXPORT double REMenuVersionNumber; 20 | FOUNDATION_EXPORT const unsigned char REMenuVersionString[]; 21 | 22 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/REMenu/REMenu.modulemap: -------------------------------------------------------------------------------- 1 | framework module REMenu { 2 | umbrella header "REMenu-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/REMenu/REMenu.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = $PODS_CONFIGURATION_BUILD_DIR/REMenu 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Public" 4 | OTHER_LDFLAGS = -framework "QuartzCore" 5 | PODS_BUILD_DIR = $BUILD_DIR 6 | PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 7 | PODS_ROOT = ${SRCROOT} 8 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/REMenu 9 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 10 | SKIP_INSTALL = YES 11 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/RMActionController/RMActionController-dummy.m: -------------------------------------------------------------------------------- 1 | #import <Foundation/Foundation.h> 2 | @interface PodsDummy_RMActionController : NSObject 3 | @end 4 | @implementation PodsDummy_RMActionController 5 | @end 6 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/RMActionController/RMActionController-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import <UIKit/UIKit.h> 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 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/RMActionController/RMActionController-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import <UIKit/UIKit.h> 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 | #import "RMActionController.h" 14 | 15 | FOUNDATION_EXPORT double RMActionControllerVersionNumber; 16 | FOUNDATION_EXPORT const unsigned char RMActionControllerVersionString[]; 17 | 18 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/RMActionController/RMActionController.modulemap: -------------------------------------------------------------------------------- 1 | framework module RMActionController { 2 | umbrella header "RMActionController-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/RMActionController/RMActionController.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = $PODS_CONFIGURATION_BUILD_DIR/RMActionController 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Public" 4 | OTHER_LDFLAGS = -framework "CoreGraphics" -framework "QuartzCore" 5 | PODS_BUILD_DIR = $BUILD_DIR 6 | PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 7 | PODS_ROOT = ${SRCROOT} 8 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/RMActionController 9 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 10 | SKIP_INSTALL = YES 11 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/RMDateSelectionViewController/RMDateSelectionViewController-dummy.m: -------------------------------------------------------------------------------- 1 | #import <Foundation/Foundation.h> 2 | @interface PodsDummy_RMDateSelectionViewController : NSObject 3 | @end 4 | @implementation PodsDummy_RMDateSelectionViewController 5 | @end 6 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/RMDateSelectionViewController/RMDateSelectionViewController-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import <UIKit/UIKit.h> 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 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/RMDateSelectionViewController/RMDateSelectionViewController-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import <UIKit/UIKit.h> 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 | #import "RMDateSelectionViewController.h" 14 | 15 | FOUNDATION_EXPORT double RMDateSelectionViewControllerVersionNumber; 16 | FOUNDATION_EXPORT const unsigned char RMDateSelectionViewControllerVersionString[]; 17 | 18 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/RMDateSelectionViewController/RMDateSelectionViewController.modulemap: -------------------------------------------------------------------------------- 1 | framework module RMDateSelectionViewController { 2 | umbrella header "RMDateSelectionViewController-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/Reachability/Reachability-dummy.m: -------------------------------------------------------------------------------- 1 | #import <Foundation/Foundation.h> 2 | @interface PodsDummy_Reachability : NSObject 3 | @end 4 | @implementation PodsDummy_Reachability 5 | @end 6 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/Reachability/Reachability-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import <UIKit/UIKit.h> 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 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/Reachability/Reachability-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import <UIKit/UIKit.h> 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 | #import "Reachability.h" 14 | 15 | FOUNDATION_EXPORT double ReachabilityVersionNumber; 16 | FOUNDATION_EXPORT const unsigned char ReachabilityVersionString[]; 17 | 18 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/Reachability/Reachability.modulemap: -------------------------------------------------------------------------------- 1 | framework module Reachability { 2 | umbrella header "Reachability-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/Reachability/Reachability.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = $PODS_CONFIGURATION_BUILD_DIR/Reachability 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Public" 4 | OTHER_LDFLAGS = -framework "SystemConfiguration" 5 | PODS_BUILD_DIR = $BUILD_DIR 6 | PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 7 | PODS_ROOT = ${SRCROOT} 8 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/Reachability 9 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 10 | SKIP_INSTALL = YES 11 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/SBJson/SBJson-dummy.m: -------------------------------------------------------------------------------- 1 | #import <Foundation/Foundation.h> 2 | @interface PodsDummy_SBJson : NSObject 3 | @end 4 | @implementation PodsDummy_SBJson 5 | @end 6 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/SBJson/SBJson-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import <UIKit/UIKit.h> 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 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/SBJson/SBJson-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import <UIKit/UIKit.h> 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 | #import "SBJson4.h" 14 | #import "SBJson4Parser.h" 15 | #import "SBJson4StreamParser.h" 16 | #import "SBJson4StreamTokeniser.h" 17 | #import "SBJson4StreamWriter.h" 18 | #import "SBJson4Writer.h" 19 | 20 | FOUNDATION_EXPORT double SBJsonVersionNumber; 21 | FOUNDATION_EXPORT const unsigned char SBJsonVersionString[]; 22 | 23 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/SBJson/SBJson.modulemap: -------------------------------------------------------------------------------- 1 | framework module SBJson { 2 | umbrella header "SBJson-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/SBJson/SBJson.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = $PODS_CONFIGURATION_BUILD_DIR/SBJson 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Public" 4 | PODS_BUILD_DIR = $BUILD_DIR 5 | PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 6 | PODS_ROOT = ${SRCROOT} 7 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/SBJson 8 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 9 | SKIP_INSTALL = YES 10 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/SCSiriWaveformView/SCSiriWaveformView-dummy.m: -------------------------------------------------------------------------------- 1 | #import <Foundation/Foundation.h> 2 | @interface PodsDummy_SCSiriWaveformView : NSObject 3 | @end 4 | @implementation PodsDummy_SCSiriWaveformView 5 | @end 6 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/SCSiriWaveformView/SCSiriWaveformView-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import <UIKit/UIKit.h> 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 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/SCSiriWaveformView/SCSiriWaveformView-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import <UIKit/UIKit.h> 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 | #import "SCSiriWaveformView.h" 14 | 15 | FOUNDATION_EXPORT double SCSiriWaveformViewVersionNumber; 16 | FOUNDATION_EXPORT const unsigned char SCSiriWaveformViewVersionString[]; 17 | 18 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/SCSiriWaveformView/SCSiriWaveformView.modulemap: -------------------------------------------------------------------------------- 1 | framework module SCSiriWaveformView { 2 | umbrella header "SCSiriWaveformView-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/SDWebImage/SDWebImage-dummy.m: -------------------------------------------------------------------------------- 1 | #import <Foundation/Foundation.h> 2 | @interface PodsDummy_SDWebImage : NSObject 3 | @end 4 | @implementation PodsDummy_SDWebImage 5 | @end 6 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import <UIKit/UIKit.h> 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 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/SDWebImage/SDWebImage.modulemap: -------------------------------------------------------------------------------- 1 | framework module SDWebImage { 2 | umbrella header "SDWebImage-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/SDWebImage/SDWebImage.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = $PODS_CONFIGURATION_BUILD_DIR/SDWebImage 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Public" 4 | OTHER_LDFLAGS = -framework "ImageIO" 5 | PODS_BUILD_DIR = $BUILD_DIR 6 | PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 7 | PODS_ROOT = ${SRCROOT} 8 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/SDWebImage 9 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 10 | SKIP_INSTALL = YES 11 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/SWFrameButton/SWFrameButton-dummy.m: -------------------------------------------------------------------------------- 1 | #import <Foundation/Foundation.h> 2 | @interface PodsDummy_SWFrameButton : NSObject 3 | @end 4 | @implementation PodsDummy_SWFrameButton 5 | @end 6 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/SWFrameButton/SWFrameButton-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import <UIKit/UIKit.h> 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 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/SWFrameButton/SWFrameButton-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import <UIKit/UIKit.h> 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 | #import "SWFrameButton.h" 14 | 15 | FOUNDATION_EXPORT double SWFrameButtonVersionNumber; 16 | FOUNDATION_EXPORT const unsigned char SWFrameButtonVersionString[]; 17 | 18 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/SWFrameButton/SWFrameButton.modulemap: -------------------------------------------------------------------------------- 1 | framework module SWFrameButton { 2 | umbrella header "SWFrameButton-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/SWFrameButton/SWFrameButton.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = $PODS_CONFIGURATION_BUILD_DIR/SWFrameButton 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Public" 4 | OTHER_LDFLAGS = -framework "QuartzCore" 5 | PODS_BUILD_DIR = $BUILD_DIR 6 | PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 7 | PODS_ROOT = ${SRCROOT} 8 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/SWFrameButton 9 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 10 | SKIP_INSTALL = YES 11 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/SWTableViewCell/SWTableViewCell-dummy.m: -------------------------------------------------------------------------------- 1 | #import <Foundation/Foundation.h> 2 | @interface PodsDummy_SWTableViewCell : NSObject 3 | @end 4 | @implementation PodsDummy_SWTableViewCell 5 | @end 6 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/SWTableViewCell/SWTableViewCell-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import <UIKit/UIKit.h> 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 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/SWTableViewCell/SWTableViewCell.modulemap: -------------------------------------------------------------------------------- 1 | framework module SWTableViewCell { 2 | umbrella header "SWTableViewCell-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/SWTableViewCell/SWTableViewCell.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = $PODS_CONFIGURATION_BUILD_DIR/SWTableViewCell 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Public" 4 | PODS_BUILD_DIR = $BUILD_DIR 5 | PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 6 | PODS_ROOT = ${SRCROOT} 7 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/SWTableViewCell 8 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 9 | SKIP_INSTALL = YES 10 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/SZTextView/SZTextView-dummy.m: -------------------------------------------------------------------------------- 1 | #import <Foundation/Foundation.h> 2 | @interface PodsDummy_SZTextView : NSObject 3 | @end 4 | @implementation PodsDummy_SZTextView 5 | @end 6 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/SZTextView/SZTextView-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import <UIKit/UIKit.h> 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 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/SZTextView/SZTextView-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import <UIKit/UIKit.h> 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 | #import "SZTextView.h" 14 | 15 | FOUNDATION_EXPORT double SZTextViewVersionNumber; 16 | FOUNDATION_EXPORT const unsigned char SZTextViewVersionString[]; 17 | 18 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/SZTextView/SZTextView.modulemap: -------------------------------------------------------------------------------- 1 | framework module SZTextView { 2 | umbrella header "SZTextView-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/SZTextView/SZTextView.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = $PODS_CONFIGURATION_BUILD_DIR/SZTextView 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Public" 4 | PODS_BUILD_DIR = $BUILD_DIR 5 | PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 6 | PODS_ROOT = ${SRCROOT} 7 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/SZTextView 8 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 9 | SKIP_INSTALL = YES 10 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/SocketRocket/SocketRocket-dummy.m: -------------------------------------------------------------------------------- 1 | #import <Foundation/Foundation.h> 2 | @interface PodsDummy_SocketRocket : NSObject 3 | @end 4 | @implementation PodsDummy_SocketRocket 5 | @end 6 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/SocketRocket/SocketRocket-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import <UIKit/UIKit.h> 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 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/SocketRocket/SocketRocket-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import <UIKit/UIKit.h> 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 | #import "SocketRocket.h" 14 | #import "SRWebSocket.h" 15 | 16 | FOUNDATION_EXPORT double SocketRocketVersionNumber; 17 | FOUNDATION_EXPORT const unsigned char SocketRocketVersionString[]; 18 | 19 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/SocketRocket/SocketRocket.modulemap: -------------------------------------------------------------------------------- 1 | framework module SocketRocket { 2 | umbrella header "SocketRocket-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/SocketRocket/SocketRocket.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = $PODS_CONFIGURATION_BUILD_DIR/SocketRocket 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Public" 4 | OTHER_LDFLAGS = -l"icucore" -framework "CFNetwork" -framework "Security" 5 | PODS_BUILD_DIR = $BUILD_DIR 6 | PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 7 | PODS_ROOT = ${SRCROOT} 8 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/SocketRocket 9 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 10 | SKIP_INSTALL = YES 11 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/TDOAuth/TDOAuth-dummy.m: -------------------------------------------------------------------------------- 1 | #import <Foundation/Foundation.h> 2 | @interface PodsDummy_TDOAuth : NSObject 3 | @end 4 | @implementation PodsDummy_TDOAuth 5 | @end 6 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/TDOAuth/TDOAuth-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import <UIKit/UIKit.h> 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 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/TDOAuth/TDOAuth-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import <UIKit/UIKit.h> 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 | #import "TDOAuth.h" 14 | 15 | FOUNDATION_EXPORT double TDOAuthVersionNumber; 16 | FOUNDATION_EXPORT const unsigned char TDOAuthVersionString[]; 17 | 18 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/TDOAuth/TDOAuth.modulemap: -------------------------------------------------------------------------------- 1 | framework module TDOAuth { 2 | umbrella header "TDOAuth-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/TDOAuth/TDOAuth.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = $PODS_CONFIGURATION_BUILD_DIR/TDOAuth 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/OMGHTTPURLRQ" 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Public" 5 | PODS_BUILD_DIR = $BUILD_DIR 6 | PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 7 | PODS_ROOT = ${SRCROOT} 8 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/TDOAuth 9 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 10 | SKIP_INSTALL = YES 11 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/TTTAttributedLabel/TTTAttributedLabel-dummy.m: -------------------------------------------------------------------------------- 1 | #import <Foundation/Foundation.h> 2 | @interface PodsDummy_TTTAttributedLabel : NSObject 3 | @end 4 | @implementation PodsDummy_TTTAttributedLabel 5 | @end 6 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/TTTAttributedLabel/TTTAttributedLabel-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import <UIKit/UIKit.h> 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 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/TTTAttributedLabel/TTTAttributedLabel-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import <UIKit/UIKit.h> 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 | #import "TTTAttributedLabel.h" 14 | 15 | FOUNDATION_EXPORT double TTTAttributedLabelVersionNumber; 16 | FOUNDATION_EXPORT const unsigned char TTTAttributedLabelVersionString[]; 17 | 18 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/TTTAttributedLabel/TTTAttributedLabel.modulemap: -------------------------------------------------------------------------------- 1 | framework module TTTAttributedLabel { 2 | umbrella header "TTTAttributedLabel-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/TWMessageBarManager/TWMessageBarManager-dummy.m: -------------------------------------------------------------------------------- 1 | #import <Foundation/Foundation.h> 2 | @interface PodsDummy_TWMessageBarManager : NSObject 3 | @end 4 | @implementation PodsDummy_TWMessageBarManager 5 | @end 6 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/TWMessageBarManager/TWMessageBarManager-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import <UIKit/UIKit.h> 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 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/TWMessageBarManager/TWMessageBarManager-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import <UIKit/UIKit.h> 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 | #import "TWMessageBarManager.h" 14 | 15 | FOUNDATION_EXPORT double TWMessageBarManagerVersionNumber; 16 | FOUNDATION_EXPORT const unsigned char TWMessageBarManagerVersionString[]; 17 | 18 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/TWMessageBarManager/TWMessageBarManager.modulemap: -------------------------------------------------------------------------------- 1 | framework module TWMessageBarManager { 2 | umbrella header "TWMessageBarManager-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/TWMessageBarManager/TWMessageBarManager.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = $PODS_CONFIGURATION_BUILD_DIR/TWMessageBarManager 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Public" 4 | PODS_BUILD_DIR = $BUILD_DIR 5 | PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 6 | PODS_ROOT = ${SRCROOT} 7 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/TWMessageBarManager 8 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 9 | SKIP_INSTALL = YES 10 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/UICKeyChainStore/UICKeyChainStore-dummy.m: -------------------------------------------------------------------------------- 1 | #import <Foundation/Foundation.h> 2 | @interface PodsDummy_UICKeyChainStore : NSObject 3 | @end 4 | @implementation PodsDummy_UICKeyChainStore 5 | @end 6 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/UICKeyChainStore/UICKeyChainStore-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import <UIKit/UIKit.h> 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 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/UICKeyChainStore/UICKeyChainStore-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import <UIKit/UIKit.h> 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 | #import "UICKeyChainStore.h" 14 | 15 | FOUNDATION_EXPORT double UICKeyChainStoreVersionNumber; 16 | FOUNDATION_EXPORT const unsigned char UICKeyChainStoreVersionString[]; 17 | 18 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/UICKeyChainStore/UICKeyChainStore.modulemap: -------------------------------------------------------------------------------- 1 | framework module UICKeyChainStore { 2 | umbrella header "UICKeyChainStore-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/UICKeyChainStore/UICKeyChainStore.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = $PODS_CONFIGURATION_BUILD_DIR/UICKeyChainStore 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Public" 4 | OTHER_LDFLAGS = -framework "Security" 5 | PODS_BUILD_DIR = $BUILD_DIR 6 | PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 7 | PODS_ROOT = ${SRCROOT} 8 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/UICKeyChainStore 9 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 10 | SKIP_INSTALL = YES 11 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/libPhoneNumber-iOS/libPhoneNumber-iOS-dummy.m: -------------------------------------------------------------------------------- 1 | #import <Foundation/Foundation.h> 2 | @interface PodsDummy_libPhoneNumber_iOS : NSObject 3 | @end 4 | @implementation PodsDummy_libPhoneNumber_iOS 5 | @end 6 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/libPhoneNumber-iOS/libPhoneNumber-iOS-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import <UIKit/UIKit.h> 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 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/libPhoneNumber-iOS/libPhoneNumber-iOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module libPhoneNumber_iOS { 2 | umbrella header "libPhoneNumber-iOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /app/Pods/Target Support Files/libPhoneNumber-iOS/libPhoneNumber-iOS.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = $PODS_CONFIGURATION_BUILD_DIR/libPhoneNumber-iOS 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Public" 4 | OTHER_LDFLAGS = -framework "CoreTelephony" 5 | PODS_BUILD_DIR = $BUILD_DIR 6 | PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 7 | PODS_ROOT = ${SRCROOT} 8 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/libPhoneNumber-iOS 9 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 10 | SKIP_INSTALL = YES 11 | -------------------------------------------------------------------------------- /app/Pods/libPhoneNumber-iOS/libPhoneNumber/NBMetadataCoreMapper.h: -------------------------------------------------------------------------------- 1 | // DO NOT EDIT (This file was auto-generated from NBPhoneMetaDataGenerator) 2 | 3 | #import <Foundation/Foundation.h> 4 | 5 | @interface NBMetadataCoreMapper : NSObject 6 | 7 | + (NSArray *)ISOCodeFromCallingNumber:(NSString *)key; 8 | 9 | @end 10 | 11 | -------------------------------------------------------------------------------- /app/Pods/libPhoneNumber-iOS/libPhoneNumber/NBMetadataCoreTestMapper.h: -------------------------------------------------------------------------------- 1 | // DO NOT EDIT (This file was auto-generated from NBPhoneMetaDataGenerator) 2 | 3 | #import <Foundation/Foundation.h> 4 | 5 | @interface NBMetadataCoreTestMapper : NSObject 6 | 7 | + (NSArray *)ISOCodeFromCallingNumber:(NSString *)key; 8 | 9 | @end 10 | 11 | -------------------------------------------------------------------------------- /app/Pods/libPhoneNumber-iOS/libPhoneNumber/NBPhoneNumberDefines.m: -------------------------------------------------------------------------------- 1 | #import "NBPhoneNumberDefines.h" 2 | 3 | NSString * const NB_UNKNOWN_REGION = @"ZZ"; 4 | NSString * const NB_NON_BREAKING_SPACE = @"\u00a0"; 5 | NSString * const NB_PLUS_CHARS = @"++"; 6 | NSString * const NB_VALID_DIGITS_STRING = @"0-90-9٠-٩۰-۹"; 7 | NSString * const NB_REGION_CODE_FOR_NON_GEO_ENTITY = @"001"; 8 | -------------------------------------------------------------------------------- /app/Pods/libPhoneNumber-iOS/libPhoneNumber/NBPhoneNumberDesc.h: -------------------------------------------------------------------------------- 1 | // 2 | // NBPhoneNumberDesc.h 3 | // libPhoneNumber 4 | // 5 | // 6 | 7 | #import <Foundation/Foundation.h> 8 | 9 | 10 | @interface NBPhoneNumberDesc : NSObject 11 | 12 | // from phonemetadata.pb.js 13 | /* 2 */ @property (nonatomic, strong, readwrite) NSString *nationalNumberPattern; 14 | /* 3 */ @property (nonatomic, strong, readwrite) NSString *possibleNumberPattern; 15 | /* 6 */ @property (nonatomic, strong, readwrite) NSString *exampleNumber; 16 | 17 | - (id)initWithNationalNumberPattern:(NSString *)nnp withPossibleNumberPattern:(NSString *)pnp withExample:(NSString *)exp; 18 | 19 | @end 20 | -------------------------------------------------------------------------------- /icon/Add a non-transparent icon to this folder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonette/JASONETTE-iOS/44849b19e275251f40398de5462fe80b7590cb4b/icon/Add a non-transparent icon to this folder -------------------------------------------------------------------------------- /icon/jason.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasonette/JASONETTE-iOS/44849b19e275251f40398de5462fe80b7590cb4b/icon/jason.jpg --------------------------------------------------------------------------------