├── Airship ├── Common │ ├── JS │ │ └── UANativeBridge.h │ ├── LandingPages │ │ └── UALandingPageAction.h │ ├── NSJSONSerialization+UAAdditions.h │ ├── NSString+URLEncoding.h │ ├── UAAction+Operators.h │ ├── UAAction.h │ ├── UAActionArguments.h │ ├── UAActionJSDelegate.h │ ├── UAActionRegistry.h │ ├── UAActionRegistryEntry.h │ ├── UAActionResult.h │ ├── UAActionRunner.h │ ├── UAAddTagsAction.h │ ├── UAAggregateActionResult.h │ ├── UAAnalytics.h │ ├── UAAnalyticsDBManager.h │ ├── UAAppDelegate.h │ ├── UAAppDelegateProxy.h │ ├── UAApplicationMetrics.h │ ├── UABaseLocationProvider.h │ ├── UABespokeCloseView.h │ ├── UABeveledLoadingIndicator.h │ ├── UACloseWindowAction.h │ ├── UAConfig.h │ ├── UADelayOperation.h │ ├── UADisposable.h │ ├── UAEvent.h │ ├── UAGlobal.h │ ├── UAHTTPConnection.h │ ├── UAHTTPConnectionOperation.h │ ├── UAHTTPRequest.h │ ├── UAHTTPRequestEngine.h │ ├── UAIncomingPushAction.h │ ├── UAIncomingRichPushAction.h │ ├── UAJavaScriptDelegate.h │ ├── UAKeychainUtils.h │ ├── UALandingPageOverlayController.h │ ├── UALocationCommonValues.h │ ├── UALocationEvent.h │ ├── UALocationProviderDelegate.h │ ├── UALocationProviderProtocol.h │ ├── UALocationService.h │ ├── UAModifyTagsAction.h │ ├── UAObservable.h │ ├── UAOpenExternalURLAction.h │ ├── UAPushActionArguments.h │ ├── UARemoveTagsAction.h │ ├── UARichContentWindow.h │ ├── UASQLite.h │ ├── UASignificantChangeProvider.h │ ├── UAStandardLocationProvider.h │ ├── UASyncAction.h │ ├── UATagUtils.h │ ├── UAURLProtocol.h │ ├── UAUser.h │ ├── UAUserAPIClient.h │ ├── UAUserData.h │ ├── UAUtils.h │ ├── UAWebInvocationActionArguments.h │ ├── UAWebViewCallData.h │ ├── UAWebViewTools.h │ ├── UAirship.h │ └── UIWebView+UAAdditions.h ├── External │ ├── UA_Base64.h │ └── UA_Reachability.h ├── Inbox │ ├── UAInbox.h │ ├── UAInboxAPIClient.h │ ├── UAInboxDBManager.h │ ├── UAInboxDefaultJSDelegate.h │ ├── UAInboxMessage.h │ ├── UAInboxMessageList.h │ ├── UAInboxMessageListDelegate.h │ ├── UAInboxMessageListObserver.h │ ├── UAInboxPushHandler.h │ ├── UAInboxUtils.h │ └── UAJSONValueTransformer.h ├── Push │ ├── UAChannelAPIClient.h │ ├── UAChannelRegistrationPayload.h │ ├── UADeviceAPIClient.h │ ├── UADeviceRegistrar.h │ ├── UADeviceRegistrationPayload.h │ └── UAPush.h ├── UI │ └── Default │ │ ├── Inbox │ │ ├── Classes │ │ │ └── Shared │ │ │ │ ├── UADateUtils.h │ │ │ │ ├── UADateUtils.m │ │ │ │ ├── UAInboxAlertHandler.h │ │ │ │ ├── UAInboxAlertHandler.m │ │ │ │ ├── UAInboxMessageListCell.h │ │ │ │ ├── UAInboxMessageListCell.m │ │ │ │ ├── UAInboxMessageListController.h │ │ │ │ ├── UAInboxMessageListController.m │ │ │ │ ├── UAInboxMessageViewController.h │ │ │ │ ├── UAInboxMessageViewController.m │ │ │ │ ├── UAInboxNavUI.h │ │ │ │ ├── UAInboxNavUI.m │ │ │ │ ├── UAInboxUI.h │ │ │ │ └── UAInboxUI.m │ │ └── Resources │ │ │ └── Shared │ │ │ ├── UAInboxLocalization.bundle │ │ │ └── en.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── UAInboxMessageListCell.xib │ │ │ ├── UAInboxMessageListController.xib │ │ │ ├── UAInboxMessageViewController.xib │ │ │ ├── list-image-placeholder.png │ │ │ └── list-image-placeholder@2x.png │ │ └── Push │ │ ├── Classes │ │ └── Shared │ │ │ ├── UALocationDemoAnnotation.h │ │ │ ├── UALocationDemoAnnotation.m │ │ │ ├── UALocationSettingsViewController.h │ │ │ ├── UALocationSettingsViewController.m │ │ │ ├── UAMapPresentationController.h │ │ │ ├── UAMapPresentationController.m │ │ │ ├── UAPushMoreSettingsViewController.h │ │ │ ├── UAPushMoreSettingsViewController.m │ │ │ ├── UAPushNotificationHandler.h │ │ │ ├── UAPushNotificationHandler.m │ │ │ ├── UAPushSettingsAddTagViewController.h │ │ │ ├── UAPushSettingsAddTagViewController.m │ │ │ ├── UAPushSettingsAliasViewController.h │ │ │ ├── UAPushSettingsAliasViewController.m │ │ │ ├── UAPushSettingsChannelInfoViewController.h │ │ │ ├── UAPushSettingsChannelInfoViewController.m │ │ │ ├── UAPushSettingsSoundsViewController.h │ │ │ ├── UAPushSettingsSoundsViewController.m │ │ │ ├── UAPushSettingsTagsViewController.h │ │ │ ├── UAPushSettingsTagsViewController.m │ │ │ ├── UAPushSettingsTokenViewController.h │ │ │ ├── UAPushSettingsTokenViewController.m │ │ │ ├── UAPushSettingsUserInfoViewController.h │ │ │ ├── UAPushSettingsUserInfoViewController.m │ │ │ ├── UAPushSettingsViewController.h │ │ │ ├── UAPushSettingsViewController.m │ │ │ ├── UAPushUI.h │ │ │ └── UAPushUI.m │ │ └── Resources │ │ └── Shared │ │ ├── UALocationSettingsViewController.xib │ │ ├── UAMapPresentationViewController.xib │ │ ├── UAPushLocalization.bundle │ │ └── en.lproj │ │ │ └── Localizable.strings │ │ ├── UAPushMoreSettingsView.xib │ │ ├── UAPushSettingsAddTagViewController.xib │ │ ├── UAPushSettingsAliasView.xib │ │ ├── UAPushSettingsChannelInfoViewController.xib │ │ ├── UAPushSettingsSoundsViewController.xib │ │ ├── UAPushSettingsTagsViewController.xib │ │ ├── UAPushSettingsTokenView.xib │ │ ├── UAPushSettingsUserInfoView.xib │ │ ├── UAPushSettingsView.xib │ │ ├── bottom-detail.png │ │ ├── bottom-detail@2x.png │ │ ├── middle-detail.png │ │ ├── middle-detail@2x.png │ │ ├── top-detail.png │ │ └── top-detail@2x.png ├── libUAirship-4.0.0.a └── libUAirship-iOS5-4.0.0.a ├── GenericSocialApp.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ ├── GenericSocialApp.xccheckout │ │ └── PeggSite.xccheckout │ └── xcuserdata │ │ └── jenduf.xcuserdatad │ │ ├── UserInterfaceState.xcuserstate │ │ └── WorkspaceSettings.xcsettings ├── xcshareddata │ └── xcschemes │ │ ├── Debug.xcscheme │ │ ├── Dev Ad Hoc.xcscheme │ │ ├── Dummy Data.xcscheme │ │ ├── PeggSite.xcscheme │ │ └── Prod Ad Hoc.xcscheme └── xcuserdata │ └── jenduf.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ └── xcschememanagement.plist ├── GenericSocialApp ├── AboutViewController.h ├── AboutViewController.m ├── AccountView.h ├── AccountView.m ├── Activity.h ├── Activity.m ├── ActivityAlert.h ├── ActivityAlert.m ├── ActivityCell.h ├── ActivityCell.m ├── ActivityViewController.h ├── ActivityViewController.m ├── AddContentBox.h ├── AddContentBox.m ├── AddPhotoViewController.h ├── AddPhotoViewController.m ├── AddTextView.h ├── AddTextView.m ├── AddViewController.h ├── AddViewController.m ├── AirshipConfig.plist ├── AppDelegate.h ├── AppDelegate.m ├── Article.h ├── Article.m ├── ArticleContentView.h ├── ArticleContentView.m ├── ArticleView.h ├── ArticleView.m ├── ArticleViewController.h ├── ArticleViewController.m ├── AssetManager.h ├── AssetManager.m ├── AvatarView.h ├── AvatarView.m ├── BoardScrollView.h ├── BoardScrollView.m ├── BoardViewController.h ├── BoardViewController.m ├── CollectionLoaderCell.h ├── CollectionLoaderCell.m ├── ColorButton.h ├── ColorButton.m ├── Comment.h ├── Comment.m ├── CommentCell.h ├── CommentCell.m ├── CommentsView.h ├── CommentsView.m ├── Constants.h ├── ContactsViewController.h ├── ContactsViewController.m ├── ContentBackgroundView.h ├── ContentBackgroundView.m ├── CropControlsView.h ├── CropControlsView.m ├── CropScrollView.h ├── CropScrollView.m ├── CropView.h ├── CropView.m ├── CustomActivityContainer.h ├── CustomActivityContainer.m ├── DataManager.h ├── DataManager.m ├── Divider.h ├── Divider.m ├── DrawingHelper.h ├── DrawingHelper.m ├── ETAssert.h ├── ETDebugLog.h ├── ETDictionary.h ├── ETDictionary.m ├── ETObject.h ├── ETObject.m ├── EditProfileViewController.h ├── EditProfileViewController.m ├── EmptyArticleView.h ├── EmptyArticleView.m ├── External_SDKs │ ├── FacebookSDK.framework │ │ ├── FacebookSDK │ │ ├── Headers │ │ ├── Resources │ │ └── Versions │ │ │ ├── A │ │ │ ├── DeprecatedHeaders │ │ │ │ ├── FBAccessTokenData.h │ │ │ │ ├── FBAppCall.h │ │ │ │ ├── FBAppEvents.h │ │ │ │ ├── FBAppLinkData.h │ │ │ │ ├── FBAppLinkResolver.h │ │ │ │ ├── FBCacheDescriptor.h │ │ │ │ ├── FBColor.h │ │ │ │ ├── FBConnect.h │ │ │ │ ├── FBDialog.h │ │ │ │ ├── FBDialogs.h │ │ │ │ ├── FBDialogsData.h │ │ │ │ ├── FBDialogsParams.h │ │ │ │ ├── FBError.h │ │ │ │ ├── FBErrorUtility.h │ │ │ │ ├── FBFrictionlessRecipientCache.h │ │ │ │ ├── FBFrictionlessRequestSettings.h │ │ │ │ ├── FBFriendPickerViewController.h │ │ │ │ ├── FBGraphLocation.h │ │ │ │ ├── FBGraphObject.h │ │ │ │ ├── FBGraphPlace.h │ │ │ │ ├── FBGraphUser.h │ │ │ │ ├── FBInsights.h │ │ │ │ ├── FBLikeControl.h │ │ │ │ ├── FBLinkShareParams.h │ │ │ │ ├── FBLoginDialog.h │ │ │ │ ├── FBLoginTooltipView.h │ │ │ │ ├── FBLoginView.h │ │ │ │ ├── FBNativeDialogs.h │ │ │ │ ├── FBOpenGraphAction.h │ │ │ │ ├── FBOpenGraphActionParams.h │ │ │ │ ├── FBOpenGraphActionShareDialogParams.h │ │ │ │ ├── FBOpenGraphObject.h │ │ │ │ ├── FBPhotoParams.h │ │ │ │ ├── FBPlacePickerViewController.h │ │ │ │ ├── FBProfilePictureView.h │ │ │ │ ├── FBRequest.h │ │ │ │ ├── FBRequestConnection.h │ │ │ │ ├── FBSDKMacros.h │ │ │ │ ├── FBSession.h │ │ │ │ ├── FBSessionManualTokenCachingStrategy.h │ │ │ │ ├── FBSessionTokenCachingStrategy.h │ │ │ │ ├── FBSettings.h │ │ │ │ ├── FBShareDialogParams.h │ │ │ │ ├── FBShareDialogPhotoParams.h │ │ │ │ ├── FBTestSession.h │ │ │ │ ├── FBTooltipView.h │ │ │ │ ├── FBUserSettingsViewController.h │ │ │ │ ├── FBViewController.h │ │ │ │ ├── FBWebDialogs.h │ │ │ │ ├── Facebook.h │ │ │ │ ├── FacebookSDK.h │ │ │ │ └── NSError+FBError.h │ │ │ ├── FacebookSDK │ │ │ ├── Headers │ │ │ │ ├── FBAccessTokenData.h │ │ │ │ ├── FBAppCall.h │ │ │ │ ├── FBAppEvents.h │ │ │ │ ├── FBAppLinkData.h │ │ │ │ ├── FBAppLinkResolver.h │ │ │ │ ├── FBCacheDescriptor.h │ │ │ │ ├── FBColor.h │ │ │ │ ├── FBDialogs.h │ │ │ │ ├── FBDialogsData.h │ │ │ │ ├── FBDialogsParams.h │ │ │ │ ├── FBError.h │ │ │ │ ├── FBErrorUtility.h │ │ │ │ ├── FBFrictionlessRecipientCache.h │ │ │ │ ├── FBFriendPickerViewController.h │ │ │ │ ├── FBGraphLocation.h │ │ │ │ ├── FBGraphObject.h │ │ │ │ ├── FBGraphPlace.h │ │ │ │ ├── FBGraphUser.h │ │ │ │ ├── FBInsights.h │ │ │ │ ├── FBLikeControl.h │ │ │ │ ├── FBLinkShareParams.h │ │ │ │ ├── FBLoginTooltipView.h │ │ │ │ ├── FBLoginView.h │ │ │ │ ├── FBNativeDialogs.h │ │ │ │ ├── FBOpenGraphAction.h │ │ │ │ ├── FBOpenGraphActionParams.h │ │ │ │ ├── FBOpenGraphActionShareDialogParams.h │ │ │ │ ├── FBOpenGraphObject.h │ │ │ │ ├── FBPhotoParams.h │ │ │ │ ├── FBPlacePickerViewController.h │ │ │ │ ├── FBProfilePictureView.h │ │ │ │ ├── FBRequest.h │ │ │ │ ├── FBRequestConnection.h │ │ │ │ ├── FBSDKMacros.h │ │ │ │ ├── FBSession.h │ │ │ │ ├── FBSessionTokenCachingStrategy.h │ │ │ │ ├── FBSettings.h │ │ │ │ ├── FBShareDialogParams.h │ │ │ │ ├── FBShareDialogPhotoParams.h │ │ │ │ ├── FBTestSession.h │ │ │ │ ├── FBTooltipView.h │ │ │ │ ├── FBUserSettingsViewController.h │ │ │ │ ├── FBViewController.h │ │ │ │ ├── FBWebDialogs.h │ │ │ │ ├── FacebookSDK.h │ │ │ │ └── NSError+FBError.h │ │ │ └── Resources │ │ │ │ ├── FBUserSettingsViewResources.bundle │ │ │ │ ├── Contents │ │ │ │ │ └── Resources │ │ │ │ │ │ ├── en.lproj │ │ │ │ │ │ └── Localizable.strings │ │ │ │ │ │ └── he.lproj │ │ │ │ │ │ └── Localizable.strings │ │ │ │ └── images │ │ │ │ │ ├── facebook-logo.png │ │ │ │ │ ├── facebook-logo@2x.png │ │ │ │ │ ├── loginBackgroundIPadLandscape.jpg │ │ │ │ │ ├── loginBackgroundIPadLandscape@2x.jpg │ │ │ │ │ ├── loginBackgroundIPadPortrait.jpg │ │ │ │ │ ├── loginBackgroundIPadPortrait@2x.jpg │ │ │ │ │ ├── loginBackgroundIPhonePortrait.jpg │ │ │ │ │ ├── loginBackgroundIPhonePortrait@2x.jpg │ │ │ │ │ ├── silver-button-normal.png │ │ │ │ │ ├── silver-button-normal@2x.png │ │ │ │ │ ├── silver-button-pressed.png │ │ │ │ │ └── silver-button-pressed@2x.png │ │ │ │ ├── FacebookSDKResources.bundle.README │ │ │ │ └── Info.plist │ │ │ └── Current │ └── HockeySDK.embeddedframework │ │ ├── HockeySDK.framework │ │ ├── Headers │ │ ├── HockeySDK │ │ ├── Resources │ │ └── Versions │ │ │ ├── A │ │ │ ├── Headers │ │ │ │ ├── BITAuthenticator.h │ │ │ │ ├── BITCrashAttachment.h │ │ │ │ ├── BITCrashManager.h │ │ │ │ ├── BITCrashManagerDelegate.h │ │ │ │ ├── BITFeedbackActivity.h │ │ │ │ ├── BITFeedbackComposeViewController.h │ │ │ │ ├── BITFeedbackComposeViewControllerDelegate.h │ │ │ │ ├── BITFeedbackListViewController.h │ │ │ │ ├── BITFeedbackManager.h │ │ │ │ ├── BITFeedbackManagerDelegate.h │ │ │ │ ├── BITHockeyBaseManager.h │ │ │ │ ├── BITHockeyBaseViewController.h │ │ │ │ ├── BITHockeyManager.h │ │ │ │ ├── BITHockeyManagerDelegate.h │ │ │ │ ├── BITStoreUpdateManager.h │ │ │ │ ├── BITStoreUpdateManagerDelegate.h │ │ │ │ ├── BITUpdateManager.h │ │ │ │ ├── BITUpdateManagerDelegate.h │ │ │ │ ├── BITUpdateViewController.h │ │ │ │ ├── CrashReporter.h │ │ │ │ ├── HockeySDK.h │ │ │ │ ├── HockeySDKFeatureConfig.h │ │ │ │ ├── PLCrashAsyncSignalInfo.h │ │ │ │ ├── PLCrashFeatureConfig.h │ │ │ │ ├── PLCrashNamespace.h │ │ │ │ ├── PLCrashReport.h │ │ │ │ ├── PLCrashReportApplicationInfo.h │ │ │ │ ├── PLCrashReportBinaryImageInfo.h │ │ │ │ ├── PLCrashReportExceptionInfo.h │ │ │ │ ├── PLCrashReportFormatter.h │ │ │ │ ├── PLCrashReportMachExceptionInfo.h │ │ │ │ ├── PLCrashReportMachineInfo.h │ │ │ │ ├── PLCrashReportProcessInfo.h │ │ │ │ ├── PLCrashReportProcessorInfo.h │ │ │ │ ├── PLCrashReportRegisterInfo.h │ │ │ │ ├── PLCrashReportSignalInfo.h │ │ │ │ ├── PLCrashReportStackFrameInfo.h │ │ │ │ ├── PLCrashReportSymbolInfo.h │ │ │ │ ├── PLCrashReportSystemInfo.h │ │ │ │ ├── PLCrashReportTextFormatter.h │ │ │ │ ├── PLCrashReportThreadInfo.h │ │ │ │ ├── PLCrashReporter.h │ │ │ │ └── PLCrashReporterConfig.h │ │ │ ├── HockeySDK │ │ │ └── Resources │ │ │ │ ├── HockeySDK.xcconfig │ │ │ │ └── HockeySDKResources.bundle │ │ │ │ ├── IconGradient.png │ │ │ │ ├── IconGradient@2x.png │ │ │ │ ├── Info.plist │ │ │ │ ├── authorize_denied.png │ │ │ │ ├── authorize_denied@2x.png │ │ │ │ ├── bg.png │ │ │ │ ├── buttonHighlight.png │ │ │ │ ├── buttonHighlight@2x.png │ │ │ │ ├── buttonRoundedDelete.png │ │ │ │ ├── buttonRoundedDelete@2x.png │ │ │ │ ├── buttonRoundedDeleteHighlighted.png │ │ │ │ ├── buttonRoundedDeleteHighlighted@2x.png │ │ │ │ ├── buttonRoundedRegular.png │ │ │ │ ├── buttonRoundedRegular@2x.png │ │ │ │ ├── buttonRoundedRegularHighlighted.png │ │ │ │ ├── buttonRoundedRegularHighlighted@2x.png │ │ │ │ ├── de.lproj │ │ │ │ └── HockeySDK.strings │ │ │ │ ├── en.lproj │ │ │ │ └── HockeySDK.strings │ │ │ │ ├── es.lproj │ │ │ │ └── HockeySDK.strings │ │ │ │ ├── feedbackActivity@2x~ipad.png │ │ │ │ ├── feedbackActivity~ipad.png │ │ │ │ ├── feedbackActiviy.png │ │ │ │ ├── feedbackActiviy@2x.png │ │ │ │ ├── fr.lproj │ │ │ │ └── HockeySDK.strings │ │ │ │ ├── hr.lproj │ │ │ │ └── HockeySDK.strings │ │ │ │ ├── hu.lproj │ │ │ │ └── HockeySDK.strings │ │ │ │ ├── it.lproj │ │ │ │ └── HockeySDK.strings │ │ │ │ ├── ja.lproj │ │ │ │ └── HockeySDK.strings │ │ │ │ ├── nl.lproj │ │ │ │ └── HockeySDK.strings │ │ │ │ ├── pt-PT.lproj │ │ │ │ └── HockeySDK.strings │ │ │ │ ├── pt.lproj │ │ │ │ └── HockeySDK.strings │ │ │ │ ├── ro.lproj │ │ │ │ └── HockeySDK.strings │ │ │ │ ├── ru.lproj │ │ │ │ └── HockeySDK.strings │ │ │ │ └── zh-Hans.lproj │ │ │ │ └── HockeySDK.strings │ │ │ └── Current │ │ └── Resources │ │ ├── HockeySDK.xcconfig │ │ └── HockeySDKResources.bundle ├── FacebookFriendViewController.h ├── FacebookFriendViewController.m ├── FacebookUser.h ├── FacebookUser.m ├── FindFriendsViewController.h ├── FindFriendsViewController.m ├── FollowButton.h ├── FollowButton.m ├── FollowButtonView.h ├── FollowButtonView.m ├── FollowCell.h ├── FollowCell.m ├── FollowSegmentView.h ├── FollowSegmentView.m ├── Follower.h ├── Follower.m ├── ForgotPasswordViewController.h ├── ForgotPasswordViewController.m ├── Friend.h ├── Friend.m ├── FriendCell.h ├── FriendCell.m ├── FriendCollectionCell.h ├── FriendCollectionCell.m ├── FriendListCell.h ├── FriendListCell.m ├── FullScreenViewController.h ├── FullScreenViewController.m ├── GalleryThumbnailView.h ├── GalleryThumbnailView.m ├── GenericSocialApp-Info.plist ├── GenericSocialApp-Prefix.pch ├── GradientView.h ├── GradientView.m ├── HeaderView.h ├── HeaderView.m ├── HomeViewController.h ├── HomeViewController.m ├── Images.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── icon_114.png │ │ ├── icon_120.png │ │ ├── icon_29.png │ │ ├── icon_57.png │ │ ├── icon_58.png │ │ └── icon_80.png │ ├── LaunchImage.launchimage │ │ ├── Contents.json │ │ ├── default.png │ │ ├── default@2x-1.png │ │ ├── default@2x.png │ │ ├── defaultR4@2x-1.png │ │ └── defaultR4@2x.png │ ├── about_icon.imageset │ │ ├── Contents.json │ │ ├── about_icon.png │ │ └── about_icon@2x.png │ ├── action_arrow.imageset │ │ ├── Contents.json │ │ ├── action_arrow.png │ │ └── action_arrow@2x.png │ ├── activity_icon.imageset │ │ ├── Contents.json │ │ ├── activity_icon.png │ │ └── activity_icon@2x.png │ ├── activity_icon_active.imageset │ │ ├── Contents.json │ │ ├── activity_icon_active.png │ │ └── activity_icon_active@2x.png │ ├── activity_icon_selected.imageset │ │ ├── Contents.json │ │ ├── activity_icon_selected.png │ │ └── activity_icon_selected@2x.png │ ├── add.imageset │ │ ├── Contents.json │ │ ├── add.png │ │ └── add@2x.png │ ├── add_audio_icon.imageset │ │ ├── Contents.json │ │ ├── add_audio_icon.png │ │ └── add_audio_icon@2x.png │ ├── add_friend.imageset │ │ ├── Contents.json │ │ ├── add_friend.png │ │ └── add_friend@2x.png │ ├── add_icon.imageset │ │ ├── Contents.json │ │ ├── add_icon.png │ │ └── add_icon@2x.png │ ├── add_photo_icon.imageset │ │ ├── Contents.json │ │ ├── add_photo_icon.png │ │ └── add_photo_icon@2x.png │ ├── add_text_icon.imageset │ │ ├── Contents.json │ │ ├── add_text_icon.png │ │ └── add_text_icon@2x.png │ ├── add_video_icon.imageset │ │ ├── Contents.json │ │ ├── add_video_icon.png │ │ └── add_video_icon@2x.png │ ├── back.imageset │ │ ├── Contents.json │ │ ├── back.png │ │ └── back@2x.png │ ├── back_icon.imageset │ │ ├── Contents.json │ │ ├── back_icon.png │ │ └── back_icon@2x.png │ ├── bio_icon.imageset │ │ ├── Contents.json │ │ ├── bio_icon.png │ │ └── bio_icon@2x.png │ ├── board_shadow.imageset │ │ ├── Contents.json │ │ ├── board_shadow.png │ │ └── board_shadow@2x.png │ ├── camera_capture_button.imageset │ │ ├── Contents.json │ │ ├── camera_capture_button.png │ │ └── camera_capture_button@2x.png │ ├── camera_flash.imageset │ │ ├── Contents.json │ │ ├── camera_flash.png │ │ └── camera_flash@2x.png │ ├── camera_flash_on.imageset │ │ ├── Contents.json │ │ ├── camera_flash_on.png │ │ └── camera_flash_on@2x.png │ ├── camera_roll.imageset │ │ ├── Contents.json │ │ ├── camera_roll.png │ │ └── camera_roll@2x.png │ ├── camera_x.imageset │ │ ├── Contents.json │ │ ├── camera_x.png │ │ └── camera_x@2x.png │ ├── cancel_button.imageset │ │ ├── Contents.json │ │ ├── cancel_button.png │ │ └── cancel_button@2x.png │ ├── change_button.imageset │ │ ├── Contents.json │ │ ├── change_button.png │ │ └── change_button@2x.png │ ├── close_button.imageset │ │ ├── Contents.json │ │ ├── close_button.png │ │ └── close_button@2x.png │ ├── comment.imageset │ │ ├── Contents.json │ │ ├── comment.png │ │ └── comment@2x.png │ ├── comment_icon.imageset │ │ ├── Contents.json │ │ ├── comment_icon.png │ │ └── comment_icon@2x.png │ ├── contacts_icon.imageset │ │ ├── Contents.json │ │ ├── contacts_icon.png │ │ └── contacts_icon@2x.png │ ├── defaultR4.imageset │ │ ├── Contents.json │ │ ├── defaultR4.png │ │ └── defaultR4@2x.png │ ├── default_post_thumb.imageset │ │ ├── Contents.json │ │ ├── default_post_thumb.png │ │ └── default_post_thumb@2x.png │ ├── delete.imageset │ │ ├── Contents.json │ │ ├── delete.png │ │ └── delete@2x.png │ ├── delete_icon.imageset │ │ ├── Contents.json │ │ ├── delete_icon.png │ │ └── delete_icon@2x.png │ ├── detail_arrow.imageset │ │ ├── Contents.json │ │ ├── detail_arrow.png │ │ └── detail_arrow@2x.png │ ├── divider.imageset │ │ ├── Contents.json │ │ ├── divider.png │ │ └── divider@2x.png │ ├── done_button.imageset │ │ ├── Contents.json │ │ ├── done_button.png │ │ └── done_button@2x.png │ ├── edit_icon.imageset │ │ ├── Contents.json │ │ ├── edit_icon.png │ │ └── edit_icon@2x.png │ ├── edit_profile.imageset │ │ ├── Contents.json │ │ ├── edit_profile.png │ │ └── edit_profile@2x.png │ ├── email.imageset │ │ ├── Contents.json │ │ ├── email.png │ │ └── email@2x.png │ ├── email_icon.imageset │ │ ├── Contents.json │ │ ├── email_icon.png │ │ └── email_icon@2x.png │ ├── facebook_icon.imageset │ │ ├── Contents.json │ │ ├── facebook_icon.png │ │ └── facebook_icon@2x.png │ ├── facebook_icon_small.imageset │ │ ├── Contents.json │ │ ├── facebook_icon_small.png │ │ └── facebook_icon_small@2x.png │ ├── favorite_active.imageset │ │ ├── Contents.json │ │ ├── favorite_active.png │ │ └── favorite_active@2x.png │ ├── favorite_inactive.imageset │ │ ├── Contents.json │ │ ├── favorite_inactive.png │ │ └── favorite_inactive@2x.png │ ├── feedback_icon.imageset │ │ ├── Contents.json │ │ ├── feedback_icon.png │ │ └── feedback_icon@2x.png │ ├── flip_image.imageset │ │ ├── Contents.json │ │ ├── flip_image.png │ │ └── flip_image@2x.png │ ├── focus_reticle_1.imageset │ │ ├── Contents.json │ │ ├── reticle1-@1x.png │ │ └── reticle1-@2x.png │ ├── focus_reticle_2.imageset │ │ ├── Contents.json │ │ ├── reticle2-@1x.png │ │ └── reticle2-@2x.png │ ├── follow_button_active.imageset │ │ ├── Contents.json │ │ ├── follow_button_active.png │ │ └── follow_button_active@2x.png │ ├── follow_button_active_small.imageset │ │ ├── Contents.json │ │ ├── follow_button_active_small.png │ │ └── follow_button_active_small@2x.png │ ├── follow_button_decline.imageset │ │ ├── Contents.json │ │ ├── follow_button_decline.png │ │ └── follow_button_decline@2x.png │ ├── follow_button_inactive.imageset │ │ ├── Contents.json │ │ ├── follow_button_inactive.png │ │ └── follow_button_inactive@2x.png │ ├── follow_button_inactive_small.imageset │ │ ├── Contents.json │ │ ├── follow_button_inactive_small.png │ │ └── follow_button_inactive_small@2x.png │ ├── forward.imageset │ │ ├── Contents.json │ │ ├── forward.png │ │ └── forward@2x.png │ ├── friend_add.imageset │ │ ├── Contents.json │ │ ├── friend_add.png │ │ └── friend_add@2x.png │ ├── friends.imageset │ │ ├── Contents.json │ │ ├── friends.png │ │ └── friends@2x.png │ ├── friends_icon.imageset │ │ ├── Contents.json │ │ ├── friends_icon.png │ │ └── friends_icon@2x.png │ ├── generic_avatar.imageset │ │ ├── Contents.json │ │ ├── generic_avatar.png │ │ └── generic_avatar@2x.png │ ├── generic_camera_roll.imageset │ │ ├── Contents.json │ │ ├── generic_camera_roll.png │ │ └── generic_camera_roll@2x.png │ ├── generic_photo.imageset │ │ ├── Contents.json │ │ ├── generic_photo.png │ │ └── generic_photo@2x.png │ ├── help.imageset │ │ ├── Contents.json │ │ ├── help.png │ │ └── help@2x.png │ ├── help_icon.imageset │ │ ├── Contents.json │ │ ├── help_icon.png │ │ └── help_icon@2x.png │ ├── home_icon.imageset │ │ ├── Contents.json │ │ ├── home_icon.png │ │ └── home_icon@2x.png │ ├── home_icon_selected.imageset │ │ ├── Contents.json │ │ ├── home_icon_selected.png │ │ └── home_icon_selected@2x.png │ ├── icon_view.imageset │ │ ├── Contents.json │ │ ├── icon_view.png │ │ └── icon_view@2x.png │ ├── icon_view_on.imageset │ │ ├── Contents.json │ │ ├── icon_view_on.png │ │ └── icon_view_on@2x.png │ ├── image_generic.imageset │ │ ├── Contents.json │ │ ├── image_generic.png │ │ └── image_generic@2x.png │ ├── image_generic2.imageset │ │ ├── Contents.json │ │ ├── image_generic2.png │ │ └── image_generic2@2x.png │ ├── info_icon.imageset │ │ ├── Contents.json │ │ ├── info_icon.png │ │ └── info_icon@2x.png │ ├── intro_art_overlay.imageset │ │ ├── Contents.json │ │ ├── intro_art_overlay.png │ │ └── intro_art_overlay@2x.png │ ├── list_view.imageset │ │ ├── Contents.json │ │ ├── list_view.png │ │ └── list_view@2x.png │ ├── list_view_off.imageset │ │ ├── Contents.json │ │ ├── list_view_off.png │ │ └── list_view_off@2x.png │ ├── location.imageset │ │ ├── Contents.json │ │ ├── location.png │ │ └── location@2x.png │ ├── location_icon.imageset │ │ ├── Contents.json │ │ ├── location_icon.png │ │ └── location_icon@2x.png │ ├── lock.imageset │ │ ├── Contents.json │ │ ├── lock.png │ │ └── lock@2x.png │ ├── login_art_overlay.imageset │ │ ├── Contents.json │ │ ├── login_art_overlay.png │ │ └── login_art_overlay@2x.png │ ├── logout.imageset │ │ ├── Contents.json │ │ ├── logout_icon.png │ │ └── logout_icon@2x.png │ ├── logout_icon.imageset │ │ ├── Contents.json │ │ ├── logout_icon.png │ │ └── logout_icon@2x.png │ ├── map_point.imageset │ │ ├── Contents.json │ │ ├── map_point.png │ │ └── map_point@2x.png │ ├── more_button.imageset │ │ ├── Contents.json │ │ ├── more_button.png │ │ └── more_button@2x.png │ ├── more_icon.imageset │ │ ├── Contents.json │ │ ├── more_icon.png │ │ └── more_icon@2x.png │ ├── more_icon_selected.imageset │ │ ├── Contents.json │ │ ├── more_icon_selected.png │ │ └── more_icon_selected@2x.png │ ├── name_icon.imageset │ │ ├── Contents.json │ │ ├── name_icon.png │ │ └── name_icon@2x.png │ ├── new_post.imageset │ │ ├── Contents.json │ │ ├── new_post.png │ │ └── new_post@2x.png │ ├── notes_icon.imageset │ │ ├── Contents.json │ │ ├── notes_icon.png │ │ └── notes_icon@2x.png │ ├── panel_button.imageset │ │ ├── Contents.json │ │ ├── panel_button.png │ │ └── panel_button@2x.png │ ├── pegg_icon.imageset │ │ ├── Contents.json │ │ ├── pegg_icon.png │ │ └── pegg_icon@2x.png │ ├── photo_button.imageset │ │ ├── Contents.json │ │ ├── photo_button.png │ │ └── photo_button@2x.png │ ├── photo_grid.imageset │ │ ├── Contents.json │ │ ├── photo_grid.png │ │ └── photo_grid@2x.png │ ├── play_audio.imageset │ │ ├── Contents.json │ │ ├── play_audio.png │ │ └── play_audio@2x.png │ ├── play_icon.imageset │ │ ├── Contents.json │ │ ├── play_icon.png │ │ └── play_icon@2x.png │ ├── play_video.imageset │ │ ├── Contents.json │ │ ├── play_video.png │ │ └── play_video@2x.png │ ├── privacy_icon.imageset │ │ ├── Contents.json │ │ ├── privacy_icon.png │ │ └── privacy_icon@2x.png │ ├── private.imageset │ │ ├── Contents.json │ │ ├── private.png │ │ └── private@2x.png │ ├── private_off.imageset │ │ ├── Contents.json │ │ ├── private_off.png │ │ └── private_off@2x.png │ ├── private_on.imageset │ │ ├── Contents.json │ │ ├── private_icon.png │ │ └── private_icon@2x.png │ ├── profile_add.imageset │ │ ├── Contents.json │ │ ├── profile_add.png │ │ └── profile_add@2x.png │ ├── profile_icon.imageset │ │ ├── Contents.json │ │ ├── profile_icon.png │ │ └── profile_icon@2x.png │ ├── profile_icon_selected.imageset │ │ ├── Contents.json │ │ ├── profile_icon_selected.png │ │ └── profile_icon_selected@2x.png │ ├── profile_view.imageset │ │ ├── Contents.json │ │ ├── profile_view.png │ │ └── profile_view@2x.png │ ├── push_icon.imageset │ │ ├── Contents.json │ │ ├── push_icon.png │ │ └── push_icon@2x.png │ ├── refresh_icon.imageset │ │ ├── Contents.json │ │ ├── refresh_icon.png │ │ └── refresh_icon@2x.png │ ├── report_icon.imageset │ │ ├── Contents.json │ │ ├── report_icon.png │ │ └── report_icon@2x.png │ ├── rich_divider.imageset │ │ ├── Contents.json │ │ ├── rich_divider.png │ │ └── rich_divider@2x.png │ ├── sand_background.imageset │ │ ├── Contents.json │ │ ├── join_background.png │ │ └── join_background@2x.png │ ├── search_icon.imageset │ │ ├── Contents.json │ │ ├── search_icon.png │ │ └── search_icon@2x.png │ ├── search_icon_on.imageset │ │ ├── Contents.json │ │ ├── search_icon_on.png │ │ └── search_icon_on@2x.png │ ├── send_button.imageset │ │ ├── Contents.json │ │ ├── send_button.png │ │ └── send_button@2x.png │ ├── settings.imageset │ │ ├── Contents.json │ │ ├── settings.png │ │ └── settings@2x.png │ ├── shadow_bottom.imageset │ │ ├── Contents.json │ │ ├── shadow_bottom.png │ │ └── shadow_bottom@2x.png │ ├── share_background.imageset │ │ ├── Contents.json │ │ ├── share_background.png │ │ └── share_background@2x.png │ ├── share_fb_icon.imageset │ │ ├── Contents.json │ │ ├── share_fb_icon.png │ │ └── share_fb_icon@2x.png │ ├── share_icon.imageset │ │ ├── Contents.json │ │ ├── share_icon.png │ │ └── share_icon@2x.png │ ├── share_twitter_icon.imageset │ │ ├── Contents.json │ │ ├── share_twitter_icon.png │ │ └── share_twitter_icon@2x.png │ ├── short_back_arrow.imageset │ │ ├── Contents.json │ │ ├── short_back_arrow.png │ │ └── short_back_arrow@2x.png │ ├── showlist.imageset │ │ ├── Contents.json │ │ ├── showlist.png │ │ └── showlist@2x.png │ ├── showthumbs.imageset │ │ ├── Contents.json │ │ ├── showthumbs.png │ │ └── showthumbs@2x.png │ ├── site_logo.imageset │ │ ├── Contents.json │ │ ├── site_logo.png │ │ └── site_logo@2x.png │ ├── social_detail_arrow.imageset │ │ ├── Contents.json │ │ ├── social_detail_arrow.png │ │ └── social_detail_arrow@2x.png │ ├── soundcloud_icon.imageset │ │ ├── Contents.json │ │ ├── soundcloud_icon.png │ │ └── soundcloud_icon@2x.png │ ├── spinners │ │ ├── brown_loader_0.imageset │ │ │ ├── Contents.json │ │ │ ├── brown_loader_0.png │ │ │ └── brown_loader_0@2x.png │ │ ├── brown_loader_1.imageset │ │ │ ├── Contents.json │ │ │ ├── brown_loader_1.png │ │ │ └── brown_loader_1@2x.png │ │ ├── brown_loader_10.imageset │ │ │ ├── Contents.json │ │ │ ├── brown_loader_10.png │ │ │ └── brown_loader_10@2x.png │ │ ├── brown_loader_11.imageset │ │ │ ├── Contents.json │ │ │ ├── brown_loader_11.png │ │ │ └── brown_loader_11@2x.png │ │ ├── brown_loader_2.imageset │ │ │ ├── Contents.json │ │ │ ├── brown_loader_2.png │ │ │ └── brown_loader_2@2x.png │ │ ├── brown_loader_3.imageset │ │ │ ├── Contents.json │ │ │ ├── brown_loader_3.png │ │ │ └── brown_loader_3@2x.png │ │ ├── brown_loader_4.imageset │ │ │ ├── Contents.json │ │ │ ├── brown_loader_4.png │ │ │ └── brown_loader_4@2x.png │ │ ├── brown_loader_5.imageset │ │ │ ├── Contents.json │ │ │ ├── brown_loader_5.png │ │ │ └── brown_loader_5@2x.png │ │ ├── brown_loader_6.imageset │ │ │ ├── Contents.json │ │ │ ├── brown_loader_6.png │ │ │ └── brown_loader_6@2x.png │ │ ├── brown_loader_7.imageset │ │ │ ├── Contents.json │ │ │ ├── brown_loader_7.png │ │ │ └── brown_loader_7@2x.png │ │ ├── brown_loader_8.imageset │ │ │ ├── Contents.json │ │ │ ├── brown_loader_8.png │ │ │ └── brown_loader_8@2x.png │ │ ├── brown_loader_9.imageset │ │ │ ├── Contents.json │ │ │ ├── brown_loader_9.png │ │ │ └── brown_loader_9@2x.png │ │ ├── gray_loader_0.imageset │ │ │ ├── Contents.json │ │ │ ├── gray_loader_0.png │ │ │ └── gray_loader_0@2x.png │ │ ├── gray_loader_1.imageset │ │ │ ├── Contents.json │ │ │ ├── gray_loader_1.png │ │ │ └── gray_loader_1@2x.png │ │ ├── gray_loader_10.imageset │ │ │ ├── Contents.json │ │ │ ├── gray_loader_10.png │ │ │ └── gray_loader_10@2x.png │ │ ├── gray_loader_11.imageset │ │ │ ├── Contents.json │ │ │ ├── gray_loader_11.png │ │ │ └── gray_loader_11@2x.png │ │ ├── gray_loader_2.imageset │ │ │ ├── Contents.json │ │ │ ├── gray_loader_2.png │ │ │ └── gray_loader_2@2x.png │ │ ├── gray_loader_3.imageset │ │ │ ├── Contents.json │ │ │ ├── gray_loader_3.png │ │ │ └── gray_loader_3@2x.png │ │ ├── gray_loader_4.imageset │ │ │ ├── Contents.json │ │ │ ├── gray_loader_4.png │ │ │ └── gray_loader_4@2x.png │ │ ├── gray_loader_5.imageset │ │ │ ├── Contents.json │ │ │ ├── gray_loader_5.png │ │ │ └── gray_loader_5@2x.png │ │ ├── gray_loader_6.imageset │ │ │ ├── Contents.json │ │ │ ├── gray_loader_6.png │ │ │ └── gray_loader_6@2x.png │ │ ├── gray_loader_7.imageset │ │ │ ├── Contents.json │ │ │ ├── gray_loader_7.png │ │ │ └── gray_loader_7@2x.png │ │ ├── gray_loader_8.imageset │ │ │ ├── Contents.json │ │ │ ├── gray_loader_8.png │ │ │ └── gray_loader_8@2x.png │ │ ├── gray_loader_9.imageset │ │ │ ├── Contents.json │ │ │ ├── gray_loader_9.png │ │ │ └── gray_loader_9@2x.png │ │ ├── p_loader_0.imageset │ │ │ ├── Contents.json │ │ │ ├── p_loader_0.png │ │ │ └── p_loader_0@2x.png │ │ ├── p_loader_1.imageset │ │ │ ├── Contents.json │ │ │ ├── p_loader_1.png │ │ │ └── p_loader_1@2x.png │ │ ├── p_loader_10.imageset │ │ │ ├── Contents.json │ │ │ ├── p_loader_10.png │ │ │ └── p_loader_10@2x.png │ │ ├── p_loader_11.imageset │ │ │ ├── Contents.json │ │ │ ├── p_loader_11.png │ │ │ └── p_loader_11@2x.png │ │ ├── p_loader_2.imageset │ │ │ ├── Contents.json │ │ │ ├── p_loader_2.png │ │ │ └── p_loader_2@2x.png │ │ ├── p_loader_3.imageset │ │ │ ├── Contents.json │ │ │ ├── p_loader_3.png │ │ │ └── p_loader_3@2x.png │ │ ├── p_loader_4.imageset │ │ │ ├── Contents.json │ │ │ ├── p_loader_4.png │ │ │ └── p_loader_4@2x.png │ │ ├── p_loader_5.imageset │ │ │ ├── Contents.json │ │ │ ├── p_loader_5.png │ │ │ └── p_loader_5@2x.png │ │ ├── p_loader_6.imageset │ │ │ ├── Contents.json │ │ │ ├── p_loader_6.png │ │ │ └── p_loader_6@2x.png │ │ ├── p_loader_7.imageset │ │ │ ├── Contents.json │ │ │ ├── p_loader_7.png │ │ │ └── p_loader_7@2x.png │ │ ├── p_loader_8.imageset │ │ │ ├── Contents.json │ │ │ ├── p_loader_8.png │ │ │ └── p_loader_8@2x.png │ │ └── p_loader_9.imageset │ │ │ ├── Contents.json │ │ │ ├── p_loader_9.png │ │ │ └── p_loader_9@2x.png │ ├── terms_icon.imageset │ │ ├── Contents.json │ │ ├── terms_icon.png │ │ └── terms_icon@2x.png │ ├── tumblr_icon.imageset │ │ ├── Contents.json │ │ ├── tumblr_icon.png │ │ └── tumblr_icon@2x.png │ ├── twitter_icon.imageset │ │ ├── Contents.json │ │ ├── twitter_icon.png │ │ └── twitter_icon@2x.png │ ├── url_icon.imageset │ │ ├── Contents.json │ │ ├── url_icon.png │ │ └── url_icon@2x.png │ ├── user.imageset │ │ ├── Contents.json │ │ ├── user.png │ │ └── user@2x.png │ ├── username_icon.imageset │ │ ├── Contents.json │ │ ├── username_icon.png │ │ └── username_icon@2x.png │ ├── vimeo.imageset │ │ ├── Contents.json │ │ ├── vimeo.png │ │ └── vimeo@2x.png │ ├── white_arrow_left.imageset │ │ ├── Contents.json │ │ ├── white_arrow_left.png │ │ └── white_arrow_left@2x.png │ ├── white_arrow_right.imageset │ │ ├── Contents.json │ │ ├── white_arrow_right.png │ │ └── white_arrow_right@2x.png │ └── youtube.imageset │ │ ├── Contents.json │ │ ├── youtube.png │ │ └── youtube@2x.png ├── IntroViewController.h ├── IntroViewController.m ├── JoinViewController.h ├── JoinViewController.m ├── Layout.h ├── Layout.m ├── LayoutManager.h ├── LayoutManager.m ├── LoaderCell.h ├── LoaderCell.m ├── Localizable.strings ├── LoginViewController.h ├── LoginViewController.m ├── Love.h ├── Love.m ├── MKAnnotationView+WebCache.h ├── MKAnnotationView+WebCache.m ├── MediaContentView.h ├── MediaContentView.m ├── MediaView.h ├── MediaView.m ├── MenuCell.h ├── MenuCell.m ├── ModalAlert.h ├── ModalAlert.m ├── MoreViewController.h ├── MoreViewController.m ├── NSData+ImageContentType.h ├── NSData+ImageContentType.m ├── NSDate+PSFoundation.h ├── NSDate+PSFoundation.m ├── NSNumber+Hex.h ├── NSNumber+Hex.m ├── NSObject+Initializers.h ├── NSObject+Initializers.m ├── NavBarView.h ├── NavBarView.m ├── NavButton.h ├── NavButton.m ├── NotificationSettingsView.h ├── NotificationSettingsView.m ├── NotificationView.h ├── NotificationView.m ├── PSNavController.h ├── PSNavController.m ├── PSViewController.h ├── PSViewController.m ├── PageControlView.h ├── PageControlView.m ├── PageDotView.h ├── PageDotView.m ├── PasswordView.h ├── PasswordView.m ├── PasswordViewController.h ├── PasswordViewController.m ├── PeggButton.h ├── PeggButton.m ├── PeggLabel.h ├── PeggLabel.m ├── PeggStory.storyboard ├── PeggTextField.h ├── PeggTextField.m ├── PeggTextView.h ├── PeggTextView.m ├── PhotoContentView.h ├── PhotoContentView.m ├── PhotoView.h ├── PhotoView.m ├── PhotoViewCell.h ├── PhotoViewCell.m ├── PrivacyViewController.h ├── PrivacyViewController.m ├── ProfileDetailView.h ├── ProfileDetailView.m ├── ProfileViewController.h ├── ProfileViewController.m ├── ProximaNova-Bold.otf ├── ProximaNova-Extrabld.otf ├── ProximaNova-Regular.otf ├── ProximaNova-Semibold.otf ├── ProximaNova-SemiboldIt.otf ├── PushNotificationsViewController.h ├── PushNotificationsViewController.m ├── Region.h ├── Region.m ├── ReportActivity.h ├── ReportActivity.m ├── Request.h ├── Request.m ├── RequestCell.h ├── RequestCell.m ├── RequestOperation.h ├── RequestOperation.m ├── RequestQueueManager.h ├── RequestQueueManager.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 ├── SearchViewController.h ├── SearchViewController.m ├── ShadeView.h ├── ShadeView.m ├── ShareFriendCell.h ├── ShareFriendCell.m ├── ShareManager.h ├── ShareManager.m ├── ShareSettingsViewController.h ├── ShareSettingsViewController.m ├── ShareView.h ├── ShareView.m ├── SocialButtonView.h ├── SocialButtonView.m ├── SpinnerView.h ├── SpinnerView.m ├── StackedView.h ├── StackedView.m ├── Strings.h ├── TabBarView.h ├── TabBarView.m ├── TermsViewController.h ├── TermsViewController.m ├── TitleView.h ├── TitleView.m ├── TwitterUser.h ├── TwitterUser.m ├── TwitterViewController.h ├── TwitterViewController.m ├── UIButton+WebCache.h ├── UIButton+WebCache.m ├── UIColor+Hex.h ├── UIColor+Hex.m ├── UIImage+GIF.h ├── UIImage+GIF.m ├── UIImage+MultiFormat.h ├── UIImage+MultiFormat.m ├── UIImage+Resize.h ├── UIImage+Resize.m ├── UIImage+WebP.h ├── UIImage+WebP.m ├── UIImageView+WebCache.h ├── UIImageView+WebCache.m ├── UIView+KeyboardHelpers.h ├── UIView+KeyboardHelpers.m ├── UIView+Positioning.h ├── UIView+Positioning.m ├── UIView-ViewFrameGeometry.h ├── UIView-ViewFrameGeometry.m ├── UnderlineLabel.h ├── UnderlineLabel.m ├── User.h ├── User.m ├── UserCell.h ├── UserCell.m ├── Utils.h ├── Utils.m ├── WhiteBoxView.h ├── WhiteBoxView.m ├── buildnumber.xcconfig ├── dummy data │ ├── dummy_response_0.txt │ ├── dummy_response_22.txt │ ├── dummy_response_25.txt │ ├── dummy_response_4.txt │ └── dummy_response_6.txt ├── en.lproj │ └── InfoPlist.strings ├── main.m ├── menu.plist └── text.plist ├── GenericSocialAppTests ├── GenericSocialAppTests-Info.plist ├── PeggSiteTests.m └── en.lproj │ └── InfoPlist.strings └── README.md /Airship/Common/JS/UANativeBridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/Common/JS/UANativeBridge.h -------------------------------------------------------------------------------- /Airship/Common/LandingPages/UALandingPageAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/Common/LandingPages/UALandingPageAction.h -------------------------------------------------------------------------------- /Airship/Common/NSJSONSerialization+UAAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/Common/NSJSONSerialization+UAAdditions.h -------------------------------------------------------------------------------- /Airship/Common/NSString+URLEncoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/Common/NSString+URLEncoding.h -------------------------------------------------------------------------------- /Airship/Common/UAAction+Operators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/Common/UAAction+Operators.h -------------------------------------------------------------------------------- /Airship/Common/UAAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/Common/UAAction.h -------------------------------------------------------------------------------- /Airship/Common/UAActionArguments.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/Common/UAActionArguments.h -------------------------------------------------------------------------------- /Airship/Common/UAActionJSDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/Common/UAActionJSDelegate.h -------------------------------------------------------------------------------- /Airship/Common/UAActionRegistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/Common/UAActionRegistry.h -------------------------------------------------------------------------------- /Airship/Common/UAActionRegistryEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/Common/UAActionRegistryEntry.h -------------------------------------------------------------------------------- /Airship/Common/UAActionResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/Common/UAActionResult.h -------------------------------------------------------------------------------- /Airship/Common/UAActionRunner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/Common/UAActionRunner.h -------------------------------------------------------------------------------- /Airship/Common/UAAddTagsAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/Common/UAAddTagsAction.h -------------------------------------------------------------------------------- /Airship/Common/UAAggregateActionResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/Common/UAAggregateActionResult.h -------------------------------------------------------------------------------- /Airship/Common/UAAnalytics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/Common/UAAnalytics.h -------------------------------------------------------------------------------- /Airship/Common/UAAnalyticsDBManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/Common/UAAnalyticsDBManager.h -------------------------------------------------------------------------------- /Airship/Common/UAAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/Common/UAAppDelegate.h -------------------------------------------------------------------------------- /Airship/Common/UAAppDelegateProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/Common/UAAppDelegateProxy.h -------------------------------------------------------------------------------- /Airship/Common/UAApplicationMetrics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/Common/UAApplicationMetrics.h -------------------------------------------------------------------------------- /Airship/Common/UABaseLocationProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/Common/UABaseLocationProvider.h -------------------------------------------------------------------------------- /Airship/Common/UABespokeCloseView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/Common/UABespokeCloseView.h -------------------------------------------------------------------------------- /Airship/Common/UABeveledLoadingIndicator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/Common/UABeveledLoadingIndicator.h -------------------------------------------------------------------------------- /Airship/Common/UACloseWindowAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/Common/UACloseWindowAction.h -------------------------------------------------------------------------------- /Airship/Common/UAConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/Common/UAConfig.h -------------------------------------------------------------------------------- /Airship/Common/UADelayOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/Common/UADelayOperation.h -------------------------------------------------------------------------------- /Airship/Common/UADisposable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/Common/UADisposable.h -------------------------------------------------------------------------------- /Airship/Common/UAEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/Common/UAEvent.h -------------------------------------------------------------------------------- /Airship/Common/UAGlobal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/Common/UAGlobal.h -------------------------------------------------------------------------------- /Airship/Common/UAHTTPConnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/Common/UAHTTPConnection.h -------------------------------------------------------------------------------- /Airship/Common/UAHTTPConnectionOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/Common/UAHTTPConnectionOperation.h -------------------------------------------------------------------------------- /Airship/Common/UAHTTPRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/Common/UAHTTPRequest.h -------------------------------------------------------------------------------- /Airship/Common/UAHTTPRequestEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/Common/UAHTTPRequestEngine.h -------------------------------------------------------------------------------- /Airship/Common/UAIncomingPushAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/Common/UAIncomingPushAction.h -------------------------------------------------------------------------------- /Airship/Common/UAIncomingRichPushAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/Common/UAIncomingRichPushAction.h -------------------------------------------------------------------------------- /Airship/Common/UAJavaScriptDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/Common/UAJavaScriptDelegate.h -------------------------------------------------------------------------------- /Airship/Common/UAKeychainUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/Common/UAKeychainUtils.h -------------------------------------------------------------------------------- /Airship/Common/UALandingPageOverlayController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/Common/UALandingPageOverlayController.h -------------------------------------------------------------------------------- /Airship/Common/UALocationCommonValues.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/Common/UALocationCommonValues.h -------------------------------------------------------------------------------- /Airship/Common/UALocationEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/Common/UALocationEvent.h -------------------------------------------------------------------------------- /Airship/Common/UALocationProviderDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/Common/UALocationProviderDelegate.h -------------------------------------------------------------------------------- /Airship/Common/UALocationProviderProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/Common/UALocationProviderProtocol.h -------------------------------------------------------------------------------- /Airship/Common/UALocationService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/Common/UALocationService.h -------------------------------------------------------------------------------- /Airship/Common/UAModifyTagsAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/Common/UAModifyTagsAction.h -------------------------------------------------------------------------------- /Airship/Common/UAObservable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/Common/UAObservable.h -------------------------------------------------------------------------------- /Airship/Common/UAOpenExternalURLAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/Common/UAOpenExternalURLAction.h -------------------------------------------------------------------------------- /Airship/Common/UAPushActionArguments.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/Common/UAPushActionArguments.h -------------------------------------------------------------------------------- /Airship/Common/UARemoveTagsAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/Common/UARemoveTagsAction.h -------------------------------------------------------------------------------- /Airship/Common/UARichContentWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/Common/UARichContentWindow.h -------------------------------------------------------------------------------- /Airship/Common/UASQLite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/Common/UASQLite.h -------------------------------------------------------------------------------- /Airship/Common/UASignificantChangeProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/Common/UASignificantChangeProvider.h -------------------------------------------------------------------------------- /Airship/Common/UAStandardLocationProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/Common/UAStandardLocationProvider.h -------------------------------------------------------------------------------- /Airship/Common/UASyncAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/Common/UASyncAction.h -------------------------------------------------------------------------------- /Airship/Common/UATagUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/Common/UATagUtils.h -------------------------------------------------------------------------------- /Airship/Common/UAURLProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/Common/UAURLProtocol.h -------------------------------------------------------------------------------- /Airship/Common/UAUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/Common/UAUser.h -------------------------------------------------------------------------------- /Airship/Common/UAUserAPIClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/Common/UAUserAPIClient.h -------------------------------------------------------------------------------- /Airship/Common/UAUserData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/Common/UAUserData.h -------------------------------------------------------------------------------- /Airship/Common/UAUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/Common/UAUtils.h -------------------------------------------------------------------------------- /Airship/Common/UAWebInvocationActionArguments.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/Common/UAWebInvocationActionArguments.h -------------------------------------------------------------------------------- /Airship/Common/UAWebViewCallData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/Common/UAWebViewCallData.h -------------------------------------------------------------------------------- /Airship/Common/UAWebViewTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/Common/UAWebViewTools.h -------------------------------------------------------------------------------- /Airship/Common/UAirship.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/Common/UAirship.h -------------------------------------------------------------------------------- /Airship/Common/UIWebView+UAAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/Common/UIWebView+UAAdditions.h -------------------------------------------------------------------------------- /Airship/External/UA_Base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/External/UA_Base64.h -------------------------------------------------------------------------------- /Airship/External/UA_Reachability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/External/UA_Reachability.h -------------------------------------------------------------------------------- /Airship/Inbox/UAInbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/Inbox/UAInbox.h -------------------------------------------------------------------------------- /Airship/Inbox/UAInboxAPIClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/Inbox/UAInboxAPIClient.h -------------------------------------------------------------------------------- /Airship/Inbox/UAInboxDBManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/Inbox/UAInboxDBManager.h -------------------------------------------------------------------------------- /Airship/Inbox/UAInboxDefaultJSDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/Inbox/UAInboxDefaultJSDelegate.h -------------------------------------------------------------------------------- /Airship/Inbox/UAInboxMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/Inbox/UAInboxMessage.h -------------------------------------------------------------------------------- /Airship/Inbox/UAInboxMessageList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/Inbox/UAInboxMessageList.h -------------------------------------------------------------------------------- /Airship/Inbox/UAInboxMessageListDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/Inbox/UAInboxMessageListDelegate.h -------------------------------------------------------------------------------- /Airship/Inbox/UAInboxMessageListObserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/Inbox/UAInboxMessageListObserver.h -------------------------------------------------------------------------------- /Airship/Inbox/UAInboxPushHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/Inbox/UAInboxPushHandler.h -------------------------------------------------------------------------------- /Airship/Inbox/UAInboxUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/Inbox/UAInboxUtils.h -------------------------------------------------------------------------------- /Airship/Inbox/UAJSONValueTransformer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/Inbox/UAJSONValueTransformer.h -------------------------------------------------------------------------------- /Airship/Push/UAChannelAPIClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/Push/UAChannelAPIClient.h -------------------------------------------------------------------------------- /Airship/Push/UAChannelRegistrationPayload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/Push/UAChannelRegistrationPayload.h -------------------------------------------------------------------------------- /Airship/Push/UADeviceAPIClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/Push/UADeviceAPIClient.h -------------------------------------------------------------------------------- /Airship/Push/UADeviceRegistrar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/Push/UADeviceRegistrar.h -------------------------------------------------------------------------------- /Airship/Push/UADeviceRegistrationPayload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/Push/UADeviceRegistrationPayload.h -------------------------------------------------------------------------------- /Airship/Push/UAPush.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/Push/UAPush.h -------------------------------------------------------------------------------- /Airship/UI/Default/Inbox/Classes/Shared/UADateUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/UI/Default/Inbox/Classes/Shared/UADateUtils.h -------------------------------------------------------------------------------- /Airship/UI/Default/Inbox/Classes/Shared/UADateUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/UI/Default/Inbox/Classes/Shared/UADateUtils.m -------------------------------------------------------------------------------- /Airship/UI/Default/Inbox/Classes/Shared/UAInboxAlertHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/UI/Default/Inbox/Classes/Shared/UAInboxAlertHandler.h -------------------------------------------------------------------------------- /Airship/UI/Default/Inbox/Classes/Shared/UAInboxAlertHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/UI/Default/Inbox/Classes/Shared/UAInboxAlertHandler.m -------------------------------------------------------------------------------- /Airship/UI/Default/Inbox/Classes/Shared/UAInboxMessageListCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/UI/Default/Inbox/Classes/Shared/UAInboxMessageListCell.h -------------------------------------------------------------------------------- /Airship/UI/Default/Inbox/Classes/Shared/UAInboxMessageListCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/UI/Default/Inbox/Classes/Shared/UAInboxMessageListCell.m -------------------------------------------------------------------------------- /Airship/UI/Default/Inbox/Classes/Shared/UAInboxMessageListController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/UI/Default/Inbox/Classes/Shared/UAInboxMessageListController.h -------------------------------------------------------------------------------- /Airship/UI/Default/Inbox/Classes/Shared/UAInboxMessageListController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/UI/Default/Inbox/Classes/Shared/UAInboxMessageListController.m -------------------------------------------------------------------------------- /Airship/UI/Default/Inbox/Classes/Shared/UAInboxMessageViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/UI/Default/Inbox/Classes/Shared/UAInboxMessageViewController.h -------------------------------------------------------------------------------- /Airship/UI/Default/Inbox/Classes/Shared/UAInboxMessageViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/UI/Default/Inbox/Classes/Shared/UAInboxMessageViewController.m -------------------------------------------------------------------------------- /Airship/UI/Default/Inbox/Classes/Shared/UAInboxNavUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/UI/Default/Inbox/Classes/Shared/UAInboxNavUI.h -------------------------------------------------------------------------------- /Airship/UI/Default/Inbox/Classes/Shared/UAInboxNavUI.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/UI/Default/Inbox/Classes/Shared/UAInboxNavUI.m -------------------------------------------------------------------------------- /Airship/UI/Default/Inbox/Classes/Shared/UAInboxUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/UI/Default/Inbox/Classes/Shared/UAInboxUI.h -------------------------------------------------------------------------------- /Airship/UI/Default/Inbox/Classes/Shared/UAInboxUI.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/UI/Default/Inbox/Classes/Shared/UAInboxUI.m -------------------------------------------------------------------------------- /Airship/UI/Default/Inbox/Resources/Shared/UAInboxMessageListCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/UI/Default/Inbox/Resources/Shared/UAInboxMessageListCell.xib -------------------------------------------------------------------------------- /Airship/UI/Default/Inbox/Resources/Shared/UAInboxMessageListController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/UI/Default/Inbox/Resources/Shared/UAInboxMessageListController.xib -------------------------------------------------------------------------------- /Airship/UI/Default/Inbox/Resources/Shared/UAInboxMessageViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/UI/Default/Inbox/Resources/Shared/UAInboxMessageViewController.xib -------------------------------------------------------------------------------- /Airship/UI/Default/Inbox/Resources/Shared/list-image-placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/UI/Default/Inbox/Resources/Shared/list-image-placeholder.png -------------------------------------------------------------------------------- /Airship/UI/Default/Inbox/Resources/Shared/list-image-placeholder@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/UI/Default/Inbox/Resources/Shared/list-image-placeholder@2x.png -------------------------------------------------------------------------------- /Airship/UI/Default/Push/Classes/Shared/UALocationDemoAnnotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/UI/Default/Push/Classes/Shared/UALocationDemoAnnotation.h -------------------------------------------------------------------------------- /Airship/UI/Default/Push/Classes/Shared/UALocationDemoAnnotation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/UI/Default/Push/Classes/Shared/UALocationDemoAnnotation.m -------------------------------------------------------------------------------- /Airship/UI/Default/Push/Classes/Shared/UALocationSettingsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/UI/Default/Push/Classes/Shared/UALocationSettingsViewController.h -------------------------------------------------------------------------------- /Airship/UI/Default/Push/Classes/Shared/UALocationSettingsViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/UI/Default/Push/Classes/Shared/UALocationSettingsViewController.m -------------------------------------------------------------------------------- /Airship/UI/Default/Push/Classes/Shared/UAMapPresentationController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/UI/Default/Push/Classes/Shared/UAMapPresentationController.h -------------------------------------------------------------------------------- /Airship/UI/Default/Push/Classes/Shared/UAMapPresentationController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/UI/Default/Push/Classes/Shared/UAMapPresentationController.m -------------------------------------------------------------------------------- /Airship/UI/Default/Push/Classes/Shared/UAPushMoreSettingsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/UI/Default/Push/Classes/Shared/UAPushMoreSettingsViewController.h -------------------------------------------------------------------------------- /Airship/UI/Default/Push/Classes/Shared/UAPushMoreSettingsViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/UI/Default/Push/Classes/Shared/UAPushMoreSettingsViewController.m -------------------------------------------------------------------------------- /Airship/UI/Default/Push/Classes/Shared/UAPushNotificationHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/UI/Default/Push/Classes/Shared/UAPushNotificationHandler.h -------------------------------------------------------------------------------- /Airship/UI/Default/Push/Classes/Shared/UAPushNotificationHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/UI/Default/Push/Classes/Shared/UAPushNotificationHandler.m -------------------------------------------------------------------------------- /Airship/UI/Default/Push/Classes/Shared/UAPushSettingsAliasViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/UI/Default/Push/Classes/Shared/UAPushSettingsAliasViewController.h -------------------------------------------------------------------------------- /Airship/UI/Default/Push/Classes/Shared/UAPushSettingsAliasViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/UI/Default/Push/Classes/Shared/UAPushSettingsAliasViewController.m -------------------------------------------------------------------------------- /Airship/UI/Default/Push/Classes/Shared/UAPushSettingsTagsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/UI/Default/Push/Classes/Shared/UAPushSettingsTagsViewController.h -------------------------------------------------------------------------------- /Airship/UI/Default/Push/Classes/Shared/UAPushSettingsTagsViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/UI/Default/Push/Classes/Shared/UAPushSettingsTagsViewController.m -------------------------------------------------------------------------------- /Airship/UI/Default/Push/Classes/Shared/UAPushSettingsTokenViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/UI/Default/Push/Classes/Shared/UAPushSettingsTokenViewController.h -------------------------------------------------------------------------------- /Airship/UI/Default/Push/Classes/Shared/UAPushSettingsTokenViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/UI/Default/Push/Classes/Shared/UAPushSettingsTokenViewController.m -------------------------------------------------------------------------------- /Airship/UI/Default/Push/Classes/Shared/UAPushSettingsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/UI/Default/Push/Classes/Shared/UAPushSettingsViewController.h -------------------------------------------------------------------------------- /Airship/UI/Default/Push/Classes/Shared/UAPushSettingsViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/UI/Default/Push/Classes/Shared/UAPushSettingsViewController.m -------------------------------------------------------------------------------- /Airship/UI/Default/Push/Classes/Shared/UAPushUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/UI/Default/Push/Classes/Shared/UAPushUI.h -------------------------------------------------------------------------------- /Airship/UI/Default/Push/Classes/Shared/UAPushUI.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/UI/Default/Push/Classes/Shared/UAPushUI.m -------------------------------------------------------------------------------- /Airship/UI/Default/Push/Resources/Shared/UAPushMoreSettingsView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/UI/Default/Push/Resources/Shared/UAPushMoreSettingsView.xib -------------------------------------------------------------------------------- /Airship/UI/Default/Push/Resources/Shared/UAPushSettingsAliasView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/UI/Default/Push/Resources/Shared/UAPushSettingsAliasView.xib -------------------------------------------------------------------------------- /Airship/UI/Default/Push/Resources/Shared/UAPushSettingsTokenView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/UI/Default/Push/Resources/Shared/UAPushSettingsTokenView.xib -------------------------------------------------------------------------------- /Airship/UI/Default/Push/Resources/Shared/UAPushSettingsUserInfoView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/UI/Default/Push/Resources/Shared/UAPushSettingsUserInfoView.xib -------------------------------------------------------------------------------- /Airship/UI/Default/Push/Resources/Shared/UAPushSettingsView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/UI/Default/Push/Resources/Shared/UAPushSettingsView.xib -------------------------------------------------------------------------------- /Airship/UI/Default/Push/Resources/Shared/bottom-detail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/UI/Default/Push/Resources/Shared/bottom-detail.png -------------------------------------------------------------------------------- /Airship/UI/Default/Push/Resources/Shared/bottom-detail@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/UI/Default/Push/Resources/Shared/bottom-detail@2x.png -------------------------------------------------------------------------------- /Airship/UI/Default/Push/Resources/Shared/middle-detail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/UI/Default/Push/Resources/Shared/middle-detail.png -------------------------------------------------------------------------------- /Airship/UI/Default/Push/Resources/Shared/middle-detail@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/UI/Default/Push/Resources/Shared/middle-detail@2x.png -------------------------------------------------------------------------------- /Airship/UI/Default/Push/Resources/Shared/top-detail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/UI/Default/Push/Resources/Shared/top-detail.png -------------------------------------------------------------------------------- /Airship/UI/Default/Push/Resources/Shared/top-detail@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/UI/Default/Push/Resources/Shared/top-detail@2x.png -------------------------------------------------------------------------------- /Airship/libUAirship-4.0.0.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/libUAirship-4.0.0.a -------------------------------------------------------------------------------- /Airship/libUAirship-iOS5-4.0.0.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/Airship/libUAirship-iOS5-4.0.0.a -------------------------------------------------------------------------------- /GenericSocialApp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /GenericSocialApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /GenericSocialApp.xcodeproj/xcshareddata/xcschemes/Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp.xcodeproj/xcshareddata/xcschemes/Debug.xcscheme -------------------------------------------------------------------------------- /GenericSocialApp.xcodeproj/xcshareddata/xcschemes/Dev Ad Hoc.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp.xcodeproj/xcshareddata/xcschemes/Dev Ad Hoc.xcscheme -------------------------------------------------------------------------------- /GenericSocialApp.xcodeproj/xcshareddata/xcschemes/Dummy Data.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp.xcodeproj/xcshareddata/xcschemes/Dummy Data.xcscheme -------------------------------------------------------------------------------- /GenericSocialApp.xcodeproj/xcshareddata/xcschemes/PeggSite.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp.xcodeproj/xcshareddata/xcschemes/PeggSite.xcscheme -------------------------------------------------------------------------------- /GenericSocialApp.xcodeproj/xcshareddata/xcschemes/Prod Ad Hoc.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp.xcodeproj/xcshareddata/xcschemes/Prod Ad Hoc.xcscheme -------------------------------------------------------------------------------- /GenericSocialApp/AboutViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/AboutViewController.h -------------------------------------------------------------------------------- /GenericSocialApp/AboutViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/AboutViewController.m -------------------------------------------------------------------------------- /GenericSocialApp/AccountView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/AccountView.h -------------------------------------------------------------------------------- /GenericSocialApp/AccountView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/AccountView.m -------------------------------------------------------------------------------- /GenericSocialApp/Activity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Activity.h -------------------------------------------------------------------------------- /GenericSocialApp/Activity.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Activity.m -------------------------------------------------------------------------------- /GenericSocialApp/ActivityAlert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/ActivityAlert.h -------------------------------------------------------------------------------- /GenericSocialApp/ActivityAlert.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/ActivityAlert.m -------------------------------------------------------------------------------- /GenericSocialApp/ActivityCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/ActivityCell.h -------------------------------------------------------------------------------- /GenericSocialApp/ActivityCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/ActivityCell.m -------------------------------------------------------------------------------- /GenericSocialApp/ActivityViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/ActivityViewController.h -------------------------------------------------------------------------------- /GenericSocialApp/ActivityViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/ActivityViewController.m -------------------------------------------------------------------------------- /GenericSocialApp/AddContentBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/AddContentBox.h -------------------------------------------------------------------------------- /GenericSocialApp/AddContentBox.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/AddContentBox.m -------------------------------------------------------------------------------- /GenericSocialApp/AddPhotoViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/AddPhotoViewController.h -------------------------------------------------------------------------------- /GenericSocialApp/AddPhotoViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/AddPhotoViewController.m -------------------------------------------------------------------------------- /GenericSocialApp/AddTextView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/AddTextView.h -------------------------------------------------------------------------------- /GenericSocialApp/AddTextView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/AddTextView.m -------------------------------------------------------------------------------- /GenericSocialApp/AddViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/AddViewController.h -------------------------------------------------------------------------------- /GenericSocialApp/AddViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/AddViewController.m -------------------------------------------------------------------------------- /GenericSocialApp/AirshipConfig.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/AirshipConfig.plist -------------------------------------------------------------------------------- /GenericSocialApp/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/AppDelegate.h -------------------------------------------------------------------------------- /GenericSocialApp/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/AppDelegate.m -------------------------------------------------------------------------------- /GenericSocialApp/Article.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Article.h -------------------------------------------------------------------------------- /GenericSocialApp/Article.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Article.m -------------------------------------------------------------------------------- /GenericSocialApp/ArticleContentView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/ArticleContentView.h -------------------------------------------------------------------------------- /GenericSocialApp/ArticleContentView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/ArticleContentView.m -------------------------------------------------------------------------------- /GenericSocialApp/ArticleView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/ArticleView.h -------------------------------------------------------------------------------- /GenericSocialApp/ArticleView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/ArticleView.m -------------------------------------------------------------------------------- /GenericSocialApp/ArticleViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/ArticleViewController.h -------------------------------------------------------------------------------- /GenericSocialApp/ArticleViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/ArticleViewController.m -------------------------------------------------------------------------------- /GenericSocialApp/AssetManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/AssetManager.h -------------------------------------------------------------------------------- /GenericSocialApp/AssetManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/AssetManager.m -------------------------------------------------------------------------------- /GenericSocialApp/AvatarView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/AvatarView.h -------------------------------------------------------------------------------- /GenericSocialApp/AvatarView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/AvatarView.m -------------------------------------------------------------------------------- /GenericSocialApp/BoardScrollView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/BoardScrollView.h -------------------------------------------------------------------------------- /GenericSocialApp/BoardScrollView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/BoardScrollView.m -------------------------------------------------------------------------------- /GenericSocialApp/BoardViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/BoardViewController.h -------------------------------------------------------------------------------- /GenericSocialApp/BoardViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/BoardViewController.m -------------------------------------------------------------------------------- /GenericSocialApp/CollectionLoaderCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/CollectionLoaderCell.h -------------------------------------------------------------------------------- /GenericSocialApp/CollectionLoaderCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/CollectionLoaderCell.m -------------------------------------------------------------------------------- /GenericSocialApp/ColorButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/ColorButton.h -------------------------------------------------------------------------------- /GenericSocialApp/ColorButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/ColorButton.m -------------------------------------------------------------------------------- /GenericSocialApp/Comment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Comment.h -------------------------------------------------------------------------------- /GenericSocialApp/Comment.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Comment.m -------------------------------------------------------------------------------- /GenericSocialApp/CommentCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/CommentCell.h -------------------------------------------------------------------------------- /GenericSocialApp/CommentCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/CommentCell.m -------------------------------------------------------------------------------- /GenericSocialApp/CommentsView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/CommentsView.h -------------------------------------------------------------------------------- /GenericSocialApp/CommentsView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/CommentsView.m -------------------------------------------------------------------------------- /GenericSocialApp/Constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Constants.h -------------------------------------------------------------------------------- /GenericSocialApp/ContactsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/ContactsViewController.h -------------------------------------------------------------------------------- /GenericSocialApp/ContactsViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/ContactsViewController.m -------------------------------------------------------------------------------- /GenericSocialApp/ContentBackgroundView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/ContentBackgroundView.h -------------------------------------------------------------------------------- /GenericSocialApp/ContentBackgroundView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/ContentBackgroundView.m -------------------------------------------------------------------------------- /GenericSocialApp/CropControlsView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/CropControlsView.h -------------------------------------------------------------------------------- /GenericSocialApp/CropControlsView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/CropControlsView.m -------------------------------------------------------------------------------- /GenericSocialApp/CropScrollView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/CropScrollView.h -------------------------------------------------------------------------------- /GenericSocialApp/CropScrollView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/CropScrollView.m -------------------------------------------------------------------------------- /GenericSocialApp/CropView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/CropView.h -------------------------------------------------------------------------------- /GenericSocialApp/CropView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/CropView.m -------------------------------------------------------------------------------- /GenericSocialApp/CustomActivityContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/CustomActivityContainer.h -------------------------------------------------------------------------------- /GenericSocialApp/CustomActivityContainer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/CustomActivityContainer.m -------------------------------------------------------------------------------- /GenericSocialApp/DataManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/DataManager.h -------------------------------------------------------------------------------- /GenericSocialApp/DataManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/DataManager.m -------------------------------------------------------------------------------- /GenericSocialApp/Divider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Divider.h -------------------------------------------------------------------------------- /GenericSocialApp/Divider.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Divider.m -------------------------------------------------------------------------------- /GenericSocialApp/DrawingHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/DrawingHelper.h -------------------------------------------------------------------------------- /GenericSocialApp/DrawingHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/DrawingHelper.m -------------------------------------------------------------------------------- /GenericSocialApp/ETAssert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/ETAssert.h -------------------------------------------------------------------------------- /GenericSocialApp/ETDebugLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/ETDebugLog.h -------------------------------------------------------------------------------- /GenericSocialApp/ETDictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/ETDictionary.h -------------------------------------------------------------------------------- /GenericSocialApp/ETDictionary.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/ETDictionary.m -------------------------------------------------------------------------------- /GenericSocialApp/ETObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/ETObject.h -------------------------------------------------------------------------------- /GenericSocialApp/ETObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/ETObject.m -------------------------------------------------------------------------------- /GenericSocialApp/EditProfileViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/EditProfileViewController.h -------------------------------------------------------------------------------- /GenericSocialApp/EditProfileViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/EditProfileViewController.m -------------------------------------------------------------------------------- /GenericSocialApp/EmptyArticleView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/EmptyArticleView.h -------------------------------------------------------------------------------- /GenericSocialApp/EmptyArticleView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/EmptyArticleView.m -------------------------------------------------------------------------------- /GenericSocialApp/External_SDKs/FacebookSDK.framework/FacebookSDK: -------------------------------------------------------------------------------- 1 | ./Versions/A/FacebookSDK -------------------------------------------------------------------------------- /GenericSocialApp/External_SDKs/FacebookSDK.framework/Headers: -------------------------------------------------------------------------------- 1 | ./Versions/A/Headers -------------------------------------------------------------------------------- /GenericSocialApp/External_SDKs/FacebookSDK.framework/Resources: -------------------------------------------------------------------------------- 1 | ./Versions/A/Resources -------------------------------------------------------------------------------- /GenericSocialApp/External_SDKs/FacebookSDK.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | ./A -------------------------------------------------------------------------------- /GenericSocialApp/External_SDKs/HockeySDK.embeddedframework/HockeySDK.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /GenericSocialApp/External_SDKs/HockeySDK.embeddedframework/HockeySDK.framework/HockeySDK: -------------------------------------------------------------------------------- 1 | Versions/Current/HockeySDK -------------------------------------------------------------------------------- /GenericSocialApp/External_SDKs/HockeySDK.embeddedframework/HockeySDK.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /GenericSocialApp/External_SDKs/HockeySDK.embeddedframework/HockeySDK.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /GenericSocialApp/External_SDKs/HockeySDK.embeddedframework/Resources/HockeySDK.xcconfig: -------------------------------------------------------------------------------- 1 | ../HockeySDK.framework/Resources/HockeySDK.xcconfig -------------------------------------------------------------------------------- /GenericSocialApp/External_SDKs/HockeySDK.embeddedframework/Resources/HockeySDKResources.bundle: -------------------------------------------------------------------------------- 1 | ../HockeySDK.framework/Resources/HockeySDKResources.bundle -------------------------------------------------------------------------------- /GenericSocialApp/FacebookFriendViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/FacebookFriendViewController.h -------------------------------------------------------------------------------- /GenericSocialApp/FacebookFriendViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/FacebookFriendViewController.m -------------------------------------------------------------------------------- /GenericSocialApp/FacebookUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/FacebookUser.h -------------------------------------------------------------------------------- /GenericSocialApp/FacebookUser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/FacebookUser.m -------------------------------------------------------------------------------- /GenericSocialApp/FindFriendsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/FindFriendsViewController.h -------------------------------------------------------------------------------- /GenericSocialApp/FindFriendsViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/FindFriendsViewController.m -------------------------------------------------------------------------------- /GenericSocialApp/FollowButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/FollowButton.h -------------------------------------------------------------------------------- /GenericSocialApp/FollowButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/FollowButton.m -------------------------------------------------------------------------------- /GenericSocialApp/FollowButtonView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/FollowButtonView.h -------------------------------------------------------------------------------- /GenericSocialApp/FollowButtonView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/FollowButtonView.m -------------------------------------------------------------------------------- /GenericSocialApp/FollowCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/FollowCell.h -------------------------------------------------------------------------------- /GenericSocialApp/FollowCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/FollowCell.m -------------------------------------------------------------------------------- /GenericSocialApp/FollowSegmentView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/FollowSegmentView.h -------------------------------------------------------------------------------- /GenericSocialApp/FollowSegmentView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/FollowSegmentView.m -------------------------------------------------------------------------------- /GenericSocialApp/Follower.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Follower.h -------------------------------------------------------------------------------- /GenericSocialApp/Follower.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Follower.m -------------------------------------------------------------------------------- /GenericSocialApp/ForgotPasswordViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/ForgotPasswordViewController.h -------------------------------------------------------------------------------- /GenericSocialApp/ForgotPasswordViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/ForgotPasswordViewController.m -------------------------------------------------------------------------------- /GenericSocialApp/Friend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Friend.h -------------------------------------------------------------------------------- /GenericSocialApp/Friend.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Friend.m -------------------------------------------------------------------------------- /GenericSocialApp/FriendCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/FriendCell.h -------------------------------------------------------------------------------- /GenericSocialApp/FriendCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/FriendCell.m -------------------------------------------------------------------------------- /GenericSocialApp/FriendCollectionCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/FriendCollectionCell.h -------------------------------------------------------------------------------- /GenericSocialApp/FriendCollectionCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/FriendCollectionCell.m -------------------------------------------------------------------------------- /GenericSocialApp/FriendListCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/FriendListCell.h -------------------------------------------------------------------------------- /GenericSocialApp/FriendListCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/FriendListCell.m -------------------------------------------------------------------------------- /GenericSocialApp/FullScreenViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/FullScreenViewController.h -------------------------------------------------------------------------------- /GenericSocialApp/FullScreenViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/FullScreenViewController.m -------------------------------------------------------------------------------- /GenericSocialApp/GalleryThumbnailView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/GalleryThumbnailView.h -------------------------------------------------------------------------------- /GenericSocialApp/GalleryThumbnailView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/GalleryThumbnailView.m -------------------------------------------------------------------------------- /GenericSocialApp/GenericSocialApp-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/GenericSocialApp-Info.plist -------------------------------------------------------------------------------- /GenericSocialApp/GenericSocialApp-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/GenericSocialApp-Prefix.pch -------------------------------------------------------------------------------- /GenericSocialApp/GradientView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/GradientView.h -------------------------------------------------------------------------------- /GenericSocialApp/GradientView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/GradientView.m -------------------------------------------------------------------------------- /GenericSocialApp/HeaderView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/HeaderView.h -------------------------------------------------------------------------------- /GenericSocialApp/HeaderView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/HeaderView.m -------------------------------------------------------------------------------- /GenericSocialApp/HomeViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/HomeViewController.h -------------------------------------------------------------------------------- /GenericSocialApp/HomeViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/HomeViewController.m -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/AppIcon.appiconset/icon_114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/AppIcon.appiconset/icon_114.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/AppIcon.appiconset/icon_120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/AppIcon.appiconset/icon_120.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/AppIcon.appiconset/icon_29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/AppIcon.appiconset/icon_29.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/AppIcon.appiconset/icon_57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/AppIcon.appiconset/icon_57.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/AppIcon.appiconset/icon_58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/AppIcon.appiconset/icon_58.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/AppIcon.appiconset/icon_80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/AppIcon.appiconset/icon_80.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/LaunchImage.launchimage/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/LaunchImage.launchimage/default.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/LaunchImage.launchimage/default@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/LaunchImage.launchimage/default@2x-1.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/LaunchImage.launchimage/default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/LaunchImage.launchimage/default@2x.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/LaunchImage.launchimage/defaultR4@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/LaunchImage.launchimage/defaultR4@2x.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/about_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/about_icon.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/about_icon.imageset/about_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/about_icon.imageset/about_icon.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/about_icon.imageset/about_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/about_icon.imageset/about_icon@2x.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/action_arrow.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/action_arrow.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/action_arrow.imageset/action_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/action_arrow.imageset/action_arrow.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/action_arrow.imageset/action_arrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/action_arrow.imageset/action_arrow@2x.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/activity_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/activity_icon.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/activity_icon.imageset/activity_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/activity_icon.imageset/activity_icon.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/add.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/add.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/add.imageset/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/add.imageset/add.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/add.imageset/add@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/add.imageset/add@2x.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/add_audio_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/add_audio_icon.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/add_friend.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/add_friend.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/add_friend.imageset/add_friend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/add_friend.imageset/add_friend.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/add_friend.imageset/add_friend@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/add_friend.imageset/add_friend@2x.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/add_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/add_icon.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/add_icon.imageset/add_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/add_icon.imageset/add_icon.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/add_icon.imageset/add_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/add_icon.imageset/add_icon@2x.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/add_photo_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/add_photo_icon.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/add_text_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/add_text_icon.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/add_text_icon.imageset/add_text_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/add_text_icon.imageset/add_text_icon.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/add_video_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/add_video_icon.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/back.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/back.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/back.imageset/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/back.imageset/back.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/back.imageset/back@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/back.imageset/back@2x.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/back_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/back_icon.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/back_icon.imageset/back_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/back_icon.imageset/back_icon.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/back_icon.imageset/back_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/back_icon.imageset/back_icon@2x.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/bio_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/bio_icon.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/bio_icon.imageset/bio_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/bio_icon.imageset/bio_icon.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/bio_icon.imageset/bio_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/bio_icon.imageset/bio_icon@2x.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/board_shadow.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/board_shadow.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/board_shadow.imageset/board_shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/board_shadow.imageset/board_shadow.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/board_shadow.imageset/board_shadow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/board_shadow.imageset/board_shadow@2x.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/camera_flash.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/camera_flash.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/camera_flash.imageset/camera_flash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/camera_flash.imageset/camera_flash.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/camera_flash.imageset/camera_flash@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/camera_flash.imageset/camera_flash@2x.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/camera_flash_on.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/camera_flash_on.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/camera_roll.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/camera_roll.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/camera_roll.imageset/camera_roll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/camera_roll.imageset/camera_roll.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/camera_roll.imageset/camera_roll@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/camera_roll.imageset/camera_roll@2x.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/camera_x.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/camera_x.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/camera_x.imageset/camera_x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/camera_x.imageset/camera_x.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/camera_x.imageset/camera_x@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/camera_x.imageset/camera_x@2x.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/cancel_button.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/cancel_button.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/cancel_button.imageset/cancel_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/cancel_button.imageset/cancel_button.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/change_button.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/change_button.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/change_button.imageset/change_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/change_button.imageset/change_button.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/close_button.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/close_button.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/close_button.imageset/close_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/close_button.imageset/close_button.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/close_button.imageset/close_button@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/close_button.imageset/close_button@2x.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/comment.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/comment.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/comment.imageset/comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/comment.imageset/comment.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/comment.imageset/comment@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/comment.imageset/comment@2x.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/comment_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/comment_icon.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/comment_icon.imageset/comment_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/comment_icon.imageset/comment_icon.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/comment_icon.imageset/comment_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/comment_icon.imageset/comment_icon@2x.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/contacts_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/contacts_icon.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/contacts_icon.imageset/contacts_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/contacts_icon.imageset/contacts_icon.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/defaultR4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/defaultR4.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/defaultR4.imageset/defaultR4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/defaultR4.imageset/defaultR4.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/defaultR4.imageset/defaultR4@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/defaultR4.imageset/defaultR4@2x.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/default_post_thumb.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/default_post_thumb.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/delete.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/delete.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/delete.imageset/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/delete.imageset/delete.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/delete.imageset/delete@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/delete.imageset/delete@2x.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/delete_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/delete_icon.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/delete_icon.imageset/delete_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/delete_icon.imageset/delete_icon.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/delete_icon.imageset/delete_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/delete_icon.imageset/delete_icon@2x.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/detail_arrow.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/detail_arrow.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/detail_arrow.imageset/detail_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/detail_arrow.imageset/detail_arrow.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/detail_arrow.imageset/detail_arrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/detail_arrow.imageset/detail_arrow@2x.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/divider.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/divider.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/divider.imageset/divider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/divider.imageset/divider.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/divider.imageset/divider@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/divider.imageset/divider@2x.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/done_button.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/done_button.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/done_button.imageset/done_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/done_button.imageset/done_button.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/done_button.imageset/done_button@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/done_button.imageset/done_button@2x.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/edit_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/edit_icon.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/edit_icon.imageset/edit_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/edit_icon.imageset/edit_icon.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/edit_icon.imageset/edit_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/edit_icon.imageset/edit_icon@2x.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/edit_profile.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/edit_profile.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/edit_profile.imageset/edit_profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/edit_profile.imageset/edit_profile.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/edit_profile.imageset/edit_profile@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/edit_profile.imageset/edit_profile@2x.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/email.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/email.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/email.imageset/email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/email.imageset/email.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/email.imageset/email@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/email.imageset/email@2x.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/email_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/email_icon.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/email_icon.imageset/email_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/email_icon.imageset/email_icon.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/email_icon.imageset/email_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/email_icon.imageset/email_icon@2x.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/facebook_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/facebook_icon.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/facebook_icon.imageset/facebook_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/facebook_icon.imageset/facebook_icon.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/favorite_active.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/favorite_active.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/favorite_inactive.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/favorite_inactive.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/feedback_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/feedback_icon.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/feedback_icon.imageset/feedback_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/feedback_icon.imageset/feedback_icon.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/flip_image.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/flip_image.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/flip_image.imageset/flip_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/flip_image.imageset/flip_image.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/flip_image.imageset/flip_image@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/flip_image.imageset/flip_image@2x.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/focus_reticle_1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/focus_reticle_1.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/focus_reticle_1.imageset/reticle1-@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/focus_reticle_1.imageset/reticle1-@1x.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/focus_reticle_1.imageset/reticle1-@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/focus_reticle_1.imageset/reticle1-@2x.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/focus_reticle_2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/focus_reticle_2.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/focus_reticle_2.imageset/reticle2-@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/focus_reticle_2.imageset/reticle2-@1x.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/focus_reticle_2.imageset/reticle2-@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/focus_reticle_2.imageset/reticle2-@2x.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/forward.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/forward.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/forward.imageset/forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/forward.imageset/forward.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/forward.imageset/forward@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/forward.imageset/forward@2x.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/friend_add.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/friend_add.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/friend_add.imageset/friend_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/friend_add.imageset/friend_add.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/friend_add.imageset/friend_add@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/friend_add.imageset/friend_add@2x.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/friends.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/friends.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/friends.imageset/friends.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/friends.imageset/friends.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/friends.imageset/friends@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/friends.imageset/friends@2x.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/friends_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/friends_icon.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/friends_icon.imageset/friends_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/friends_icon.imageset/friends_icon.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/friends_icon.imageset/friends_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/friends_icon.imageset/friends_icon@2x.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/generic_avatar.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/generic_avatar.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/generic_photo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/generic_photo.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/generic_photo.imageset/generic_photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/generic_photo.imageset/generic_photo.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/help.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/help.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/help.imageset/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/help.imageset/help.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/help.imageset/help@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/help.imageset/help@2x.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/help_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/help_icon.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/help_icon.imageset/help_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/help_icon.imageset/help_icon.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/help_icon.imageset/help_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/help_icon.imageset/help_icon@2x.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/home_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/home_icon.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/home_icon.imageset/home_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/home_icon.imageset/home_icon.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/home_icon.imageset/home_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/home_icon.imageset/home_icon@2x.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/home_icon_selected.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/home_icon_selected.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/icon_view.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/icon_view.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/icon_view.imageset/icon_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/icon_view.imageset/icon_view.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/icon_view.imageset/icon_view@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/icon_view.imageset/icon_view@2x.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/icon_view_on.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/icon_view_on.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/icon_view_on.imageset/icon_view_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/icon_view_on.imageset/icon_view_on.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/icon_view_on.imageset/icon_view_on@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/icon_view_on.imageset/icon_view_on@2x.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/image_generic.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/image_generic.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/image_generic.imageset/image_generic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/image_generic.imageset/image_generic.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/image_generic2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/image_generic2.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/info_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/info_icon.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/info_icon.imageset/info_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/info_icon.imageset/info_icon.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/info_icon.imageset/info_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/info_icon.imageset/info_icon@2x.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/intro_art_overlay.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/intro_art_overlay.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/list_view.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/list_view.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/list_view.imageset/list_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/list_view.imageset/list_view.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/list_view.imageset/list_view@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/list_view.imageset/list_view@2x.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/list_view_off.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/list_view_off.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/list_view_off.imageset/list_view_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/list_view_off.imageset/list_view_off.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/location.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/location.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/location.imageset/location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/location.imageset/location.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/location.imageset/location@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/location.imageset/location@2x.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/location_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/location_icon.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/location_icon.imageset/location_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/location_icon.imageset/location_icon.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/lock.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/lock.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/lock.imageset/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/lock.imageset/lock.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/lock.imageset/lock@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/lock.imageset/lock@2x.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/login_art_overlay.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/login_art_overlay.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/logout.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/logout.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/logout.imageset/logout_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/logout.imageset/logout_icon.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/logout.imageset/logout_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/logout.imageset/logout_icon@2x.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/logout_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/logout_icon.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/logout_icon.imageset/logout_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/logout_icon.imageset/logout_icon.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/logout_icon.imageset/logout_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/logout_icon.imageset/logout_icon@2x.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/map_point.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/map_point.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/map_point.imageset/map_point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/map_point.imageset/map_point.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/map_point.imageset/map_point@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/map_point.imageset/map_point@2x.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/more_button.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/more_button.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/more_button.imageset/more_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/more_button.imageset/more_button.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/more_button.imageset/more_button@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/more_button.imageset/more_button@2x.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/more_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/more_icon.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/more_icon.imageset/more_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/more_icon.imageset/more_icon.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/more_icon.imageset/more_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/more_icon.imageset/more_icon@2x.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/more_icon_selected.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/more_icon_selected.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/name_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/name_icon.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/name_icon.imageset/name_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/name_icon.imageset/name_icon.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/name_icon.imageset/name_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/name_icon.imageset/name_icon@2x.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/new_post.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/new_post.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/new_post.imageset/new_post.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/new_post.imageset/new_post.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/new_post.imageset/new_post@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/new_post.imageset/new_post@2x.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/notes_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/notes_icon.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/notes_icon.imageset/notes_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/notes_icon.imageset/notes_icon.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/notes_icon.imageset/notes_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/notes_icon.imageset/notes_icon@2x.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/panel_button.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/panel_button.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/panel_button.imageset/panel_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/panel_button.imageset/panel_button.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/panel_button.imageset/panel_button@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/panel_button.imageset/panel_button@2x.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/pegg_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/pegg_icon.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/pegg_icon.imageset/pegg_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/pegg_icon.imageset/pegg_icon.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/pegg_icon.imageset/pegg_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/pegg_icon.imageset/pegg_icon@2x.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/photo_button.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/photo_button.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/photo_button.imageset/photo_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/photo_button.imageset/photo_button.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/photo_button.imageset/photo_button@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/photo_button.imageset/photo_button@2x.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/photo_grid.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/photo_grid.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/photo_grid.imageset/photo_grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/photo_grid.imageset/photo_grid.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/photo_grid.imageset/photo_grid@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/photo_grid.imageset/photo_grid@2x.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/play_audio.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/play_audio.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/play_audio.imageset/play_audio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/play_audio.imageset/play_audio.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/play_audio.imageset/play_audio@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/play_audio.imageset/play_audio@2x.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/play_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/play_icon.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/play_icon.imageset/play_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/play_icon.imageset/play_icon.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/play_icon.imageset/play_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/play_icon.imageset/play_icon@2x.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/play_video.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/play_video.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/play_video.imageset/play_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/play_video.imageset/play_video.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/play_video.imageset/play_video@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/play_video.imageset/play_video@2x.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/privacy_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/privacy_icon.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/privacy_icon.imageset/privacy_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/privacy_icon.imageset/privacy_icon.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/privacy_icon.imageset/privacy_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/privacy_icon.imageset/privacy_icon@2x.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/private.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/private.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/private.imageset/private.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/private.imageset/private.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/private.imageset/private@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/private.imageset/private@2x.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/private_off.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/private_off.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/private_off.imageset/private_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/private_off.imageset/private_off.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/private_off.imageset/private_off@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/private_off.imageset/private_off@2x.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/private_on.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/private_on.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/private_on.imageset/private_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/private_on.imageset/private_icon.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/private_on.imageset/private_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/private_on.imageset/private_icon@2x.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/profile_add.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/profile_add.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/profile_add.imageset/profile_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/profile_add.imageset/profile_add.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/profile_add.imageset/profile_add@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/profile_add.imageset/profile_add@2x.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/profile_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/profile_icon.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/profile_icon.imageset/profile_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/profile_icon.imageset/profile_icon.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/profile_icon.imageset/profile_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/profile_icon.imageset/profile_icon@2x.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/profile_view.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/profile_view.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/profile_view.imageset/profile_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/profile_view.imageset/profile_view.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/profile_view.imageset/profile_view@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/profile_view.imageset/profile_view@2x.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/push_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/push_icon.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/push_icon.imageset/push_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/push_icon.imageset/push_icon.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/push_icon.imageset/push_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/push_icon.imageset/push_icon@2x.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/refresh_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/refresh_icon.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/refresh_icon.imageset/refresh_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/refresh_icon.imageset/refresh_icon.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/refresh_icon.imageset/refresh_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/refresh_icon.imageset/refresh_icon@2x.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/report_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/report_icon.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/report_icon.imageset/report_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/report_icon.imageset/report_icon.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/report_icon.imageset/report_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/report_icon.imageset/report_icon@2x.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/rich_divider.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/rich_divider.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/rich_divider.imageset/rich_divider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/rich_divider.imageset/rich_divider.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/rich_divider.imageset/rich_divider@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/rich_divider.imageset/rich_divider@2x.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/sand_background.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/sand_background.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/search_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/search_icon.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/search_icon.imageset/search_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/search_icon.imageset/search_icon.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/search_icon.imageset/search_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/search_icon.imageset/search_icon@2x.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/search_icon_on.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/search_icon_on.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/send_button.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/send_button.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/send_button.imageset/send_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/send_button.imageset/send_button.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/send_button.imageset/send_button@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/send_button.imageset/send_button@2x.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/settings.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/settings.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/settings.imageset/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/settings.imageset/settings.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/settings.imageset/settings@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/settings.imageset/settings@2x.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/shadow_bottom.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/shadow_bottom.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/shadow_bottom.imageset/shadow_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/shadow_bottom.imageset/shadow_bottom.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/share_background.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/share_background.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/share_fb_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/share_fb_icon.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/share_fb_icon.imageset/share_fb_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/share_fb_icon.imageset/share_fb_icon.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/share_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/share_icon.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/share_icon.imageset/share_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/share_icon.imageset/share_icon.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/share_icon.imageset/share_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/share_icon.imageset/share_icon@2x.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/share_twitter_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/share_twitter_icon.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/short_back_arrow.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/short_back_arrow.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/showlist.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/showlist.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/showlist.imageset/showlist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/showlist.imageset/showlist.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/showlist.imageset/showlist@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/showlist.imageset/showlist@2x.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/showthumbs.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/showthumbs.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/showthumbs.imageset/showthumbs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/showthumbs.imageset/showthumbs.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/showthumbs.imageset/showthumbs@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/showthumbs.imageset/showthumbs@2x.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/site_logo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/site_logo.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/site_logo.imageset/site_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/site_logo.imageset/site_logo.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/site_logo.imageset/site_logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/site_logo.imageset/site_logo@2x.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/soundcloud_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/soundcloud_icon.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/terms_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/terms_icon.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/terms_icon.imageset/terms_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/terms_icon.imageset/terms_icon.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/terms_icon.imageset/terms_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/terms_icon.imageset/terms_icon@2x.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/tumblr_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/tumblr_icon.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/tumblr_icon.imageset/tumblr_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/tumblr_icon.imageset/tumblr_icon.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/tumblr_icon.imageset/tumblr_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/tumblr_icon.imageset/tumblr_icon@2x.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/twitter_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/twitter_icon.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/twitter_icon.imageset/twitter_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/twitter_icon.imageset/twitter_icon.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/url_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/url_icon.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/url_icon.imageset/url_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/url_icon.imageset/url_icon.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/url_icon.imageset/url_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/url_icon.imageset/url_icon@2x.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/user.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/user.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/user.imageset/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/user.imageset/user.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/user.imageset/user@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/user.imageset/user@2x.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/username_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/username_icon.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/vimeo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/vimeo.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/vimeo.imageset/vimeo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/vimeo.imageset/vimeo.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/vimeo.imageset/vimeo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/vimeo.imageset/vimeo@2x.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/white_arrow_left.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/white_arrow_left.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/youtube.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/youtube.imageset/Contents.json -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/youtube.imageset/youtube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/youtube.imageset/youtube.png -------------------------------------------------------------------------------- /GenericSocialApp/Images.xcassets/youtube.imageset/youtube@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Images.xcassets/youtube.imageset/youtube@2x.png -------------------------------------------------------------------------------- /GenericSocialApp/IntroViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/IntroViewController.h -------------------------------------------------------------------------------- /GenericSocialApp/IntroViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/IntroViewController.m -------------------------------------------------------------------------------- /GenericSocialApp/JoinViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/JoinViewController.h -------------------------------------------------------------------------------- /GenericSocialApp/JoinViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/JoinViewController.m -------------------------------------------------------------------------------- /GenericSocialApp/Layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Layout.h -------------------------------------------------------------------------------- /GenericSocialApp/Layout.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Layout.m -------------------------------------------------------------------------------- /GenericSocialApp/LayoutManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/LayoutManager.h -------------------------------------------------------------------------------- /GenericSocialApp/LayoutManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/LayoutManager.m -------------------------------------------------------------------------------- /GenericSocialApp/LoaderCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/LoaderCell.h -------------------------------------------------------------------------------- /GenericSocialApp/LoaderCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/LoaderCell.m -------------------------------------------------------------------------------- /GenericSocialApp/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Localizable.strings -------------------------------------------------------------------------------- /GenericSocialApp/LoginViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/LoginViewController.h -------------------------------------------------------------------------------- /GenericSocialApp/LoginViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/LoginViewController.m -------------------------------------------------------------------------------- /GenericSocialApp/Love.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Love.h -------------------------------------------------------------------------------- /GenericSocialApp/Love.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Love.m -------------------------------------------------------------------------------- /GenericSocialApp/MKAnnotationView+WebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/MKAnnotationView+WebCache.h -------------------------------------------------------------------------------- /GenericSocialApp/MKAnnotationView+WebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/MKAnnotationView+WebCache.m -------------------------------------------------------------------------------- /GenericSocialApp/MediaContentView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/MediaContentView.h -------------------------------------------------------------------------------- /GenericSocialApp/MediaContentView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/MediaContentView.m -------------------------------------------------------------------------------- /GenericSocialApp/MediaView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/MediaView.h -------------------------------------------------------------------------------- /GenericSocialApp/MediaView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/MediaView.m -------------------------------------------------------------------------------- /GenericSocialApp/MenuCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/MenuCell.h -------------------------------------------------------------------------------- /GenericSocialApp/MenuCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/MenuCell.m -------------------------------------------------------------------------------- /GenericSocialApp/ModalAlert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/ModalAlert.h -------------------------------------------------------------------------------- /GenericSocialApp/ModalAlert.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/ModalAlert.m -------------------------------------------------------------------------------- /GenericSocialApp/MoreViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/MoreViewController.h -------------------------------------------------------------------------------- /GenericSocialApp/MoreViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/MoreViewController.m -------------------------------------------------------------------------------- /GenericSocialApp/NSData+ImageContentType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/NSData+ImageContentType.h -------------------------------------------------------------------------------- /GenericSocialApp/NSData+ImageContentType.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/NSData+ImageContentType.m -------------------------------------------------------------------------------- /GenericSocialApp/NSDate+PSFoundation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/NSDate+PSFoundation.h -------------------------------------------------------------------------------- /GenericSocialApp/NSDate+PSFoundation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/NSDate+PSFoundation.m -------------------------------------------------------------------------------- /GenericSocialApp/NSNumber+Hex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/NSNumber+Hex.h -------------------------------------------------------------------------------- /GenericSocialApp/NSNumber+Hex.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/NSNumber+Hex.m -------------------------------------------------------------------------------- /GenericSocialApp/NSObject+Initializers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/NSObject+Initializers.h -------------------------------------------------------------------------------- /GenericSocialApp/NSObject+Initializers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/NSObject+Initializers.m -------------------------------------------------------------------------------- /GenericSocialApp/NavBarView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/NavBarView.h -------------------------------------------------------------------------------- /GenericSocialApp/NavBarView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/NavBarView.m -------------------------------------------------------------------------------- /GenericSocialApp/NavButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/NavButton.h -------------------------------------------------------------------------------- /GenericSocialApp/NavButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/NavButton.m -------------------------------------------------------------------------------- /GenericSocialApp/NotificationSettingsView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/NotificationSettingsView.h -------------------------------------------------------------------------------- /GenericSocialApp/NotificationSettingsView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/NotificationSettingsView.m -------------------------------------------------------------------------------- /GenericSocialApp/NotificationView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/NotificationView.h -------------------------------------------------------------------------------- /GenericSocialApp/NotificationView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/NotificationView.m -------------------------------------------------------------------------------- /GenericSocialApp/PSNavController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/PSNavController.h -------------------------------------------------------------------------------- /GenericSocialApp/PSNavController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/PSNavController.m -------------------------------------------------------------------------------- /GenericSocialApp/PSViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/PSViewController.h -------------------------------------------------------------------------------- /GenericSocialApp/PSViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/PSViewController.m -------------------------------------------------------------------------------- /GenericSocialApp/PageControlView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/PageControlView.h -------------------------------------------------------------------------------- /GenericSocialApp/PageControlView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/PageControlView.m -------------------------------------------------------------------------------- /GenericSocialApp/PageDotView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/PageDotView.h -------------------------------------------------------------------------------- /GenericSocialApp/PageDotView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/PageDotView.m -------------------------------------------------------------------------------- /GenericSocialApp/PasswordView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/PasswordView.h -------------------------------------------------------------------------------- /GenericSocialApp/PasswordView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/PasswordView.m -------------------------------------------------------------------------------- /GenericSocialApp/PasswordViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/PasswordViewController.h -------------------------------------------------------------------------------- /GenericSocialApp/PasswordViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/PasswordViewController.m -------------------------------------------------------------------------------- /GenericSocialApp/PeggButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/PeggButton.h -------------------------------------------------------------------------------- /GenericSocialApp/PeggButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/PeggButton.m -------------------------------------------------------------------------------- /GenericSocialApp/PeggLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/PeggLabel.h -------------------------------------------------------------------------------- /GenericSocialApp/PeggLabel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/PeggLabel.m -------------------------------------------------------------------------------- /GenericSocialApp/PeggStory.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/PeggStory.storyboard -------------------------------------------------------------------------------- /GenericSocialApp/PeggTextField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/PeggTextField.h -------------------------------------------------------------------------------- /GenericSocialApp/PeggTextField.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/PeggTextField.m -------------------------------------------------------------------------------- /GenericSocialApp/PeggTextView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/PeggTextView.h -------------------------------------------------------------------------------- /GenericSocialApp/PeggTextView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/PeggTextView.m -------------------------------------------------------------------------------- /GenericSocialApp/PhotoContentView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/PhotoContentView.h -------------------------------------------------------------------------------- /GenericSocialApp/PhotoContentView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/PhotoContentView.m -------------------------------------------------------------------------------- /GenericSocialApp/PhotoView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/PhotoView.h -------------------------------------------------------------------------------- /GenericSocialApp/PhotoView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/PhotoView.m -------------------------------------------------------------------------------- /GenericSocialApp/PhotoViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/PhotoViewCell.h -------------------------------------------------------------------------------- /GenericSocialApp/PhotoViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/PhotoViewCell.m -------------------------------------------------------------------------------- /GenericSocialApp/PrivacyViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/PrivacyViewController.h -------------------------------------------------------------------------------- /GenericSocialApp/PrivacyViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/PrivacyViewController.m -------------------------------------------------------------------------------- /GenericSocialApp/ProfileDetailView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/ProfileDetailView.h -------------------------------------------------------------------------------- /GenericSocialApp/ProfileDetailView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/ProfileDetailView.m -------------------------------------------------------------------------------- /GenericSocialApp/ProfileViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/ProfileViewController.h -------------------------------------------------------------------------------- /GenericSocialApp/ProfileViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/ProfileViewController.m -------------------------------------------------------------------------------- /GenericSocialApp/ProximaNova-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/ProximaNova-Bold.otf -------------------------------------------------------------------------------- /GenericSocialApp/ProximaNova-Extrabld.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/ProximaNova-Extrabld.otf -------------------------------------------------------------------------------- /GenericSocialApp/ProximaNova-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/ProximaNova-Regular.otf -------------------------------------------------------------------------------- /GenericSocialApp/ProximaNova-Semibold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/ProximaNova-Semibold.otf -------------------------------------------------------------------------------- /GenericSocialApp/ProximaNova-SemiboldIt.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/ProximaNova-SemiboldIt.otf -------------------------------------------------------------------------------- /GenericSocialApp/PushNotificationsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/PushNotificationsViewController.h -------------------------------------------------------------------------------- /GenericSocialApp/PushNotificationsViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/PushNotificationsViewController.m -------------------------------------------------------------------------------- /GenericSocialApp/Region.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Region.h -------------------------------------------------------------------------------- /GenericSocialApp/Region.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Region.m -------------------------------------------------------------------------------- /GenericSocialApp/ReportActivity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/ReportActivity.h -------------------------------------------------------------------------------- /GenericSocialApp/ReportActivity.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/ReportActivity.m -------------------------------------------------------------------------------- /GenericSocialApp/Request.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Request.h -------------------------------------------------------------------------------- /GenericSocialApp/Request.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Request.m -------------------------------------------------------------------------------- /GenericSocialApp/RequestCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/RequestCell.h -------------------------------------------------------------------------------- /GenericSocialApp/RequestCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/RequestCell.m -------------------------------------------------------------------------------- /GenericSocialApp/RequestOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/RequestOperation.h -------------------------------------------------------------------------------- /GenericSocialApp/RequestOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/RequestOperation.m -------------------------------------------------------------------------------- /GenericSocialApp/RequestQueueManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/RequestQueueManager.h -------------------------------------------------------------------------------- /GenericSocialApp/RequestQueueManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/RequestQueueManager.m -------------------------------------------------------------------------------- /GenericSocialApp/SDImageCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/SDImageCache.h -------------------------------------------------------------------------------- /GenericSocialApp/SDImageCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/SDImageCache.m -------------------------------------------------------------------------------- /GenericSocialApp/SDWebImageCompat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/SDWebImageCompat.h -------------------------------------------------------------------------------- /GenericSocialApp/SDWebImageCompat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/SDWebImageCompat.m -------------------------------------------------------------------------------- /GenericSocialApp/SDWebImageDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/SDWebImageDecoder.h -------------------------------------------------------------------------------- /GenericSocialApp/SDWebImageDecoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/SDWebImageDecoder.m -------------------------------------------------------------------------------- /GenericSocialApp/SDWebImageDownloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/SDWebImageDownloader.h -------------------------------------------------------------------------------- /GenericSocialApp/SDWebImageDownloader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/SDWebImageDownloader.m -------------------------------------------------------------------------------- /GenericSocialApp/SDWebImageDownloaderOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/SDWebImageDownloaderOperation.h -------------------------------------------------------------------------------- /GenericSocialApp/SDWebImageDownloaderOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/SDWebImageDownloaderOperation.m -------------------------------------------------------------------------------- /GenericSocialApp/SDWebImageManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/SDWebImageManager.h -------------------------------------------------------------------------------- /GenericSocialApp/SDWebImageManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/SDWebImageManager.m -------------------------------------------------------------------------------- /GenericSocialApp/SDWebImageOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/SDWebImageOperation.h -------------------------------------------------------------------------------- /GenericSocialApp/SDWebImagePrefetcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/SDWebImagePrefetcher.h -------------------------------------------------------------------------------- /GenericSocialApp/SDWebImagePrefetcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/SDWebImagePrefetcher.m -------------------------------------------------------------------------------- /GenericSocialApp/SearchViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/SearchViewController.h -------------------------------------------------------------------------------- /GenericSocialApp/SearchViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/SearchViewController.m -------------------------------------------------------------------------------- /GenericSocialApp/ShadeView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/ShadeView.h -------------------------------------------------------------------------------- /GenericSocialApp/ShadeView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/ShadeView.m -------------------------------------------------------------------------------- /GenericSocialApp/ShareFriendCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/ShareFriendCell.h -------------------------------------------------------------------------------- /GenericSocialApp/ShareFriendCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/ShareFriendCell.m -------------------------------------------------------------------------------- /GenericSocialApp/ShareManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/ShareManager.h -------------------------------------------------------------------------------- /GenericSocialApp/ShareManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/ShareManager.m -------------------------------------------------------------------------------- /GenericSocialApp/ShareSettingsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/ShareSettingsViewController.h -------------------------------------------------------------------------------- /GenericSocialApp/ShareSettingsViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/ShareSettingsViewController.m -------------------------------------------------------------------------------- /GenericSocialApp/ShareView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/ShareView.h -------------------------------------------------------------------------------- /GenericSocialApp/ShareView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/ShareView.m -------------------------------------------------------------------------------- /GenericSocialApp/SocialButtonView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/SocialButtonView.h -------------------------------------------------------------------------------- /GenericSocialApp/SocialButtonView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/SocialButtonView.m -------------------------------------------------------------------------------- /GenericSocialApp/SpinnerView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/SpinnerView.h -------------------------------------------------------------------------------- /GenericSocialApp/SpinnerView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/SpinnerView.m -------------------------------------------------------------------------------- /GenericSocialApp/StackedView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/StackedView.h -------------------------------------------------------------------------------- /GenericSocialApp/StackedView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/StackedView.m -------------------------------------------------------------------------------- /GenericSocialApp/Strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Strings.h -------------------------------------------------------------------------------- /GenericSocialApp/TabBarView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/TabBarView.h -------------------------------------------------------------------------------- /GenericSocialApp/TabBarView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/TabBarView.m -------------------------------------------------------------------------------- /GenericSocialApp/TermsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/TermsViewController.h -------------------------------------------------------------------------------- /GenericSocialApp/TermsViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/TermsViewController.m -------------------------------------------------------------------------------- /GenericSocialApp/TitleView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/TitleView.h -------------------------------------------------------------------------------- /GenericSocialApp/TitleView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/TitleView.m -------------------------------------------------------------------------------- /GenericSocialApp/TwitterUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/TwitterUser.h -------------------------------------------------------------------------------- /GenericSocialApp/TwitterUser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/TwitterUser.m -------------------------------------------------------------------------------- /GenericSocialApp/TwitterViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/TwitterViewController.h -------------------------------------------------------------------------------- /GenericSocialApp/TwitterViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/TwitterViewController.m -------------------------------------------------------------------------------- /GenericSocialApp/UIButton+WebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/UIButton+WebCache.h -------------------------------------------------------------------------------- /GenericSocialApp/UIButton+WebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/UIButton+WebCache.m -------------------------------------------------------------------------------- /GenericSocialApp/UIColor+Hex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/UIColor+Hex.h -------------------------------------------------------------------------------- /GenericSocialApp/UIColor+Hex.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/UIColor+Hex.m -------------------------------------------------------------------------------- /GenericSocialApp/UIImage+GIF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/UIImage+GIF.h -------------------------------------------------------------------------------- /GenericSocialApp/UIImage+GIF.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/UIImage+GIF.m -------------------------------------------------------------------------------- /GenericSocialApp/UIImage+MultiFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/UIImage+MultiFormat.h -------------------------------------------------------------------------------- /GenericSocialApp/UIImage+MultiFormat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/UIImage+MultiFormat.m -------------------------------------------------------------------------------- /GenericSocialApp/UIImage+Resize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/UIImage+Resize.h -------------------------------------------------------------------------------- /GenericSocialApp/UIImage+Resize.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/UIImage+Resize.m -------------------------------------------------------------------------------- /GenericSocialApp/UIImage+WebP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/UIImage+WebP.h -------------------------------------------------------------------------------- /GenericSocialApp/UIImage+WebP.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/UIImage+WebP.m -------------------------------------------------------------------------------- /GenericSocialApp/UIImageView+WebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/UIImageView+WebCache.h -------------------------------------------------------------------------------- /GenericSocialApp/UIImageView+WebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/UIImageView+WebCache.m -------------------------------------------------------------------------------- /GenericSocialApp/UIView+KeyboardHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/UIView+KeyboardHelpers.h -------------------------------------------------------------------------------- /GenericSocialApp/UIView+KeyboardHelpers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/UIView+KeyboardHelpers.m -------------------------------------------------------------------------------- /GenericSocialApp/UIView+Positioning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/UIView+Positioning.h -------------------------------------------------------------------------------- /GenericSocialApp/UIView+Positioning.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/UIView+Positioning.m -------------------------------------------------------------------------------- /GenericSocialApp/UIView-ViewFrameGeometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/UIView-ViewFrameGeometry.h -------------------------------------------------------------------------------- /GenericSocialApp/UIView-ViewFrameGeometry.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/UIView-ViewFrameGeometry.m -------------------------------------------------------------------------------- /GenericSocialApp/UnderlineLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/UnderlineLabel.h -------------------------------------------------------------------------------- /GenericSocialApp/UnderlineLabel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/UnderlineLabel.m -------------------------------------------------------------------------------- /GenericSocialApp/User.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/User.h -------------------------------------------------------------------------------- /GenericSocialApp/User.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/User.m -------------------------------------------------------------------------------- /GenericSocialApp/UserCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/UserCell.h -------------------------------------------------------------------------------- /GenericSocialApp/UserCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/UserCell.m -------------------------------------------------------------------------------- /GenericSocialApp/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Utils.h -------------------------------------------------------------------------------- /GenericSocialApp/Utils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/Utils.m -------------------------------------------------------------------------------- /GenericSocialApp/WhiteBoxView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/WhiteBoxView.h -------------------------------------------------------------------------------- /GenericSocialApp/WhiteBoxView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/WhiteBoxView.m -------------------------------------------------------------------------------- /GenericSocialApp/buildnumber.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/buildnumber.xcconfig -------------------------------------------------------------------------------- /GenericSocialApp/dummy data/dummy_response_0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/dummy data/dummy_response_0.txt -------------------------------------------------------------------------------- /GenericSocialApp/dummy data/dummy_response_22.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/dummy data/dummy_response_22.txt -------------------------------------------------------------------------------- /GenericSocialApp/dummy data/dummy_response_25.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/dummy data/dummy_response_25.txt -------------------------------------------------------------------------------- /GenericSocialApp/dummy data/dummy_response_4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/dummy data/dummy_response_4.txt -------------------------------------------------------------------------------- /GenericSocialApp/dummy data/dummy_response_6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/dummy data/dummy_response_6.txt -------------------------------------------------------------------------------- /GenericSocialApp/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GenericSocialApp/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/main.m -------------------------------------------------------------------------------- /GenericSocialApp/menu.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/menu.plist -------------------------------------------------------------------------------- /GenericSocialApp/text.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialApp/text.plist -------------------------------------------------------------------------------- /GenericSocialAppTests/GenericSocialAppTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialAppTests/GenericSocialAppTests-Info.plist -------------------------------------------------------------------------------- /GenericSocialAppTests/PeggSiteTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/GenericSocialAppTests/PeggSiteTests.m -------------------------------------------------------------------------------- /GenericSocialAppTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenduf/GenericSocialApp/HEAD/README.md --------------------------------------------------------------------------------