├── .DS_Store ├── Pods ├── Headers │ ├── Private │ │ ├── 500px-iOS-api │ │ │ ├── PXAPI.h │ │ │ ├── PXRequest.h │ │ │ ├── PXAPIHelper.h │ │ │ ├── OAuthCore.h │ │ │ ├── PXAPIHelper+Auth.h │ │ │ ├── NSData+Base64.h │ │ │ ├── PXRequest+Creation.h │ │ │ └── OAuth+Additions.h │ │ ├── FlatUIKit │ │ │ ├── FUIButton.h │ │ │ ├── FUISwitch.h │ │ │ ├── FlatUIKit.h │ │ │ ├── FUIAlertView.h │ │ │ ├── FUITextField.h │ │ │ ├── UIFont+FlatUI.h │ │ │ ├── NSString+Icons.h │ │ │ ├── UIColor+FlatUI.h │ │ │ ├── UIImage+FlatUI.h │ │ │ ├── UISlider+FlatUI.h │ │ │ ├── UIStepper+FlatUI.h │ │ │ ├── UITabBar+FlatUI.h │ │ │ ├── UIToolbar+FlatUI.h │ │ │ ├── FUICellBackgroundView.h │ │ │ ├── FUISegmentedControl.h │ │ │ ├── UIProgressView+FlatUI.h │ │ │ ├── UIBarButtonItem+FlatUI.h │ │ │ ├── UINavigationBar+FlatUI.h │ │ │ ├── UITableViewCell+FlatUI.h │ │ │ ├── FUIPopoverBackgroundView.h │ │ │ └── UIPopoverController+FlatUI.h │ │ ├── MBProgressHUD │ │ │ └── MBProgressHUD.h │ │ ├── SDWebImage │ │ │ ├── SDImageCache.h │ │ │ ├── UIImage+GIF.h │ │ │ ├── SDWebImageCompat.h │ │ │ ├── SDWebImageDecoder.h │ │ │ ├── SDWebImageManager.h │ │ │ ├── UIButton+WebCache.h │ │ │ ├── SDWebImageDownloader.h │ │ │ ├── SDWebImageOperation.h │ │ │ ├── SDWebImagePrefetcher.h │ │ │ ├── UIImage+MultiFormat.h │ │ │ ├── UIImageView+WebCache.h │ │ │ ├── NSData+ImageContentType.h │ │ │ ├── UIView+WebCacheOperation.h │ │ │ ├── SDWebImageDownloaderOperation.h │ │ │ └── UIImageView+HighlightedWebCache.h │ │ └── SVPullToRefresh │ │ │ ├── SVPullToRefresh.h │ │ │ ├── UIScrollView+SVPullToRefresh.h │ │ │ └── UIScrollView+SVInfiniteScrolling.h │ └── Public │ │ ├── 500px-iOS-api │ │ ├── PXAPI.h │ │ ├── PXRequest.h │ │ ├── PXAPIHelper.h │ │ ├── OAuthCore.h │ │ ├── PXAPIHelper+Auth.h │ │ ├── PXRequest+Creation.h │ │ ├── NSData+Base64.h │ │ └── OAuth+Additions.h │ │ ├── FlatUIKit │ │ ├── FUIButton.h │ │ ├── FUISwitch.h │ │ ├── FlatUIKit.h │ │ ├── FUIAlertView.h │ │ ├── FUITextField.h │ │ ├── NSString+Icons.h │ │ ├── UIColor+FlatUI.h │ │ ├── UIFont+FlatUI.h │ │ ├── UIImage+FlatUI.h │ │ ├── UISlider+FlatUI.h │ │ ├── UIStepper+FlatUI.h │ │ ├── UITabBar+FlatUI.h │ │ ├── UIToolbar+FlatUI.h │ │ ├── FUISegmentedControl.h │ │ ├── FUICellBackgroundView.h │ │ ├── UIProgressView+FlatUI.h │ │ ├── FUIPopoverBackgroundView.h │ │ ├── UIBarButtonItem+FlatUI.h │ │ ├── UINavigationBar+FlatUI.h │ │ ├── UITableViewCell+FlatUI.h │ │ └── UIPopoverController+FlatUI.h │ │ ├── MBProgressHUD │ │ └── MBProgressHUD.h │ │ ├── SDWebImage │ │ ├── UIImage+GIF.h │ │ ├── SDImageCache.h │ │ ├── SDWebImageCompat.h │ │ ├── SDWebImageDecoder.h │ │ ├── SDWebImageManager.h │ │ ├── UIButton+WebCache.h │ │ ├── SDWebImageDownloader.h │ │ ├── SDWebImageOperation.h │ │ ├── SDWebImagePrefetcher.h │ │ ├── UIImage+MultiFormat.h │ │ ├── UIImageView+WebCache.h │ │ ├── NSData+ImageContentType.h │ │ ├── UIView+WebCacheOperation.h │ │ ├── SDWebImageDownloaderOperation.h │ │ └── UIImageView+HighlightedWebCache.h │ │ └── SVPullToRefresh │ │ ├── SVPullToRefresh.h │ │ ├── UIScrollView+SVPullToRefresh.h │ │ └── UIScrollView+SVInfiniteScrolling.h ├── Target Support Files │ ├── FlatUIKit │ │ ├── FlatUIKit-prefix.pch │ │ ├── FlatUIKit-dummy.m │ │ └── FlatUIKit.xcconfig │ ├── SDWebImage │ │ ├── SDWebImage-prefix.pch │ │ ├── SDWebImage-dummy.m │ │ └── SDWebImage.xcconfig │ ├── 500px-iOS-api │ │ ├── 500px-iOS-api-prefix.pch │ │ ├── 500px-iOS-api-dummy.m │ │ └── 500px-iOS-api.xcconfig │ ├── MBProgressHUD │ │ ├── MBProgressHUD-prefix.pch │ │ ├── MBProgressHUD-dummy.m │ │ └── MBProgressHUD.xcconfig │ ├── SVPullToRefresh │ │ ├── SVPullToRefresh-prefix.pch │ │ ├── SVPullToRefresh-dummy.m │ │ └── SVPullToRefresh.xcconfig │ └── Pods │ │ ├── Pods-dummy.m │ │ ├── Pods.debug.xcconfig │ │ └── Pods.release.xcconfig ├── SVPullToRefresh │ ├── Demo │ │ ├── SVPullToRefreshDemo │ │ │ ├── en.lproj │ │ │ │ └── InfoPlist.strings │ │ │ ├── SVRootViewController.h │ │ │ ├── SVViewController.h │ │ │ ├── SVAppDelegate.h │ │ │ ├── main.m │ │ │ └── SVPullToRefreshDemo-Prefix.pch │ │ └── Default-568h@2x.png │ ├── SVPullToRefresh │ │ └── SVPullToRefresh.h │ └── LICENSE.txt ├── FlatUIKit │ ├── Resources │ │ ├── Lato-Bold.ttf │ │ ├── Lato-Italic.ttf │ │ ├── Lato-Light.ttf │ │ ├── Lato-Regular.ttf │ │ └── flat-ui-icons-regular.ttf │ └── Classes │ │ └── ios │ │ ├── UINavigationBar+FlatUI.h │ │ ├── UIToolbar+FlatUI.h │ │ ├── FUIPopoverBackgroundView.h │ │ ├── UIPopoverController+FlatUI.h │ │ ├── UIFont+FlatUI.h │ │ ├── UIStepper+FlatUI.h │ │ ├── UITabBar+FlatUI.h │ │ ├── FUICellBackgroundView.h │ │ ├── UIProgressView+FlatUI.h │ │ ├── FUITextField.h │ │ ├── UITableViewCell+FlatUI.h │ │ ├── UISlider+FlatUI.h │ │ ├── UIPopoverController+FlatUI.m │ │ ├── FUIButton.h │ │ ├── UITabBar+FlatUI.m │ │ ├── UIToolbar+FlatUI.m │ │ ├── FlatUIKit.h │ │ └── FUISwitch.h ├── 500px-iOS-api │ ├── PXAPI │ │ ├── PXAPI.h │ │ ├── ABOAuthCore │ │ │ ├── OAuth+Additions.h │ │ │ └── OAuthCore.h │ │ └── PXAPIHelper+Auth.h │ └── LICENSE ├── SDWebImage │ └── SDWebImage │ │ ├── UIImage+MultiFormat.h │ │ ├── SDWebImageOperation.h │ │ ├── UIImage+GIF.h │ │ ├── SDWebImageDecoder.h │ │ └── NSData+ImageContentType.h └── Manifest.lock ├── MomentsPhoto ├── snapshot │ ├── snapshot1.png │ ├── snapshot2.png │ ├── snapshot3.png │ ├── snapshot4.png │ └── snapshot5.png ├── zh-Hans.lproj │ ├── Localizable.strings │ ├── InfoPlist.strings │ └── Main.strings ├── Images.xcassets │ ├── Stars.imageset │ │ ├── Stars@2x.png │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ ├── AppIcon@2x.png │ │ ├── AppIcon@3x.png │ │ ├── AppIcon@3x-1.png │ │ ├── AppIcon@3x40.png │ │ ├── appIcon 29px@2x.png │ │ ├── appIcon 29px@2x-1.png │ │ ├── Rectangle 1 + Yellow.png │ │ ├── Rectangle 1 + Yellow-1.png │ │ ├── Rectangle 1 + Yellow-2.png │ │ ├── Rectangle 1 + Yellow@2x-1.png │ │ ├── Rectangle 1 + Yellow@2x-2.png │ │ └── Rectangle 1 + Yellow@2x-1-1.png │ ├── LaunchImage.launchimage │ │ ├── Group.png │ │ ├── Group-1.png │ │ ├── Group@2x.png │ │ ├── LauchImage@2x.png │ │ ├── LaunchImage@2x.png │ │ ├── LaunchImage HD 4_7.png │ │ ├── LaunchImage HD 5_5.png │ │ ├── LaunchImage Retina 4@2x.png │ │ └── LauchImage Retina HD 5_5.png │ ├── fbi_save_flat.imageset │ │ ├── fbi_save_flat.png │ │ ├── fbi_save_flat@2x.png │ │ └── Contents.json │ ├── fbi_share.imageset │ │ ├── Group + Rectangle 1.png │ │ ├── Group + Rectangle 1@2x.png │ │ ├── Group + Rectangle 1@3x.png │ │ └── Contents.json │ └── fbi_topics_flat.imageset │ │ ├── fbi_topics_flat@2x.png │ │ └── Contents.json ├── Controller │ ├── HooViewController.h │ ├── HooMainCollectionViewController.h │ ├── HooPhotoViewController.h │ ├── HooPhotoInfoViewController.h │ ├── HooCategoryListViewController.h │ └── HooFeatureListViewController.h ├── AppDelegate.h ├── View │ ├── HooCategoryCell.h │ └── HooPhotoCell.h ├── main.m ├── Model │ ├── HooPhotoStreamCategory.m │ ├── HooPhotoStreamCategoryList.h │ ├── HooPhotoStreamCategory.h │ ├── HooPhoto.h │ ├── HooPhotoStreamPage.h │ └── HooPhotoStream.h └── MomentsPhoto-Prefix.pch ├── lib ├── ShareSDK │ ├── ShareSDK.framework │ │ ├── ShareSDK │ │ ├── Info.plist │ │ ├── en.lproj │ │ │ └── InfoPlist.strings │ │ └── Headers │ │ │ └── SSLogDef.h │ ├── Core │ │ ├── AGCommon.framework │ │ │ ├── Headers │ │ │ │ ├── AGCommon.h │ │ │ │ ├── CMPinyinFirstLetter.h │ │ │ │ ├── UINavigationBar+Common.h │ │ │ │ ├── NSMutableURLRequest+Common.h │ │ │ │ ├── UIColor+Common.h │ │ │ │ ├── CMPageContentView.h │ │ │ │ ├── CMRandom.h │ │ │ │ ├── CMOpenUDID.h │ │ │ │ ├── CMPinyin.h │ │ │ │ ├── CMCacheManager.h │ │ │ │ ├── CMHTableViewItem.h │ │ │ │ ├── CMImageView.h │ │ │ │ ├── CMQuiltItemView.h │ │ │ │ └── CMDeviceInfo.h │ │ │ ├── AGCommon │ │ │ ├── Info.plist │ │ │ └── en.lproj │ │ │ │ └── InfoPlist.strings │ │ ├── Resource.bundle │ │ │ ├── AuthView │ │ │ │ ├── PowerBy.png │ │ │ │ ├── PowerBy@2x.png │ │ │ │ ├── ToolbarBG.png │ │ │ │ ├── CloseButton.png │ │ │ │ ├── NavigationBG.png │ │ │ │ ├── ToolbarBG@2x.png │ │ │ │ ├── CheckBoxUpSkin.png │ │ │ │ ├── CloseButton@2x.png │ │ │ │ ├── NavigationBG@2x.png │ │ │ │ ├── CheckBoxUpSkin@2x.png │ │ │ │ ├── CheckBoxSelectedSkin.png │ │ │ │ └── CheckBoxSelectedSkin@2x.png │ │ │ ├── Icon │ │ │ │ ├── sns_icon_1.png │ │ │ │ ├── sns_icon_10.png │ │ │ │ ├── sns_icon_11.png │ │ │ │ ├── sns_icon_12.png │ │ │ │ ├── sns_icon_13.png │ │ │ │ ├── sns_icon_14.png │ │ │ │ ├── sns_icon_15.png │ │ │ │ ├── sns_icon_16.png │ │ │ │ ├── sns_icon_17.png │ │ │ │ ├── sns_icon_18.png │ │ │ │ ├── sns_icon_19.png │ │ │ │ ├── sns_icon_1_s.png │ │ │ │ ├── sns_icon_2.png │ │ │ │ ├── sns_icon_20.png │ │ │ │ ├── sns_icon_21.png │ │ │ │ ├── sns_icon_22.png │ │ │ │ ├── sns_icon_23.png │ │ │ │ ├── sns_icon_24.png │ │ │ │ ├── sns_icon_25.png │ │ │ │ ├── sns_icon_26.png │ │ │ │ ├── sns_icon_27.png │ │ │ │ ├── sns_icon_28.png │ │ │ │ ├── sns_icon_2_s.png │ │ │ │ ├── sns_icon_30.png │ │ │ │ ├── sns_icon_34.png │ │ │ │ ├── sns_icon_35.png │ │ │ │ ├── sns_icon_36.png │ │ │ │ ├── sns_icon_37.png │ │ │ │ ├── sns_icon_38.png │ │ │ │ ├── sns_icon_39.png │ │ │ │ ├── sns_icon_41.png │ │ │ │ ├── sns_icon_42.png │ │ │ │ ├── sns_icon_43.png │ │ │ │ ├── sns_icon_44.png │ │ │ │ ├── sns_icon_45.png │ │ │ │ ├── sns_icon_5.png │ │ │ │ ├── sns_icon_5_s.png │ │ │ │ ├── sns_icon_6.png │ │ │ │ ├── sns_icon_6_s.png │ │ │ │ ├── sns_icon_7.png │ │ │ │ ├── sns_icon_7_s.png │ │ │ │ ├── sns_icon_8.png │ │ │ │ ├── sns_icon_8_s.png │ │ │ │ ├── sns_icon_9.png │ │ │ │ ├── sns_icon_10@2x.png │ │ │ │ ├── sns_icon_10_s.png │ │ │ │ ├── sns_icon_11@2x.png │ │ │ │ ├── sns_icon_11_s.png │ │ │ │ ├── sns_icon_12@2x.png │ │ │ │ ├── sns_icon_13@2x.png │ │ │ │ ├── sns_icon_14@2x.png │ │ │ │ ├── sns_icon_15@2x.png │ │ │ │ ├── sns_icon_16@2x.png │ │ │ │ ├── sns_icon_17@2x.png │ │ │ │ ├── sns_icon_18@2x.png │ │ │ │ ├── sns_icon_19@2x.png │ │ │ │ ├── sns_icon_1@2x.png │ │ │ │ ├── sns_icon_20@2x.png │ │ │ │ ├── sns_icon_21@2x.png │ │ │ │ ├── sns_icon_22@2x.png │ │ │ │ ├── sns_icon_23@2x.png │ │ │ │ ├── sns_icon_24@2x.png │ │ │ │ ├── sns_icon_25@2x.png │ │ │ │ ├── sns_icon_26@2x.png │ │ │ │ ├── sns_icon_27@2x.png │ │ │ │ ├── sns_icon_28@2x.png │ │ │ │ ├── sns_icon_28_s.png │ │ │ │ ├── sns_icon_2@2x.png │ │ │ │ ├── sns_icon_30@2x.png │ │ │ │ ├── sns_icon_34@2x.png │ │ │ │ ├── sns_icon_35@2x.png │ │ │ │ ├── sns_icon_36@2x.png │ │ │ │ ├── sns_icon_37@2x.png │ │ │ │ ├── sns_icon_38@2x.png │ │ │ │ ├── sns_icon_39@2x.png │ │ │ │ ├── sns_icon_41@2x.png │ │ │ │ ├── sns_icon_42@2x.png │ │ │ │ ├── sns_icon_43@2x.png │ │ │ │ ├── sns_icon_44@2x.png │ │ │ │ ├── sns_icon_45@2x.png │ │ │ │ ├── sns_icon_5@2x.png │ │ │ │ ├── sns_icon_6@2x.png │ │ │ │ ├── sns_icon_7@2x.png │ │ │ │ ├── sns_icon_8@2x.png │ │ │ │ ├── sns_icon_9@2x.png │ │ │ │ ├── sns_icon_10_s@2x.png │ │ │ │ ├── sns_icon_11_s@2x.png │ │ │ │ ├── sns_icon_1_s@2x.png │ │ │ │ ├── sns_icon_28_s@2x.png │ │ │ │ ├── sns_icon_2_s@2x.png │ │ │ │ ├── sns_icon_5_s@2x.png │ │ │ │ ├── sns_icon_6_s@2x.png │ │ │ │ ├── sns_icon_7_s@2x.png │ │ │ │ └── sns_icon_8_s@2x.png │ │ │ ├── Icon_7 │ │ │ │ ├── sns_icon_1.png │ │ │ │ ├── sns_icon_2.png │ │ │ │ ├── sns_icon_5.png │ │ │ │ ├── sns_icon_6.png │ │ │ │ ├── sns_icon_7.png │ │ │ │ ├── sns_icon_8.png │ │ │ │ ├── sns_icon_9.png │ │ │ │ ├── sns_icon_10.png │ │ │ │ ├── sns_icon_11.png │ │ │ │ ├── sns_icon_12.png │ │ │ │ ├── sns_icon_13.png │ │ │ │ ├── sns_icon_14.png │ │ │ │ ├── sns_icon_15.png │ │ │ │ ├── sns_icon_16.png │ │ │ │ ├── sns_icon_17.png │ │ │ │ ├── sns_icon_18.png │ │ │ │ ├── sns_icon_19.png │ │ │ │ ├── sns_icon_20.png │ │ │ │ ├── sns_icon_21.png │ │ │ │ ├── sns_icon_22.png │ │ │ │ ├── sns_icon_23.png │ │ │ │ ├── sns_icon_24.png │ │ │ │ ├── sns_icon_25.png │ │ │ │ ├── sns_icon_26.png │ │ │ │ ├── sns_icon_27.png │ │ │ │ ├── sns_icon_28.png │ │ │ │ ├── sns_icon_30.png │ │ │ │ ├── sns_icon_34.png │ │ │ │ ├── sns_icon_35.png │ │ │ │ ├── sns_icon_36.png │ │ │ │ ├── sns_icon_37.png │ │ │ │ ├── sns_icon_38.png │ │ │ │ ├── sns_icon_39.png │ │ │ │ ├── sns_icon_41.png │ │ │ │ ├── sns_icon_42.png │ │ │ │ ├── sns_icon_43.png │ │ │ │ ├── sns_icon_44.png │ │ │ │ ├── sns_icon_45.png │ │ │ │ ├── sns_icon_10@2x.png │ │ │ │ ├── sns_icon_11@2x.png │ │ │ │ ├── sns_icon_12@2x.png │ │ │ │ ├── sns_icon_13@2x.png │ │ │ │ ├── sns_icon_14@2x.png │ │ │ │ ├── sns_icon_15@2x.png │ │ │ │ ├── sns_icon_16@2x.png │ │ │ │ ├── sns_icon_17@2x.png │ │ │ │ ├── sns_icon_18@2x.png │ │ │ │ ├── sns_icon_19@2x.png │ │ │ │ ├── sns_icon_1@2x.png │ │ │ │ ├── sns_icon_20@2x.png │ │ │ │ ├── sns_icon_21@2x.png │ │ │ │ ├── sns_icon_22@2x.png │ │ │ │ ├── sns_icon_23@2x.png │ │ │ │ ├── sns_icon_24@2x.png │ │ │ │ ├── sns_icon_25@2x.png │ │ │ │ ├── sns_icon_26@2x.png │ │ │ │ ├── sns_icon_27@2x.png │ │ │ │ ├── sns_icon_28@2x.png │ │ │ │ ├── sns_icon_2@2x.png │ │ │ │ ├── sns_icon_30@2x.png │ │ │ │ ├── sns_icon_34@2x.png │ │ │ │ ├── sns_icon_35@2x.png │ │ │ │ ├── sns_icon_36@2x.png │ │ │ │ ├── sns_icon_37@2x.png │ │ │ │ ├── sns_icon_38@2x.png │ │ │ │ ├── sns_icon_39@2x.png │ │ │ │ ├── sns_icon_41@2x.png │ │ │ │ ├── sns_icon_42@2x.png │ │ │ │ ├── sns_icon_43@2x.png │ │ │ │ ├── sns_icon_44@2x.png │ │ │ │ ├── sns_icon_45@2x.png │ │ │ │ ├── sns_icon_5@2x.png │ │ │ │ ├── sns_icon_6@2x.png │ │ │ │ ├── sns_icon_7@2x.png │ │ │ │ ├── sns_icon_8@2x.png │ │ │ │ └── sns_icon_9@2x.png │ │ │ ├── ActionSheet │ │ │ │ ├── ActionSheetBG.png │ │ │ │ ├── ActionSheetBG@2x.png │ │ │ │ ├── action-red-button.png │ │ │ │ ├── action-black-button.png │ │ │ │ ├── action-gray-button.png │ │ │ │ ├── action-red-button@2x.png │ │ │ │ ├── action-sheet-panel.png │ │ │ │ ├── action-black-button@2x.png │ │ │ │ ├── action-gray-button@2x.png │ │ │ │ ├── action-sheet-panel@2x.png │ │ │ │ ├── ActionSheetCancelButtonBG.png │ │ │ │ ├── action-gray-button-selected.png │ │ │ │ ├── action-red-button-selected.png │ │ │ │ ├── ActionSheetCancelButtonBG@2x.png │ │ │ │ ├── action-black-button-selected.png │ │ │ │ ├── action-gray-button-selected@2x.png │ │ │ │ ├── action-red-button-selected@2x.png │ │ │ │ └── action-black-button-selected@2x.png │ │ │ ├── Common │ │ │ │ ├── AuthViewCloseButton.png │ │ │ │ ├── NavigationButtonBG.png │ │ │ │ ├── AuthViewCloseButton@2x.png │ │ │ │ └── NavigationButtonBG@2x.png │ │ │ └── Common_Landscape │ │ │ │ ├── NavigationButtonBG.png │ │ │ │ └── NavigationButtonBG@2x.png │ │ └── ShareSDKCoreService.framework │ │ │ ├── Info.plist │ │ │ ├── ShareSDKCoreService │ │ │ ├── en.lproj │ │ │ └── InfoPlist.strings │ │ │ └── Headers │ │ │ ├── SSCKeyDef.h │ │ │ ├── SSCNotificationDef.h │ │ │ └── ISSCOpenApp.h │ ├── Extend │ │ ├── WeChatSDK │ │ │ └── libWeChatSDK.a │ │ ├── SinaWeiboSDK │ │ │ ├── libWeiboSDK.a │ │ │ └── WeiboSDK.bundle │ │ │ │ ├── images │ │ │ │ ├── close.png │ │ │ │ ├── close@2x.png │ │ │ │ ├── empty_failed.png │ │ │ │ ├── empty_failed@2x.png │ │ │ │ ├── sdk_weibo_logo.png │ │ │ │ ├── sdk_weibo_logo@2x.png │ │ │ │ ├── sdk_weibo_logo@3x.png │ │ │ │ ├── common_button_white.png │ │ │ │ ├── common_button_white@2x.png │ │ │ │ ├── navigationbar_background.png │ │ │ │ ├── compose_toolbar_background.png │ │ │ │ ├── navigationbar_background@2x.png │ │ │ │ ├── compose_toolbar_background@2x.png │ │ │ │ ├── navigationbar_background_os7.png │ │ │ │ ├── common_button_white_highlighted.png │ │ │ │ ├── navigationbar_background_os7@2x.png │ │ │ │ ├── common_button_white_highlighted@2x.png │ │ │ │ ├── compose_keyboardbutton_background.png │ │ │ │ ├── compose_keyboardbutton_background@2x.png │ │ │ │ ├── timeline_relationship_icon_attention.png │ │ │ │ ├── timeline_relationship_icon_addattention.png │ │ │ │ ├── timeline_relationship_icon_attention@2x.png │ │ │ │ ├── timeline_relationship_icon_attention@3x.png │ │ │ │ ├── timeline_relationship_icon_addattention@2x.png │ │ │ │ └── timeline_relationship_icon_addattention@3x.png │ │ │ │ └── others │ │ │ │ └── mfp.cer │ │ ├── TencentWeiboSDK │ │ │ └── libTCWeiboSDK.a │ │ └── QQConnectSDK │ │ │ ├── TencentOpenAPI.framework │ │ │ └── TencentOpenAPI │ │ │ └── TencentOpenApi_IOS_Bundle.bundle │ │ │ ├── error.png │ │ │ ├── Info.plist │ │ │ ├── qqicon.png │ │ │ └── success.png │ ├── UI │ │ ├── ShareSDKFlatShareViewUI.bundle │ │ │ ├── line.gif │ │ │ ├── line@2x.gif │ │ │ ├── zh-Hans.lproj │ │ │ │ └── ShareSDKFlatShareViewUI.strings │ │ │ └── en.lproj │ │ │ │ └── ShareSDKFlatShareViewUI.strings │ │ ├── ShareSDKFlatShareViewUI.framework │ │ │ ├── Info.plist │ │ │ ├── ShareSDKFlatShareViewUI │ │ │ └── en.lproj │ │ │ │ └── InfoPlist.strings │ │ ├── ShareSDKShareActionSheet.framework │ │ │ ├── Info.plist │ │ │ ├── ShareSDKShareActionSheet │ │ │ └── en.lproj │ │ │ │ └── InfoPlist.strings │ │ ├── ShareSDKiPadDefaultShareViewUI.framework │ │ │ ├── Info.plist │ │ │ ├── en.lproj │ │ │ │ └── InfoPlist.strings │ │ │ └── ShareSDKiPadDefaultShareViewUI │ │ ├── ShareSDKiPadSimpleShareViewUI.framework │ │ │ ├── Info.plist │ │ │ ├── en.lproj │ │ │ │ └── InfoPlist.strings │ │ │ └── ShareSDKiPadSimpleShareViewUI │ │ ├── ShareSDKiPadDefaultShareViewUI.bundle │ │ │ ├── PublishEx_iPad │ │ │ │ ├── Pin.png │ │ │ │ ├── Vip.png │ │ │ │ ├── ImageBG.png │ │ │ │ ├── Pin@2x.png │ │ │ │ ├── SelIcon.png │ │ │ │ ├── Vip@2x.png │ │ │ │ ├── Grassroot.png │ │ │ │ ├── MaleIcon.png │ │ │ │ ├── ToolbarBG.png │ │ │ │ ├── FemaleIcon.png │ │ │ │ ├── Grassroot@2x.png │ │ │ │ ├── ImageBG@2x.png │ │ │ │ ├── MaleIcon@2x.png │ │ │ │ ├── SelIcon@2x.png │ │ │ │ ├── SepeatorLine.png │ │ │ │ ├── ToolbarBG@2x.png │ │ │ │ ├── ClearButtonBG.png │ │ │ │ ├── EnterpriseVip.png │ │ │ │ ├── FemaleIcon@2x.png │ │ │ │ ├── ToolbarAtIcon.png │ │ │ │ ├── ToolbarQQIcon.png │ │ │ │ ├── defaultAvatar.png │ │ │ │ ├── ClearButtonBG@2x.png │ │ │ │ ├── ClearButtonIcon.png │ │ │ │ ├── EnterpriseVip@2x.png │ │ │ │ ├── SepeatorLine@2x.png │ │ │ │ ├── ToolbarAtIcon@2x.png │ │ │ │ ├── ToolbarQQIcon@2x.png │ │ │ │ ├── ToolbarSharpIcon.png │ │ │ │ ├── defaultAvatar@2x.png │ │ │ │ ├── ClearButtonIcon@2x.png │ │ │ │ ├── ToolbarSharpIcon@2x.png │ │ │ │ ├── ToolbarWeixinSessionIcon.png │ │ │ │ ├── ToolbarWeixinSessionIcon@2x.png │ │ │ │ ├── ToolbarWeixinTimelineIcon.png │ │ │ │ └── ToolbarWeixinTimelineIcon@2x.png │ │ │ └── RefreshHeader │ │ │ │ ├── BlueArrow.png │ │ │ │ └── BlueArrow@2x.png │ │ └── ShareSDKiPadSimpleShareViewUI.bundle │ │ │ └── Publish_iPad │ │ │ ├── AGShareBG.png │ │ │ ├── AGSharePin.png │ │ │ ├── AGShareBG@2x.png │ │ │ ├── AGShareImageBG.png │ │ │ ├── AGSharePin@2x.png │ │ │ ├── AGShareImageBG@2x.png │ │ │ ├── AGShareCancelButton.png │ │ │ ├── AGShareSubmitButton.png │ │ │ ├── AGShareCancelButton@2x.png │ │ │ └── AGShareSubmitButton@2x.png │ └── Connection │ │ ├── QQConnection.framework │ │ ├── Info.plist │ │ ├── QQConnection │ │ └── en.lproj │ │ │ └── InfoPlist.strings │ │ ├── CopyConnection.framework │ │ ├── Info.plist │ │ ├── CopyConnection │ │ └── en.lproj │ │ │ └── InfoPlist.strings │ │ ├── MailConnection.framework │ │ ├── Info.plist │ │ ├── MailConnection │ │ └── en.lproj │ │ │ └── InfoPlist.strings │ │ ├── QZoneConnection.framework │ │ ├── Info.plist │ │ ├── QZoneConnection │ │ ├── en.lproj │ │ │ └── InfoPlist.strings │ │ └── Headers │ │ │ └── SSQZoneErrorInfo.h │ │ ├── SMSConnection.framework │ │ ├── Info.plist │ │ ├── SMSConnection │ │ └── en.lproj │ │ │ └── InfoPlist.strings │ │ ├── WeChatConnection.framework │ │ ├── Info.plist │ │ ├── WeChatConnection │ │ ├── en.lproj │ │ │ └── InfoPlist.strings │ │ └── Headers │ │ │ ├── SSWeChatErrorInfo.h │ │ │ └── SSWeChatTypeDef.h │ │ ├── SinaWeiboConnection.framework │ │ ├── Info.plist │ │ ├── SinaWeiboConnection │ │ └── en.lproj │ │ │ └── InfoPlist.strings │ │ └── TencentWeiboConnection.framework │ │ ├── Info.plist │ │ ├── TencentWeiboConnection │ │ └── en.lproj │ │ └── InfoPlist.strings └── DescriptionBuilder │ └── DescriptionBuilder.h ├── MomentsPhoto.xcworkspace ├── xcuserdata │ └── hujh.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── contents.xcworkspacedata ├── MomentsPhoto.xcodeproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── hujh.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── hujh.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── Podfile ├── README.md ├── Podfile.lock └── MomentsPhotoTests ├── Info.plist └── MomentsPhotoTests.m /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/.DS_Store -------------------------------------------------------------------------------- /Pods/Headers/Private/500px-iOS-api/PXAPI.h: -------------------------------------------------------------------------------- 1 | ../../../500px-iOS-api/PXAPI/PXAPI.h -------------------------------------------------------------------------------- /Pods/Headers/Public/500px-iOS-api/PXAPI.h: -------------------------------------------------------------------------------- 1 | ../../../500px-iOS-api/PXAPI/PXAPI.h -------------------------------------------------------------------------------- /Pods/Headers/Public/FlatUIKit/FUIButton.h: -------------------------------------------------------------------------------- 1 | ../../../FlatUIKit/Classes/ios/FUIButton.h -------------------------------------------------------------------------------- /Pods/Headers/Public/FlatUIKit/FUISwitch.h: -------------------------------------------------------------------------------- 1 | ../../../FlatUIKit/Classes/ios/FUISwitch.h -------------------------------------------------------------------------------- /Pods/Headers/Public/FlatUIKit/FlatUIKit.h: -------------------------------------------------------------------------------- 1 | ../../../FlatUIKit/Classes/ios/FlatUIKit.h -------------------------------------------------------------------------------- /Pods/Headers/Private/500px-iOS-api/PXRequest.h: -------------------------------------------------------------------------------- 1 | ../../../500px-iOS-api/PXAPI/PXRequest.h -------------------------------------------------------------------------------- /Pods/Headers/Private/FlatUIKit/FUIButton.h: -------------------------------------------------------------------------------- 1 | ../../../FlatUIKit/Classes/ios/FUIButton.h -------------------------------------------------------------------------------- /Pods/Headers/Private/FlatUIKit/FUISwitch.h: -------------------------------------------------------------------------------- 1 | ../../../FlatUIKit/Classes/ios/FUISwitch.h -------------------------------------------------------------------------------- /Pods/Headers/Private/FlatUIKit/FlatUIKit.h: -------------------------------------------------------------------------------- 1 | ../../../FlatUIKit/Classes/ios/FlatUIKit.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MBProgressHUD/MBProgressHUD.h: -------------------------------------------------------------------------------- 1 | ../../../MBProgressHUD/MBProgressHUD.h -------------------------------------------------------------------------------- /Pods/Headers/Public/500px-iOS-api/PXRequest.h: -------------------------------------------------------------------------------- 1 | ../../../500px-iOS-api/PXAPI/PXRequest.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MBProgressHUD/MBProgressHUD.h: -------------------------------------------------------------------------------- 1 | ../../../MBProgressHUD/MBProgressHUD.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/UIImage+GIF.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImage+GIF.h -------------------------------------------------------------------------------- /Pods/Headers/Private/500px-iOS-api/PXAPIHelper.h: -------------------------------------------------------------------------------- 1 | ../../../500px-iOS-api/PXAPI/PXAPIHelper.h -------------------------------------------------------------------------------- /Pods/Headers/Private/FlatUIKit/FUIAlertView.h: -------------------------------------------------------------------------------- 1 | ../../../FlatUIKit/Classes/ios/FUIAlertView.h -------------------------------------------------------------------------------- /Pods/Headers/Private/FlatUIKit/FUITextField.h: -------------------------------------------------------------------------------- 1 | ../../../FlatUIKit/Classes/ios/FUITextField.h -------------------------------------------------------------------------------- /Pods/Headers/Private/FlatUIKit/UIFont+FlatUI.h: -------------------------------------------------------------------------------- 1 | ../../../FlatUIKit/Classes/ios/UIFont+FlatUI.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDImageCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDImageCache.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/UIImage+GIF.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImage+GIF.h -------------------------------------------------------------------------------- /Pods/Headers/Public/500px-iOS-api/PXAPIHelper.h: -------------------------------------------------------------------------------- 1 | ../../../500px-iOS-api/PXAPI/PXAPIHelper.h -------------------------------------------------------------------------------- /Pods/Headers/Public/FlatUIKit/FUIAlertView.h: -------------------------------------------------------------------------------- 1 | ../../../FlatUIKit/Classes/ios/FUIAlertView.h -------------------------------------------------------------------------------- /Pods/Headers/Public/FlatUIKit/FUITextField.h: -------------------------------------------------------------------------------- 1 | ../../../FlatUIKit/Classes/ios/FUITextField.h -------------------------------------------------------------------------------- /Pods/Headers/Public/FlatUIKit/NSString+Icons.h: -------------------------------------------------------------------------------- 1 | ../../../FlatUIKit/Classes/ios/NSString+Icons.h -------------------------------------------------------------------------------- /Pods/Headers/Public/FlatUIKit/UIColor+FlatUI.h: -------------------------------------------------------------------------------- 1 | ../../../FlatUIKit/Classes/ios/UIColor+FlatUI.h -------------------------------------------------------------------------------- /Pods/Headers/Public/FlatUIKit/UIFont+FlatUI.h: -------------------------------------------------------------------------------- 1 | ../../../FlatUIKit/Classes/ios/UIFont+FlatUI.h -------------------------------------------------------------------------------- /Pods/Headers/Public/FlatUIKit/UIImage+FlatUI.h: -------------------------------------------------------------------------------- 1 | ../../../FlatUIKit/Classes/ios/UIImage+FlatUI.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDImageCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDImageCache.h -------------------------------------------------------------------------------- /Pods/Headers/Private/500px-iOS-api/OAuthCore.h: -------------------------------------------------------------------------------- 1 | ../../../500px-iOS-api/PXAPI/ABOAuthCore/OAuthCore.h -------------------------------------------------------------------------------- /Pods/Headers/Private/FlatUIKit/NSString+Icons.h: -------------------------------------------------------------------------------- 1 | ../../../FlatUIKit/Classes/ios/NSString+Icons.h -------------------------------------------------------------------------------- /Pods/Headers/Private/FlatUIKit/UIColor+FlatUI.h: -------------------------------------------------------------------------------- 1 | ../../../FlatUIKit/Classes/ios/UIColor+FlatUI.h -------------------------------------------------------------------------------- /Pods/Headers/Private/FlatUIKit/UIImage+FlatUI.h: -------------------------------------------------------------------------------- 1 | ../../../FlatUIKit/Classes/ios/UIImage+FlatUI.h -------------------------------------------------------------------------------- /Pods/Headers/Private/FlatUIKit/UISlider+FlatUI.h: -------------------------------------------------------------------------------- 1 | ../../../FlatUIKit/Classes/ios/UISlider+FlatUI.h -------------------------------------------------------------------------------- /Pods/Headers/Private/FlatUIKit/UIStepper+FlatUI.h: -------------------------------------------------------------------------------- 1 | ../../../FlatUIKit/Classes/ios/UIStepper+FlatUI.h -------------------------------------------------------------------------------- /Pods/Headers/Private/FlatUIKit/UITabBar+FlatUI.h: -------------------------------------------------------------------------------- 1 | ../../../FlatUIKit/Classes/ios/UITabBar+FlatUI.h -------------------------------------------------------------------------------- /Pods/Headers/Private/FlatUIKit/UIToolbar+FlatUI.h: -------------------------------------------------------------------------------- 1 | ../../../FlatUIKit/Classes/ios/UIToolbar+FlatUI.h -------------------------------------------------------------------------------- /Pods/Headers/Public/500px-iOS-api/OAuthCore.h: -------------------------------------------------------------------------------- 1 | ../../../500px-iOS-api/PXAPI/ABOAuthCore/OAuthCore.h -------------------------------------------------------------------------------- /Pods/Headers/Public/FlatUIKit/UISlider+FlatUI.h: -------------------------------------------------------------------------------- 1 | ../../../FlatUIKit/Classes/ios/UISlider+FlatUI.h -------------------------------------------------------------------------------- /Pods/Headers/Public/FlatUIKit/UIStepper+FlatUI.h: -------------------------------------------------------------------------------- 1 | ../../../FlatUIKit/Classes/ios/UIStepper+FlatUI.h -------------------------------------------------------------------------------- /Pods/Headers/Public/FlatUIKit/UITabBar+FlatUI.h: -------------------------------------------------------------------------------- 1 | ../../../FlatUIKit/Classes/ios/UITabBar+FlatUI.h -------------------------------------------------------------------------------- /Pods/Headers/Public/FlatUIKit/UIToolbar+FlatUI.h: -------------------------------------------------------------------------------- 1 | ../../../FlatUIKit/Classes/ios/UIToolbar+FlatUI.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDWebImageCompat.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageCompat.h -------------------------------------------------------------------------------- /Pods/Headers/Private/500px-iOS-api/PXAPIHelper+Auth.h: -------------------------------------------------------------------------------- 1 | ../../../500px-iOS-api/PXAPI/PXAPIHelper+Auth.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDWebImageCompat.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageCompat.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDWebImageDecoder.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageDecoder.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDWebImageManager.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageManager.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/UIButton+WebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIButton+WebCache.h -------------------------------------------------------------------------------- /Pods/Headers/Public/500px-iOS-api/PXAPIHelper+Auth.h: -------------------------------------------------------------------------------- 1 | ../../../500px-iOS-api/PXAPI/PXAPIHelper+Auth.h -------------------------------------------------------------------------------- /Pods/Headers/Public/500px-iOS-api/PXRequest+Creation.h: -------------------------------------------------------------------------------- 1 | ../../../500px-iOS-api/PXAPI/PXRequest+Creation.h -------------------------------------------------------------------------------- /Pods/Headers/Public/FlatUIKit/FUISegmentedControl.h: -------------------------------------------------------------------------------- 1 | ../../../FlatUIKit/Classes/ios/FUISegmentedControl.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDWebImageDecoder.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageDecoder.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDWebImageManager.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageManager.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/UIButton+WebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIButton+WebCache.h -------------------------------------------------------------------------------- /Pods/Headers/Private/500px-iOS-api/NSData+Base64.h: -------------------------------------------------------------------------------- 1 | ../../../500px-iOS-api/PXAPI/ABOAuthCore/NSData+Base64.h -------------------------------------------------------------------------------- /Pods/Headers/Private/500px-iOS-api/PXRequest+Creation.h: -------------------------------------------------------------------------------- 1 | ../../../500px-iOS-api/PXAPI/PXRequest+Creation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/FlatUIKit/FUICellBackgroundView.h: -------------------------------------------------------------------------------- 1 | ../../../FlatUIKit/Classes/ios/FUICellBackgroundView.h -------------------------------------------------------------------------------- /Pods/Headers/Private/FlatUIKit/FUISegmentedControl.h: -------------------------------------------------------------------------------- 1 | ../../../FlatUIKit/Classes/ios/FUISegmentedControl.h -------------------------------------------------------------------------------- /Pods/Headers/Private/FlatUIKit/UIProgressView+FlatUI.h: -------------------------------------------------------------------------------- 1 | ../../../FlatUIKit/Classes/ios/UIProgressView+FlatUI.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDWebImageDownloader.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageDownloader.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDWebImageOperation.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageOperation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDWebImagePrefetcher.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImagePrefetcher.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/UIImage+MultiFormat.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImage+MultiFormat.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/UIImageView+WebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImageView+WebCache.h -------------------------------------------------------------------------------- /Pods/Headers/Public/500px-iOS-api/NSData+Base64.h: -------------------------------------------------------------------------------- 1 | ../../../500px-iOS-api/PXAPI/ABOAuthCore/NSData+Base64.h -------------------------------------------------------------------------------- /Pods/Headers/Public/FlatUIKit/FUICellBackgroundView.h: -------------------------------------------------------------------------------- 1 | ../../../FlatUIKit/Classes/ios/FUICellBackgroundView.h -------------------------------------------------------------------------------- /Pods/Headers/Public/FlatUIKit/UIProgressView+FlatUI.h: -------------------------------------------------------------------------------- 1 | ../../../FlatUIKit/Classes/ios/UIProgressView+FlatUI.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDWebImageDownloader.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageDownloader.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDWebImageOperation.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageOperation.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDWebImagePrefetcher.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImagePrefetcher.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/UIImage+MultiFormat.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImage+MultiFormat.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/UIImageView+WebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImageView+WebCache.h -------------------------------------------------------------------------------- /Pods/Headers/Private/500px-iOS-api/OAuth+Additions.h: -------------------------------------------------------------------------------- 1 | ../../../500px-iOS-api/PXAPI/ABOAuthCore/OAuth+Additions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/FlatUIKit/UIBarButtonItem+FlatUI.h: -------------------------------------------------------------------------------- 1 | ../../../FlatUIKit/Classes/ios/UIBarButtonItem+FlatUI.h -------------------------------------------------------------------------------- /Pods/Headers/Private/FlatUIKit/UINavigationBar+FlatUI.h: -------------------------------------------------------------------------------- 1 | ../../../FlatUIKit/Classes/ios/UINavigationBar+FlatUI.h -------------------------------------------------------------------------------- /Pods/Headers/Private/FlatUIKit/UITableViewCell+FlatUI.h: -------------------------------------------------------------------------------- 1 | ../../../FlatUIKit/Classes/ios/UITableViewCell+FlatUI.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/NSData+ImageContentType.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/NSData+ImageContentType.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SVPullToRefresh/SVPullToRefresh.h: -------------------------------------------------------------------------------- 1 | ../../../SVPullToRefresh/SVPullToRefresh/SVPullToRefresh.h -------------------------------------------------------------------------------- /Pods/Headers/Public/500px-iOS-api/OAuth+Additions.h: -------------------------------------------------------------------------------- 1 | ../../../500px-iOS-api/PXAPI/ABOAuthCore/OAuth+Additions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/FlatUIKit/FUIPopoverBackgroundView.h: -------------------------------------------------------------------------------- 1 | ../../../FlatUIKit/Classes/ios/FUIPopoverBackgroundView.h -------------------------------------------------------------------------------- /Pods/Headers/Public/FlatUIKit/UIBarButtonItem+FlatUI.h: -------------------------------------------------------------------------------- 1 | ../../../FlatUIKit/Classes/ios/UIBarButtonItem+FlatUI.h -------------------------------------------------------------------------------- /Pods/Headers/Public/FlatUIKit/UINavigationBar+FlatUI.h: -------------------------------------------------------------------------------- 1 | ../../../FlatUIKit/Classes/ios/UINavigationBar+FlatUI.h -------------------------------------------------------------------------------- /Pods/Headers/Public/FlatUIKit/UITableViewCell+FlatUI.h: -------------------------------------------------------------------------------- 1 | ../../../FlatUIKit/Classes/ios/UITableViewCell+FlatUI.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/NSData+ImageContentType.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/NSData+ImageContentType.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SVPullToRefresh/SVPullToRefresh.h: -------------------------------------------------------------------------------- 1 | ../../../SVPullToRefresh/SVPullToRefresh/SVPullToRefresh.h -------------------------------------------------------------------------------- /Pods/Headers/Private/FlatUIKit/FUIPopoverBackgroundView.h: -------------------------------------------------------------------------------- 1 | ../../../FlatUIKit/Classes/ios/FUIPopoverBackgroundView.h -------------------------------------------------------------------------------- /Pods/Headers/Private/FlatUIKit/UIPopoverController+FlatUI.h: -------------------------------------------------------------------------------- 1 | ../../../FlatUIKit/Classes/ios/UIPopoverController+FlatUI.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/UIView+WebCacheOperation.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIView+WebCacheOperation.h -------------------------------------------------------------------------------- /Pods/Headers/Public/FlatUIKit/UIPopoverController+FlatUI.h: -------------------------------------------------------------------------------- 1 | ../../../FlatUIKit/Classes/ios/UIPopoverController+FlatUI.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/UIView+WebCacheOperation.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIView+WebCacheOperation.h -------------------------------------------------------------------------------- /Pods/Target Support Files/FlatUIKit/FlatUIKit-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /MomentsPhoto/snapshot/snapshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/MomentsPhoto/snapshot/snapshot1.png -------------------------------------------------------------------------------- /MomentsPhoto/snapshot/snapshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/MomentsPhoto/snapshot/snapshot2.png -------------------------------------------------------------------------------- /MomentsPhoto/snapshot/snapshot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/MomentsPhoto/snapshot/snapshot3.png -------------------------------------------------------------------------------- /MomentsPhoto/snapshot/snapshot4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/MomentsPhoto/snapshot/snapshot4.png -------------------------------------------------------------------------------- /MomentsPhoto/snapshot/snapshot5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/MomentsPhoto/snapshot/snapshot5.png -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDWebImageDownloaderOperation.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageDownloaderOperation.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDWebImageDownloaderOperation.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageDownloaderOperation.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/UIImageView+HighlightedWebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImageView+HighlightedWebCache.h -------------------------------------------------------------------------------- /Pods/SVPullToRefresh/Demo/SVPullToRefreshDemo/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Pods/Target Support Files/500px-iOS-api/500px-iOS-api-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /Pods/Target Support Files/MBProgressHUD/MBProgressHUD-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/UIImageView+HighlightedWebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImageView+HighlightedWebCache.h -------------------------------------------------------------------------------- /Pods/Target Support Files/SVPullToRefresh/SVPullToRefresh-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /Pods/FlatUIKit/Resources/Lato-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/Pods/FlatUIKit/Resources/Lato-Bold.ttf -------------------------------------------------------------------------------- /Pods/FlatUIKit/Resources/Lato-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/Pods/FlatUIKit/Resources/Lato-Italic.ttf -------------------------------------------------------------------------------- /Pods/FlatUIKit/Resources/Lato-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/Pods/FlatUIKit/Resources/Lato-Light.ttf -------------------------------------------------------------------------------- /Pods/Headers/Private/SVPullToRefresh/UIScrollView+SVPullToRefresh.h: -------------------------------------------------------------------------------- 1 | ../../../SVPullToRefresh/SVPullToRefresh/UIScrollView+SVPullToRefresh.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SVPullToRefresh/UIScrollView+SVPullToRefresh.h: -------------------------------------------------------------------------------- 1 | ../../../SVPullToRefresh/SVPullToRefresh/UIScrollView+SVPullToRefresh.h -------------------------------------------------------------------------------- /lib/ShareSDK/ShareSDK.framework/ShareSDK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/ShareSDK.framework/ShareSDK -------------------------------------------------------------------------------- /Pods/FlatUIKit/Resources/Lato-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/Pods/FlatUIKit/Resources/Lato-Regular.ttf -------------------------------------------------------------------------------- /lib/ShareSDK/Core/AGCommon.framework/Headers/AGCommon.h: -------------------------------------------------------------------------------- 1 | 2 | #import 3 | 4 | @interface AGCommon : NSObject 5 | 6 | @end 7 | -------------------------------------------------------------------------------- /lib/ShareSDK/ShareSDK.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/ShareSDK.framework/Info.plist -------------------------------------------------------------------------------- /Pods/Headers/Private/SVPullToRefresh/UIScrollView+SVInfiniteScrolling.h: -------------------------------------------------------------------------------- 1 | ../../../SVPullToRefresh/SVPullToRefresh/UIScrollView+SVInfiniteScrolling.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SVPullToRefresh/UIScrollView+SVInfiniteScrolling.h: -------------------------------------------------------------------------------- 1 | ../../../SVPullToRefresh/SVPullToRefresh/UIScrollView+SVInfiniteScrolling.h -------------------------------------------------------------------------------- /Pods/SVPullToRefresh/Demo/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/Pods/SVPullToRefresh/Demo/Default-568h@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/AGCommon.framework/AGCommon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/AGCommon.framework/AGCommon -------------------------------------------------------------------------------- /lib/ShareSDK/Extend/WeChatSDK/libWeChatSDK.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Extend/WeChatSDK/libWeChatSDK.a -------------------------------------------------------------------------------- /MomentsPhoto/zh-Hans.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/MomentsPhoto/zh-Hans.lproj/Localizable.strings -------------------------------------------------------------------------------- /lib/ShareSDK/Core/AGCommon.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/AGCommon.framework/Info.plist -------------------------------------------------------------------------------- /lib/ShareSDK/Extend/SinaWeiboSDK/libWeiboSDK.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Extend/SinaWeiboSDK/libWeiboSDK.a -------------------------------------------------------------------------------- /Pods/FlatUIKit/Resources/flat-ui-icons-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/Pods/FlatUIKit/Resources/flat-ui-icons-regular.ttf -------------------------------------------------------------------------------- /lib/ShareSDK/Extend/TencentWeiboSDK/libTCWeiboSDK.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Extend/TencentWeiboSDK/libTCWeiboSDK.a -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/AuthView/PowerBy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/AuthView/PowerBy.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_1.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_10.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_11.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_12.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_13.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_14.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_15.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_16.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_17.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_18.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_19.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_1_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_1_s.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_2.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_20.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_21.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_22.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_23.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_24.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_25.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_26.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_27.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_28.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_2_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_2_s.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_30.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_34.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_35.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_36.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_37.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_38.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_39.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_41.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_42.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_43.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_43.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_44.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_45.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_5.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_5_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_5_s.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_6.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_6_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_6_s.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_7.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_7_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_7_s.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_8.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_8_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_8_s.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_9.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_1.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_2.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_5.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_6.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_7.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_8.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_9.png -------------------------------------------------------------------------------- /lib/ShareSDK/UI/ShareSDKFlatShareViewUI.bundle/line.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/UI/ShareSDKFlatShareViewUI.bundle/line.gif -------------------------------------------------------------------------------- /MomentsPhoto/Images.xcassets/Stars.imageset/Stars@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/MomentsPhoto/Images.xcassets/Stars.imageset/Stars@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Connection/QQConnection.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Connection/QQConnection.framework/Info.plist -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/AuthView/PowerBy@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/AuthView/PowerBy@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/AuthView/ToolbarBG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/AuthView/ToolbarBG.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_10@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_10@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_10_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_10_s.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_11@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_11@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_11_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_11_s.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_12@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_12@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_13@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_13@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_14@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_14@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_15@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_15@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_16@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_17@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_17@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_18@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_18@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_19@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_19@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_1@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_20@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_21@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_21@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_22@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_22@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_23@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_23@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_24@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_24@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_25@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_25@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_26@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_26@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_27@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_27@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_28@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_28@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_28_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_28_s.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_2@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_30@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_30@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_34@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_34@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_35@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_35@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_36@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_36@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_37@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_37@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_38@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_38@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_39@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_39@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_41@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_41@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_42@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_42@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_43@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_43@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_44@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_44@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_45@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_45@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_5@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_6@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_6@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_7@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_7@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_8@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_8@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_9@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_9@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_10.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_11.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_12.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_13.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_14.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_15.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_16.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_17.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_18.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_19.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_20.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_21.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_22.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_23.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_24.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_25.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_26.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_27.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_28.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_30.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_34.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_35.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_36.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_37.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_38.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_39.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_41.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_42.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_43.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_43.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_44.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_45.png -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods/Pods-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods : NSObject 3 | @end 4 | @implementation PodsDummy_Pods 5 | @end 6 | -------------------------------------------------------------------------------- /lib/ShareSDK/Connection/CopyConnection.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Connection/CopyConnection.framework/Info.plist -------------------------------------------------------------------------------- /lib/ShareSDK/Connection/MailConnection.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Connection/MailConnection.framework/Info.plist -------------------------------------------------------------------------------- /lib/ShareSDK/Connection/QQConnection.framework/QQConnection: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Connection/QQConnection.framework/QQConnection -------------------------------------------------------------------------------- /lib/ShareSDK/Connection/QZoneConnection.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Connection/QZoneConnection.framework/Info.plist -------------------------------------------------------------------------------- /lib/ShareSDK/Connection/SMSConnection.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Connection/SMSConnection.framework/Info.plist -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/AuthView/CloseButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/AuthView/CloseButton.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/AuthView/NavigationBG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/AuthView/NavigationBG.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/AuthView/ToolbarBG@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/AuthView/ToolbarBG@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_10_s@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_10_s@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_11_s@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_11_s@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_1_s@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_1_s@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_28_s@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_28_s@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_2_s@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_2_s@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_5_s@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_5_s@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_6_s@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_6_s@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_7_s@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_7_s@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_8_s@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon/sns_icon_8_s@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_10@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_10@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_11@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_11@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_12@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_12@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_13@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_13@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_14@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_14@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_15@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_15@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_16@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_17@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_17@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_18@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_18@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_19@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_19@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_1@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_20@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_21@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_21@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_22@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_22@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_23@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_23@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_24@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_24@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_25@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_25@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_26@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_26@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_27@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_27@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_28@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_28@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_2@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_30@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_30@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_34@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_34@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_35@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_35@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_36@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_36@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_37@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_37@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_38@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_38@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_39@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_39@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_41@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_41@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_42@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_42@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_43@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_43@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_44@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_44@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_45@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_45@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_5@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_6@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_6@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_7@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_7@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_8@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_8@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_9@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Icon_7/sns_icon_9@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/ShareSDKCoreService.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/ShareSDKCoreService.framework/Info.plist -------------------------------------------------------------------------------- /lib/ShareSDK/ShareSDK.framework/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/ShareSDK.framework/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /lib/ShareSDK/UI/ShareSDKFlatShareViewUI.bundle/line@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/UI/ShareSDKFlatShareViewUI.bundle/line@2x.gif -------------------------------------------------------------------------------- /lib/ShareSDK/UI/ShareSDKFlatShareViewUI.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/UI/ShareSDKFlatShareViewUI.framework/Info.plist -------------------------------------------------------------------------------- /MomentsPhoto/Images.xcassets/AppIcon.appiconset/AppIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/MomentsPhoto/Images.xcassets/AppIcon.appiconset/AppIcon@2x.png -------------------------------------------------------------------------------- /MomentsPhoto/Images.xcassets/AppIcon.appiconset/AppIcon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/MomentsPhoto/Images.xcassets/AppIcon.appiconset/AppIcon@3x.png -------------------------------------------------------------------------------- /MomentsPhoto/Images.xcassets/LaunchImage.launchimage/Group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/MomentsPhoto/Images.xcassets/LaunchImage.launchimage/Group.png -------------------------------------------------------------------------------- /lib/ShareSDK/Connection/SMSConnection.framework/SMSConnection: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Connection/SMSConnection.framework/SMSConnection -------------------------------------------------------------------------------- /lib/ShareSDK/Connection/WeChatConnection.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Connection/WeChatConnection.framework/Info.plist -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/AuthView/CheckBoxUpSkin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/AuthView/CheckBoxUpSkin.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/AuthView/CloseButton@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/AuthView/CloseButton@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/AuthView/NavigationBG@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/AuthView/NavigationBG@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/UI/ShareSDKShareActionSheet.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/UI/ShareSDKShareActionSheet.framework/Info.plist -------------------------------------------------------------------------------- /MomentsPhoto/Images.xcassets/AppIcon.appiconset/AppIcon@3x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/MomentsPhoto/Images.xcassets/AppIcon.appiconset/AppIcon@3x-1.png -------------------------------------------------------------------------------- /MomentsPhoto/Images.xcassets/AppIcon.appiconset/AppIcon@3x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/MomentsPhoto/Images.xcassets/AppIcon.appiconset/AppIcon@3x40.png -------------------------------------------------------------------------------- /MomentsPhoto/Images.xcassets/LaunchImage.launchimage/Group-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/MomentsPhoto/Images.xcassets/LaunchImage.launchimage/Group-1.png -------------------------------------------------------------------------------- /MomentsPhoto/Images.xcassets/LaunchImage.launchimage/Group@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/MomentsPhoto/Images.xcassets/LaunchImage.launchimage/Group@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Connection/CopyConnection.framework/CopyConnection: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Connection/CopyConnection.framework/CopyConnection -------------------------------------------------------------------------------- /lib/ShareSDK/Connection/MailConnection.framework/MailConnection: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Connection/MailConnection.framework/MailConnection -------------------------------------------------------------------------------- /lib/ShareSDK/Connection/QZoneConnection.framework/QZoneConnection: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Connection/QZoneConnection.framework/QZoneConnection -------------------------------------------------------------------------------- /lib/ShareSDK/Connection/SinaWeiboConnection.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Connection/SinaWeiboConnection.framework/Info.plist -------------------------------------------------------------------------------- /lib/ShareSDK/Core/AGCommon.framework/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/AGCommon.framework/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/ActionSheet/ActionSheetBG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/ActionSheet/ActionSheetBG.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/AuthView/CheckBoxUpSkin@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/AuthView/CheckBoxUpSkin@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Common/AuthViewCloseButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Common/AuthViewCloseButton.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Common/NavigationButtonBG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Common/NavigationButtonBG.png -------------------------------------------------------------------------------- /lib/ShareSDK/Extend/SinaWeiboSDK/WeiboSDK.bundle/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Extend/SinaWeiboSDK/WeiboSDK.bundle/images/close.png -------------------------------------------------------------------------------- /lib/ShareSDK/Extend/SinaWeiboSDK/WeiboSDK.bundle/others/mfp.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Extend/SinaWeiboSDK/WeiboSDK.bundle/others/mfp.cer -------------------------------------------------------------------------------- /MomentsPhoto/Images.xcassets/AppIcon.appiconset/appIcon 29px@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/MomentsPhoto/Images.xcassets/AppIcon.appiconset/appIcon 29px@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Connection/TencentWeiboConnection.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Connection/TencentWeiboConnection.framework/Info.plist -------------------------------------------------------------------------------- /lib/ShareSDK/Connection/WeChatConnection.framework/WeChatConnection: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Connection/WeChatConnection.framework/WeChatConnection -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/ActionSheet/ActionSheetBG@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/ActionSheet/ActionSheetBG@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/ActionSheet/action-red-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/ActionSheet/action-red-button.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/AuthView/CheckBoxSelectedSkin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/AuthView/CheckBoxSelectedSkin.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Common/AuthViewCloseButton@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Common/AuthViewCloseButton@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Common/NavigationButtonBG@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Common/NavigationButtonBG@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/ShareSDKCoreService.framework/ShareSDKCoreService: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/ShareSDKCoreService.framework/ShareSDKCoreService -------------------------------------------------------------------------------- /lib/ShareSDK/UI/ShareSDKiPadDefaultShareViewUI.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/UI/ShareSDKiPadDefaultShareViewUI.framework/Info.plist -------------------------------------------------------------------------------- /lib/ShareSDK/UI/ShareSDKiPadSimpleShareViewUI.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/UI/ShareSDKiPadSimpleShareViewUI.framework/Info.plist -------------------------------------------------------------------------------- /MomentsPhoto/Images.xcassets/AppIcon.appiconset/appIcon 29px@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/MomentsPhoto/Images.xcassets/AppIcon.appiconset/appIcon 29px@2x-1.png -------------------------------------------------------------------------------- /MomentsPhoto/Images.xcassets/LaunchImage.launchimage/LauchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/MomentsPhoto/Images.xcassets/LaunchImage.launchimage/LauchImage@2x.png -------------------------------------------------------------------------------- /MomentsPhoto/Images.xcassets/fbi_save_flat.imageset/fbi_save_flat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/MomentsPhoto/Images.xcassets/fbi_save_flat.imageset/fbi_save_flat.png -------------------------------------------------------------------------------- /Pods/Target Support Files/FlatUIKit/FlatUIKit-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_FlatUIKit : NSObject 3 | @end 4 | @implementation PodsDummy_FlatUIKit 5 | @end 6 | -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/ActionSheet/action-black-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/ActionSheet/action-black-button.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/ActionSheet/action-gray-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/ActionSheet/action-gray-button.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/ActionSheet/action-red-button@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/ActionSheet/action-red-button@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/ActionSheet/action-sheet-panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/ActionSheet/action-sheet-panel.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/AuthView/CheckBoxSelectedSkin@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/AuthView/CheckBoxSelectedSkin@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Extend/SinaWeiboSDK/WeiboSDK.bundle/images/close@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Extend/SinaWeiboSDK/WeiboSDK.bundle/images/close@2x.png -------------------------------------------------------------------------------- /MomentsPhoto/Images.xcassets/AppIcon.appiconset/Rectangle 1 + Yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/MomentsPhoto/Images.xcassets/AppIcon.appiconset/Rectangle 1 + Yellow.png -------------------------------------------------------------------------------- /MomentsPhoto/Images.xcassets/LaunchImage.launchimage/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/MomentsPhoto/Images.xcassets/LaunchImage.launchimage/LaunchImage@2x.png -------------------------------------------------------------------------------- /MomentsPhoto/Images.xcassets/fbi_save_flat.imageset/fbi_save_flat@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/MomentsPhoto/Images.xcassets/fbi_save_flat.imageset/fbi_save_flat@2x.png -------------------------------------------------------------------------------- /MomentsPhoto/Images.xcassets/fbi_share.imageset/Group + Rectangle 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/MomentsPhoto/Images.xcassets/fbi_share.imageset/Group + Rectangle 1.png -------------------------------------------------------------------------------- /Pods/Target Support Files/SDWebImage/SDWebImage-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_SDWebImage : NSObject 3 | @end 4 | @implementation PodsDummy_SDWebImage 5 | @end 6 | -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/ActionSheet/action-black-button@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/ActionSheet/action-black-button@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/ActionSheet/action-gray-button@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/ActionSheet/action-gray-button@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/ActionSheet/action-sheet-panel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/ActionSheet/action-sheet-panel@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Extend/QQConnectSDK/TencentOpenAPI.framework/TencentOpenAPI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Extend/QQConnectSDK/TencentOpenAPI.framework/TencentOpenAPI -------------------------------------------------------------------------------- /lib/ShareSDK/Extend/SinaWeiboSDK/WeiboSDK.bundle/images/empty_failed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Extend/SinaWeiboSDK/WeiboSDK.bundle/images/empty_failed.png -------------------------------------------------------------------------------- /MomentsPhoto/Images.xcassets/AppIcon.appiconset/Rectangle 1 + Yellow-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/MomentsPhoto/Images.xcassets/AppIcon.appiconset/Rectangle 1 + Yellow-1.png -------------------------------------------------------------------------------- /MomentsPhoto/Images.xcassets/AppIcon.appiconset/Rectangle 1 + Yellow-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/MomentsPhoto/Images.xcassets/AppIcon.appiconset/Rectangle 1 + Yellow-2.png -------------------------------------------------------------------------------- /MomentsPhoto/Images.xcassets/LaunchImage.launchimage/LaunchImage HD 4_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/MomentsPhoto/Images.xcassets/LaunchImage.launchimage/LaunchImage HD 4_7.png -------------------------------------------------------------------------------- /MomentsPhoto/Images.xcassets/LaunchImage.launchimage/LaunchImage HD 5_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/MomentsPhoto/Images.xcassets/LaunchImage.launchimage/LaunchImage HD 5_5.png -------------------------------------------------------------------------------- /MomentsPhoto/Images.xcassets/fbi_share.imageset/Group + Rectangle 1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/MomentsPhoto/Images.xcassets/fbi_share.imageset/Group + Rectangle 1@2x.png -------------------------------------------------------------------------------- /MomentsPhoto/Images.xcassets/fbi_share.imageset/Group + Rectangle 1@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/MomentsPhoto/Images.xcassets/fbi_share.imageset/Group + Rectangle 1@3x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Connection/CopyConnection.framework/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Connection/CopyConnection.framework/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /lib/ShareSDK/Connection/MailConnection.framework/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Connection/MailConnection.framework/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /lib/ShareSDK/Connection/QQConnection.framework/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Connection/QQConnection.framework/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /lib/ShareSDK/Connection/SMSConnection.framework/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Connection/SMSConnection.framework/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /lib/ShareSDK/Connection/SinaWeiboConnection.framework/SinaWeiboConnection: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Connection/SinaWeiboConnection.framework/SinaWeiboConnection -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/ActionSheet/ActionSheetCancelButtonBG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/ActionSheet/ActionSheetCancelButtonBG.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Common_Landscape/NavigationButtonBG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Common_Landscape/NavigationButtonBG.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/ShareSDKCoreService.framework/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/ShareSDKCoreService.framework/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /lib/ShareSDK/Extend/QQConnectSDK/TencentOpenApi_IOS_Bundle.bundle/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Extend/QQConnectSDK/TencentOpenApi_IOS_Bundle.bundle/error.png -------------------------------------------------------------------------------- /lib/ShareSDK/Extend/SinaWeiboSDK/WeiboSDK.bundle/images/empty_failed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Extend/SinaWeiboSDK/WeiboSDK.bundle/images/empty_failed@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Extend/SinaWeiboSDK/WeiboSDK.bundle/images/sdk_weibo_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Extend/SinaWeiboSDK/WeiboSDK.bundle/images/sdk_weibo_logo.png -------------------------------------------------------------------------------- /lib/ShareSDK/UI/ShareSDKFlatShareViewUI.framework/ShareSDKFlatShareViewUI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/UI/ShareSDKFlatShareViewUI.framework/ShareSDKFlatShareViewUI -------------------------------------------------------------------------------- /lib/ShareSDK/UI/ShareSDKShareActionSheet.framework/ShareSDKShareActionSheet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/UI/ShareSDKShareActionSheet.framework/ShareSDKShareActionSheet -------------------------------------------------------------------------------- /MomentsPhoto/Images.xcassets/AppIcon.appiconset/Rectangle 1 + Yellow@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/MomentsPhoto/Images.xcassets/AppIcon.appiconset/Rectangle 1 + Yellow@2x-1.png -------------------------------------------------------------------------------- /MomentsPhoto/Images.xcassets/AppIcon.appiconset/Rectangle 1 + Yellow@2x-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/MomentsPhoto/Images.xcassets/AppIcon.appiconset/Rectangle 1 + Yellow@2x-2.png -------------------------------------------------------------------------------- /MomentsPhoto/Images.xcassets/fbi_topics_flat.imageset/fbi_topics_flat@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/MomentsPhoto/Images.xcassets/fbi_topics_flat.imageset/fbi_topics_flat@2x.png -------------------------------------------------------------------------------- /Pods/Target Support Files/500px-iOS-api/500px-iOS-api-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_500px_iOS_api : NSObject 3 | @end 4 | @implementation PodsDummy_500px_iOS_api 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/MBProgressHUD/MBProgressHUD-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_MBProgressHUD : NSObject 3 | @end 4 | @implementation PodsDummy_MBProgressHUD 5 | @end 6 | -------------------------------------------------------------------------------- /lib/ShareSDK/Connection/QZoneConnection.framework/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Connection/QZoneConnection.framework/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /lib/ShareSDK/Connection/WeChatConnection.framework/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Connection/WeChatConnection.framework/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/ActionSheet/action-gray-button-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/ActionSheet/action-gray-button-selected.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/ActionSheet/action-red-button-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/ActionSheet/action-red-button-selected.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/Common_Landscape/NavigationButtonBG@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/Common_Landscape/NavigationButtonBG@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Extend/QQConnectSDK/TencentOpenApi_IOS_Bundle.bundle/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Extend/QQConnectSDK/TencentOpenApi_IOS_Bundle.bundle/Info.plist -------------------------------------------------------------------------------- /lib/ShareSDK/Extend/QQConnectSDK/TencentOpenApi_IOS_Bundle.bundle/qqicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Extend/QQConnectSDK/TencentOpenApi_IOS_Bundle.bundle/qqicon.png -------------------------------------------------------------------------------- /lib/ShareSDK/Extend/QQConnectSDK/TencentOpenApi_IOS_Bundle.bundle/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Extend/QQConnectSDK/TencentOpenApi_IOS_Bundle.bundle/success.png -------------------------------------------------------------------------------- /lib/ShareSDK/Extend/SinaWeiboSDK/WeiboSDK.bundle/images/sdk_weibo_logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Extend/SinaWeiboSDK/WeiboSDK.bundle/images/sdk_weibo_logo@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Extend/SinaWeiboSDK/WeiboSDK.bundle/images/sdk_weibo_logo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Extend/SinaWeiboSDK/WeiboSDK.bundle/images/sdk_weibo_logo@3x.png -------------------------------------------------------------------------------- /lib/ShareSDK/UI/ShareSDKFlatShareViewUI.framework/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/UI/ShareSDKFlatShareViewUI.framework/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /lib/ShareSDK/UI/ShareSDKShareActionSheet.framework/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/UI/ShareSDKShareActionSheet.framework/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /lib/ShareSDK/UI/ShareSDKiPadDefaultShareViewUI.bundle/PublishEx_iPad/Pin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/UI/ShareSDKiPadDefaultShareViewUI.bundle/PublishEx_iPad/Pin.png -------------------------------------------------------------------------------- /lib/ShareSDK/UI/ShareSDKiPadDefaultShareViewUI.bundle/PublishEx_iPad/Vip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/UI/ShareSDKiPadDefaultShareViewUI.bundle/PublishEx_iPad/Vip.png -------------------------------------------------------------------------------- /MomentsPhoto/Images.xcassets/AppIcon.appiconset/Rectangle 1 + Yellow@2x-1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/MomentsPhoto/Images.xcassets/AppIcon.appiconset/Rectangle 1 + Yellow@2x-1-1.png -------------------------------------------------------------------------------- /MomentsPhoto/Images.xcassets/LaunchImage.launchimage/LaunchImage Retina 4@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/MomentsPhoto/Images.xcassets/LaunchImage.launchimage/LaunchImage Retina 4@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Connection/SinaWeiboConnection.framework/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Connection/SinaWeiboConnection.framework/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /lib/ShareSDK/Connection/TencentWeiboConnection.framework/TencentWeiboConnection: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Connection/TencentWeiboConnection.framework/TencentWeiboConnection -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/ActionSheet/ActionSheetCancelButtonBG@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/ActionSheet/ActionSheetCancelButtonBG@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/ActionSheet/action-black-button-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/ActionSheet/action-black-button-selected.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/ActionSheet/action-gray-button-selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/ActionSheet/action-gray-button-selected@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/ActionSheet/action-red-button-selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/ActionSheet/action-red-button-selected@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Extend/SinaWeiboSDK/WeiboSDK.bundle/images/common_button_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Extend/SinaWeiboSDK/WeiboSDK.bundle/images/common_button_white.png -------------------------------------------------------------------------------- /lib/ShareSDK/UI/ShareSDKiPadDefaultShareViewUI.bundle/PublishEx_iPad/ImageBG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/UI/ShareSDKiPadDefaultShareViewUI.bundle/PublishEx_iPad/ImageBG.png -------------------------------------------------------------------------------- /lib/ShareSDK/UI/ShareSDKiPadDefaultShareViewUI.bundle/PublishEx_iPad/Pin@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/UI/ShareSDKiPadDefaultShareViewUI.bundle/PublishEx_iPad/Pin@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/UI/ShareSDKiPadDefaultShareViewUI.bundle/PublishEx_iPad/SelIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/UI/ShareSDKiPadDefaultShareViewUI.bundle/PublishEx_iPad/SelIcon.png -------------------------------------------------------------------------------- /lib/ShareSDK/UI/ShareSDKiPadDefaultShareViewUI.bundle/PublishEx_iPad/Vip@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/UI/ShareSDKiPadDefaultShareViewUI.bundle/PublishEx_iPad/Vip@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/UI/ShareSDKiPadSimpleShareViewUI.bundle/Publish_iPad/AGShareBG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/UI/ShareSDKiPadSimpleShareViewUI.bundle/Publish_iPad/AGShareBG.png -------------------------------------------------------------------------------- /lib/ShareSDK/UI/ShareSDKiPadSimpleShareViewUI.bundle/Publish_iPad/AGSharePin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/UI/ShareSDKiPadSimpleShareViewUI.bundle/Publish_iPad/AGSharePin.png -------------------------------------------------------------------------------- /MomentsPhoto/Images.xcassets/LaunchImage.launchimage/LauchImage Retina HD 5_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/MomentsPhoto/Images.xcassets/LaunchImage.launchimage/LauchImage Retina HD 5_5.png -------------------------------------------------------------------------------- /Pods/Target Support Files/SVPullToRefresh/SVPullToRefresh-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_SVPullToRefresh : NSObject 3 | @end 4 | @implementation PodsDummy_SVPullToRefresh 5 | @end 6 | -------------------------------------------------------------------------------- /lib/ShareSDK/Core/Resource.bundle/ActionSheet/action-black-button-selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Core/Resource.bundle/ActionSheet/action-black-button-selected@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Extend/SinaWeiboSDK/WeiboSDK.bundle/images/common_button_white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Extend/SinaWeiboSDK/WeiboSDK.bundle/images/common_button_white@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/UI/ShareSDKiPadDefaultShareViewUI.bundle/PublishEx_iPad/Grassroot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/UI/ShareSDKiPadDefaultShareViewUI.bundle/PublishEx_iPad/Grassroot.png -------------------------------------------------------------------------------- /lib/ShareSDK/UI/ShareSDKiPadDefaultShareViewUI.bundle/PublishEx_iPad/MaleIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/UI/ShareSDKiPadDefaultShareViewUI.bundle/PublishEx_iPad/MaleIcon.png -------------------------------------------------------------------------------- /lib/ShareSDK/UI/ShareSDKiPadDefaultShareViewUI.bundle/PublishEx_iPad/ToolbarBG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/UI/ShareSDKiPadDefaultShareViewUI.bundle/PublishEx_iPad/ToolbarBG.png -------------------------------------------------------------------------------- /lib/ShareSDK/UI/ShareSDKiPadDefaultShareViewUI.bundle/RefreshHeader/BlueArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/UI/ShareSDKiPadDefaultShareViewUI.bundle/RefreshHeader/BlueArrow.png -------------------------------------------------------------------------------- /lib/ShareSDK/UI/ShareSDKiPadSimpleShareViewUI.bundle/Publish_iPad/AGShareBG@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/UI/ShareSDKiPadSimpleShareViewUI.bundle/Publish_iPad/AGShareBG@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/UI/ShareSDKiPadSimpleShareViewUI.framework/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/UI/ShareSDKiPadSimpleShareViewUI.framework/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /MomentsPhoto.xcworkspace/xcuserdata/hujh.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/MomentsPhoto.xcworkspace/xcuserdata/hujh.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /lib/ShareSDK/Connection/TencentWeiboConnection.framework/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Connection/TencentWeiboConnection.framework/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /lib/ShareSDK/Extend/SinaWeiboSDK/WeiboSDK.bundle/images/navigationbar_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Extend/SinaWeiboSDK/WeiboSDK.bundle/images/navigationbar_background.png -------------------------------------------------------------------------------- /lib/ShareSDK/UI/ShareSDKiPadDefaultShareViewUI.bundle/PublishEx_iPad/FemaleIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/UI/ShareSDKiPadDefaultShareViewUI.bundle/PublishEx_iPad/FemaleIcon.png -------------------------------------------------------------------------------- /lib/ShareSDK/UI/ShareSDKiPadDefaultShareViewUI.bundle/PublishEx_iPad/Grassroot@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/UI/ShareSDKiPadDefaultShareViewUI.bundle/PublishEx_iPad/Grassroot@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/UI/ShareSDKiPadDefaultShareViewUI.bundle/PublishEx_iPad/ImageBG@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/UI/ShareSDKiPadDefaultShareViewUI.bundle/PublishEx_iPad/ImageBG@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/UI/ShareSDKiPadDefaultShareViewUI.bundle/PublishEx_iPad/MaleIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/UI/ShareSDKiPadDefaultShareViewUI.bundle/PublishEx_iPad/MaleIcon@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/UI/ShareSDKiPadDefaultShareViewUI.bundle/PublishEx_iPad/SelIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/UI/ShareSDKiPadDefaultShareViewUI.bundle/PublishEx_iPad/SelIcon@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/UI/ShareSDKiPadDefaultShareViewUI.bundle/PublishEx_iPad/SepeatorLine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/UI/ShareSDKiPadDefaultShareViewUI.bundle/PublishEx_iPad/SepeatorLine.png -------------------------------------------------------------------------------- /lib/ShareSDK/UI/ShareSDKiPadDefaultShareViewUI.bundle/PublishEx_iPad/ToolbarBG@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/UI/ShareSDKiPadDefaultShareViewUI.bundle/PublishEx_iPad/ToolbarBG@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/UI/ShareSDKiPadDefaultShareViewUI.bundle/RefreshHeader/BlueArrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/UI/ShareSDKiPadDefaultShareViewUI.bundle/RefreshHeader/BlueArrow@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/UI/ShareSDKiPadDefaultShareViewUI.framework/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/UI/ShareSDKiPadDefaultShareViewUI.framework/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /lib/ShareSDK/UI/ShareSDKiPadSimpleShareViewUI.bundle/Publish_iPad/AGShareImageBG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/UI/ShareSDKiPadSimpleShareViewUI.bundle/Publish_iPad/AGShareImageBG.png -------------------------------------------------------------------------------- /lib/ShareSDK/UI/ShareSDKiPadSimpleShareViewUI.bundle/Publish_iPad/AGSharePin@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/UI/ShareSDKiPadSimpleShareViewUI.bundle/Publish_iPad/AGSharePin@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/UI/ShareSDKiPadSimpleShareViewUI.framework/ShareSDKiPadSimpleShareViewUI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/UI/ShareSDKiPadSimpleShareViewUI.framework/ShareSDKiPadSimpleShareViewUI -------------------------------------------------------------------------------- /MomentsPhoto/zh-Hans.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* 2 | InfoPlist.strings 3 | MomentsPhoto 4 | 5 | Created by HooJackie on 14/7/18. 6 | Copyright (c) 2014年 jackie. All rights reserved. 7 | */ 8 | CFBundleDisplayName = "丁丁美图"; -------------------------------------------------------------------------------- /lib/ShareSDK/Extend/SinaWeiboSDK/WeiboSDK.bundle/images/compose_toolbar_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Extend/SinaWeiboSDK/WeiboSDK.bundle/images/compose_toolbar_background.png -------------------------------------------------------------------------------- /lib/ShareSDK/Extend/SinaWeiboSDK/WeiboSDK.bundle/images/navigationbar_background@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Extend/SinaWeiboSDK/WeiboSDK.bundle/images/navigationbar_background@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/UI/ShareSDKiPadDefaultShareViewUI.bundle/PublishEx_iPad/ClearButtonBG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/UI/ShareSDKiPadDefaultShareViewUI.bundle/PublishEx_iPad/ClearButtonBG.png -------------------------------------------------------------------------------- /lib/ShareSDK/UI/ShareSDKiPadDefaultShareViewUI.bundle/PublishEx_iPad/EnterpriseVip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/UI/ShareSDKiPadDefaultShareViewUI.bundle/PublishEx_iPad/EnterpriseVip.png -------------------------------------------------------------------------------- /lib/ShareSDK/UI/ShareSDKiPadDefaultShareViewUI.bundle/PublishEx_iPad/FemaleIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/UI/ShareSDKiPadDefaultShareViewUI.bundle/PublishEx_iPad/FemaleIcon@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/UI/ShareSDKiPadDefaultShareViewUI.bundle/PublishEx_iPad/ToolbarAtIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/UI/ShareSDKiPadDefaultShareViewUI.bundle/PublishEx_iPad/ToolbarAtIcon.png -------------------------------------------------------------------------------- /lib/ShareSDK/UI/ShareSDKiPadDefaultShareViewUI.bundle/PublishEx_iPad/ToolbarQQIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/UI/ShareSDKiPadDefaultShareViewUI.bundle/PublishEx_iPad/ToolbarQQIcon.png -------------------------------------------------------------------------------- /lib/ShareSDK/UI/ShareSDKiPadDefaultShareViewUI.bundle/PublishEx_iPad/defaultAvatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/UI/ShareSDKiPadDefaultShareViewUI.bundle/PublishEx_iPad/defaultAvatar.png -------------------------------------------------------------------------------- /lib/ShareSDK/UI/ShareSDKiPadDefaultShareViewUI.framework/ShareSDKiPadDefaultShareViewUI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/UI/ShareSDKiPadDefaultShareViewUI.framework/ShareSDKiPadDefaultShareViewUI -------------------------------------------------------------------------------- /lib/ShareSDK/UI/ShareSDKiPadSimpleShareViewUI.bundle/Publish_iPad/AGShareImageBG@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/UI/ShareSDKiPadSimpleShareViewUI.bundle/Publish_iPad/AGShareImageBG@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Extend/SinaWeiboSDK/WeiboSDK.bundle/images/compose_toolbar_background@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Extend/SinaWeiboSDK/WeiboSDK.bundle/images/compose_toolbar_background@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Extend/SinaWeiboSDK/WeiboSDK.bundle/images/navigationbar_background_os7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Extend/SinaWeiboSDK/WeiboSDK.bundle/images/navigationbar_background_os7.png -------------------------------------------------------------------------------- /lib/ShareSDK/UI/ShareSDKiPadDefaultShareViewUI.bundle/PublishEx_iPad/ClearButtonBG@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/UI/ShareSDKiPadDefaultShareViewUI.bundle/PublishEx_iPad/ClearButtonBG@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/UI/ShareSDKiPadDefaultShareViewUI.bundle/PublishEx_iPad/ClearButtonIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/UI/ShareSDKiPadDefaultShareViewUI.bundle/PublishEx_iPad/ClearButtonIcon.png -------------------------------------------------------------------------------- /lib/ShareSDK/UI/ShareSDKiPadDefaultShareViewUI.bundle/PublishEx_iPad/EnterpriseVip@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/UI/ShareSDKiPadDefaultShareViewUI.bundle/PublishEx_iPad/EnterpriseVip@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/UI/ShareSDKiPadDefaultShareViewUI.bundle/PublishEx_iPad/SepeatorLine@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/UI/ShareSDKiPadDefaultShareViewUI.bundle/PublishEx_iPad/SepeatorLine@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/UI/ShareSDKiPadDefaultShareViewUI.bundle/PublishEx_iPad/ToolbarAtIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/UI/ShareSDKiPadDefaultShareViewUI.bundle/PublishEx_iPad/ToolbarAtIcon@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/UI/ShareSDKiPadDefaultShareViewUI.bundle/PublishEx_iPad/ToolbarQQIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/UI/ShareSDKiPadDefaultShareViewUI.bundle/PublishEx_iPad/ToolbarQQIcon@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/UI/ShareSDKiPadDefaultShareViewUI.bundle/PublishEx_iPad/ToolbarSharpIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/UI/ShareSDKiPadDefaultShareViewUI.bundle/PublishEx_iPad/ToolbarSharpIcon.png -------------------------------------------------------------------------------- /lib/ShareSDK/UI/ShareSDKiPadDefaultShareViewUI.bundle/PublishEx_iPad/defaultAvatar@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/UI/ShareSDKiPadDefaultShareViewUI.bundle/PublishEx_iPad/defaultAvatar@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/UI/ShareSDKiPadSimpleShareViewUI.bundle/Publish_iPad/AGShareCancelButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/UI/ShareSDKiPadSimpleShareViewUI.bundle/Publish_iPad/AGShareCancelButton.png -------------------------------------------------------------------------------- /lib/ShareSDK/UI/ShareSDKiPadSimpleShareViewUI.bundle/Publish_iPad/AGShareSubmitButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/UI/ShareSDKiPadSimpleShareViewUI.bundle/Publish_iPad/AGShareSubmitButton.png -------------------------------------------------------------------------------- /lib/ShareSDK/Extend/SinaWeiboSDK/WeiboSDK.bundle/images/common_button_white_highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Extend/SinaWeiboSDK/WeiboSDK.bundle/images/common_button_white_highlighted.png -------------------------------------------------------------------------------- /lib/ShareSDK/Extend/SinaWeiboSDK/WeiboSDK.bundle/images/navigationbar_background_os7@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Extend/SinaWeiboSDK/WeiboSDK.bundle/images/navigationbar_background_os7@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/UI/ShareSDKiPadDefaultShareViewUI.bundle/PublishEx_iPad/ClearButtonIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/UI/ShareSDKiPadDefaultShareViewUI.bundle/PublishEx_iPad/ClearButtonIcon@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/UI/ShareSDKiPadDefaultShareViewUI.bundle/PublishEx_iPad/ToolbarSharpIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/UI/ShareSDKiPadDefaultShareViewUI.bundle/PublishEx_iPad/ToolbarSharpIcon@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/UI/ShareSDKiPadSimpleShareViewUI.bundle/Publish_iPad/AGShareCancelButton@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/UI/ShareSDKiPadSimpleShareViewUI.bundle/Publish_iPad/AGShareCancelButton@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/UI/ShareSDKiPadSimpleShareViewUI.bundle/Publish_iPad/AGShareSubmitButton@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/UI/ShareSDKiPadSimpleShareViewUI.bundle/Publish_iPad/AGShareSubmitButton@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Extend/SinaWeiboSDK/WeiboSDK.bundle/images/common_button_white_highlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Extend/SinaWeiboSDK/WeiboSDK.bundle/images/common_button_white_highlighted@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Extend/SinaWeiboSDK/WeiboSDK.bundle/images/compose_keyboardbutton_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Extend/SinaWeiboSDK/WeiboSDK.bundle/images/compose_keyboardbutton_background.png -------------------------------------------------------------------------------- /MomentsPhoto.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /lib/ShareSDK/Extend/SinaWeiboSDK/WeiboSDK.bundle/images/compose_keyboardbutton_background@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Extend/SinaWeiboSDK/WeiboSDK.bundle/images/compose_keyboardbutton_background@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Extend/SinaWeiboSDK/WeiboSDK.bundle/images/timeline_relationship_icon_attention.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Extend/SinaWeiboSDK/WeiboSDK.bundle/images/timeline_relationship_icon_attention.png -------------------------------------------------------------------------------- /lib/ShareSDK/UI/ShareSDKiPadDefaultShareViewUI.bundle/PublishEx_iPad/ToolbarWeixinSessionIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/UI/ShareSDKiPadDefaultShareViewUI.bundle/PublishEx_iPad/ToolbarWeixinSessionIcon.png -------------------------------------------------------------------------------- /lib/ShareSDK/Extend/SinaWeiboSDK/WeiboSDK.bundle/images/timeline_relationship_icon_addattention.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Extend/SinaWeiboSDK/WeiboSDK.bundle/images/timeline_relationship_icon_addattention.png -------------------------------------------------------------------------------- /lib/ShareSDK/Extend/SinaWeiboSDK/WeiboSDK.bundle/images/timeline_relationship_icon_attention@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Extend/SinaWeiboSDK/WeiboSDK.bundle/images/timeline_relationship_icon_attention@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Extend/SinaWeiboSDK/WeiboSDK.bundle/images/timeline_relationship_icon_attention@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Extend/SinaWeiboSDK/WeiboSDK.bundle/images/timeline_relationship_icon_attention@3x.png -------------------------------------------------------------------------------- /lib/ShareSDK/UI/ShareSDKiPadDefaultShareViewUI.bundle/PublishEx_iPad/ToolbarWeixinSessionIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/UI/ShareSDKiPadDefaultShareViewUI.bundle/PublishEx_iPad/ToolbarWeixinSessionIcon@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/UI/ShareSDKiPadDefaultShareViewUI.bundle/PublishEx_iPad/ToolbarWeixinTimelineIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/UI/ShareSDKiPadDefaultShareViewUI.bundle/PublishEx_iPad/ToolbarWeixinTimelineIcon.png -------------------------------------------------------------------------------- /MomentsPhoto.xcodeproj/project.xcworkspace/xcuserdata/hujh.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/MomentsPhoto.xcodeproj/project.xcworkspace/xcuserdata/hujh.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /lib/ShareSDK/Extend/SinaWeiboSDK/WeiboSDK.bundle/images/timeline_relationship_icon_addattention@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Extend/SinaWeiboSDK/WeiboSDK.bundle/images/timeline_relationship_icon_addattention@2x.png -------------------------------------------------------------------------------- /lib/ShareSDK/Extend/SinaWeiboSDK/WeiboSDK.bundle/images/timeline_relationship_icon_addattention@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/Extend/SinaWeiboSDK/WeiboSDK.bundle/images/timeline_relationship_icon_addattention@3x.png -------------------------------------------------------------------------------- /lib/ShareSDK/UI/ShareSDKiPadDefaultShareViewUI.bundle/PublishEx_iPad/ToolbarWeixinTimelineIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakciehoo/MomentsPhoto/HEAD/lib/ShareSDK/UI/ShareSDKiPadDefaultShareViewUI.bundle/PublishEx_iPad/ToolbarWeixinTimelineIcon@2x.png -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- 1 | platform :ios, '6.0' 2 | pod '500px-iOS-api', '~> 1.0.3' 3 | pod 'SDWebImage', '~> 3.3' 4 | pod 'SVPullToRefresh', '~> 0.4.1' 5 | pod 'MBProgressHUD', '~> 0.7' 6 | 7 | # FlatUIKit has not updated their podspec yet. So, we're temporarily using 'head'. 8 | pod 'FlatUIKit' 9 | -------------------------------------------------------------------------------- /lib/ShareSDK/Core/AGCommon.framework/Headers/CMPinyinFirstLetter.h: -------------------------------------------------------------------------------- 1 | /* 2 | * pinyin.h 3 | * Chinese Pinyin First Letter 4 | * 5 | * Created by George on 4/21/10. 6 | * Copyright 2010 RED/SAFI. All rights reserved. 7 | * 8 | */ 9 | 10 | char CMPinyinFirstLetter(unsigned short hanzi); -------------------------------------------------------------------------------- /lib/ShareSDK/Core/AGCommon.framework/Headers/UINavigationBar+Common.h: -------------------------------------------------------------------------------- 1 | 2 | #import 3 | 4 | @interface UINavigationBar (Common) 5 | 6 | /** 7 | * @brief 设置导航栏背景 8 | * 9 | * @param image 背景图片 10 | */ 11 | - (void)setBackgroundImage:(UIImage *)image; 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /lib/ShareSDK/Core/AGCommon.framework/Headers/NSMutableURLRequest+Common.h: -------------------------------------------------------------------------------- 1 | 2 | #import 3 | 4 | @interface NSMutableURLRequest (Common) 5 | 6 | /** 7 | * @brief 设置提交形式为multipart 8 | * 9 | * @return boundary字符串 10 | */ 11 | - (NSString *)multipartPost; 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /MomentsPhoto.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /MomentsPhoto/Controller/HooViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // HooViewController.h 3 | // MomentsPhoto 4 | // 5 | // Created by HooJackie on 14/7/24. 6 | // Copyright (c) 2014年 jackie. All rights reserved. 7 | // 8 | 9 | #import "RESideMenu.h" 10 | 11 | @interface HooViewController : RESideMenu 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /MomentsPhoto/Controller/HooMainCollectionViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // HooMainCollectionViewController.h 3 | // MomentsPhoto 4 | // 5 | // Created by HooJackie on 14/7/16. 6 | // Copyright (c) 2014年 jackie. All rights reserved. 7 | // 8 | 9 | 10 | @interface HooMainCollectionViewController : UICollectionViewController 11 | 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /Pods/500px-iOS-api/PXAPI/PXAPI.h: -------------------------------------------------------------------------------- 1 | // 2 | // PXAPI.h 3 | // PXAPI 4 | // 5 | // Created by Ash Furrow on 2012-08-10. 6 | // Copyright (c) 2012 500px. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | #import "PXAPIHelper.h" 12 | #import "PXAPIHelper+Auth.h" 13 | #import "PXRequest.h" 14 | #import "PXRequest+Creation.h" -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIImage+MultiFormat.h: -------------------------------------------------------------------------------- 1 | // 2 | // UIImage+MultiFormat.h 3 | // SDWebImage 4 | // 5 | // Created by Olivier Poitrey on 07/06/13. 6 | // Copyright (c) 2013 Dailymotion. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface UIImage (MultiFormat) 12 | 13 | + (UIImage *)sd_imageWithData:(NSData *)data; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /MomentsPhoto/AppDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.h 3 | // MomentsPhoto 4 | // 5 | // Created by HooJackie on 14/7/16. 6 | 7 | // Copyright (c) 2014年 jackie. All rights reserved. 8 | // 9 | 10 | #import 11 | 12 | @interface AppDelegate : UIResponder 13 | 14 | @property (strong, nonatomic) UIWindow *window; 15 | 16 | 17 | @end 18 | 19 | -------------------------------------------------------------------------------- /MomentsPhoto/View/HooCategoryCell.h: -------------------------------------------------------------------------------- 1 | // 2 | // HooCategoryCell.h 3 | // MomentsPhoto 4 | // 5 | // Created by HooJackie on 14/7/17. 6 | // Copyright (c) 2014年 jackie. All rights reserved. 7 | // 8 | 9 | @class HooPhotoStreamCategory; 10 | 11 | @interface HooCategoryCell : UITableViewCell 12 | 13 | @property (nonatomic, strong)HooPhotoStreamCategory *category; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /MomentsPhoto/zh-Hans.lproj/Main.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "UINavigationItem"; title = "丁丁美图"; ObjectID = "4cT-3F-Z39"; */ 3 | "4cT-3F-Z39.title" = "丁丁美图"; 4 | 5 | /* Class = "UIBarButtonItem"; title = "All Category"; ObjectID = "BGK-1w-wex"; */ 6 | "BGK-1w-wex.title" = "所有分类"; 7 | 8 | /* Class = "UIBarButtonItem"; title = "Popular"; ObjectID = "g9X-wH-MtZ"; */ 9 | "g9X-wH-MtZ.title" = "高清美图"; 10 | -------------------------------------------------------------------------------- /Pods/SVPullToRefresh/Demo/SVPullToRefreshDemo/SVRootViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // SVRootViewController.h 3 | // SVPullToRefreshDemo 4 | // 5 | // Created by fengjian on 12-10-31. 6 | // Copyright (c) 2012年 Home. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface SVRootViewController : UIViewController 12 | 13 | - (IBAction)showTableView:(id)sender; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /MomentsPhoto/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // MomentsPhoto 4 | // 5 | // Created by HooJackie on 14/7/16. 6 | // Copyright (c) 2014年 jackie. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "AppDelegate.h" 11 | 12 | int main(int argc, char * argv[]) { 13 | @autoreleasepool { 14 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /Pods/FlatUIKit/Classes/ios/UINavigationBar+FlatUI.h: -------------------------------------------------------------------------------- 1 | // 2 | // UINavigationBar+FlatUI.h 3 | // FlatUI 4 | // 5 | // Created by Jack Flintermann on 5/3/13. 6 | // Copyright (c) 2013 Jack Flintermann. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface UINavigationBar (FlatUI) 12 | 13 | - (void) configureFlatNavigationBarWithColor:(UIColor *)color UI_APPEARANCE_SELECTOR; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /Pods/FlatUIKit/Classes/ios/UIToolbar+FlatUI.h: -------------------------------------------------------------------------------- 1 | // 2 | // Created by Jonathon Hibbard on 6/13/13. 3 | // Copyright (c) 2013 Integrated Events. All rights reserved. 4 | // 5 | // To change the template use AppCode | Preferences | File Templates. 6 | // 7 | 8 | #import 9 | 10 | @interface UIToolbar (FlatUI) 11 | 12 | - (void)configureFlatToolbarWithColor:(UIColor *)color UI_APPEARANCE_SELECTOR; 13 | 14 | @end -------------------------------------------------------------------------------- /Pods/FlatUIKit/Classes/ios/FUIPopoverBackgroundView.h: -------------------------------------------------------------------------------- 1 | // 2 | // FUIPopoverBackgroundView.h 3 | // FlatUIKitExample 4 | // 5 | // Created by Jack Flintermann on 6/5/13. 6 | // 7 | // 8 | 9 | #import 10 | 11 | @interface FUIPopoverBackgroundView : UIPopoverBackgroundView 12 | 13 | + (void) setBackgroundColor:(UIColor *)backgroundColor; 14 | + (void) setCornerRadius:(CGFloat)cornerRadius; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /Pods/SVPullToRefresh/Demo/SVPullToRefreshDemo/SVViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // SVViewController.h 3 | // SVPullToRefreshDemo 4 | // 5 | // Created by Sam Vermette on 23.04.12. 6 | // Copyright (c) 2012 samvermette.com. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface SVViewController : UIViewController 12 | 13 | @property (nonatomic, strong) IBOutlet UITableView *tableView; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /Pods/500px-iOS-api/PXAPI/ABOAuthCore/OAuth+Additions.h: -------------------------------------------------------------------------------- 1 | // 2 | // OAuth+Additions.h 3 | // 4 | // Created by Loren Brichter on 6/9/10. 5 | // Copyright 2010 Loren Brichter. All rights reserved. 6 | // 7 | 8 | #import 9 | 10 | @interface NSString (OAuthAdditions) 11 | 12 | - (NSDictionary *)ab_parseURLQueryString; 13 | 14 | + (NSString *)ab_GUID; 15 | - (NSString *)ab_RFC3986EncodedString; 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageOperation.h: -------------------------------------------------------------------------------- 1 | /* 2 | * This file is part of the SDWebImage package. 3 | * (c) Olivier Poitrey 4 | * 5 | * For the full copyright and license information, please view the LICENSE 6 | * file that was distributed with this source code. 7 | */ 8 | 9 | #import 10 | 11 | @protocol SDWebImageOperation 12 | 13 | - (void)cancel; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /MomentsPhoto/Images.xcassets/Stars.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x", 10 | "filename" : "Stars@2x.png" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Pods/500px-iOS-api/PXAPI/PXAPIHelper+Auth.h: -------------------------------------------------------------------------------- 1 | // 2 | // PXAuthHelper.h 3 | // 500px-iOS-api 4 | // 5 | // Created by Ash Furrow on 2012-08-05. 6 | // Copyright (c) 2012 500px. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | #import "PXAPIHelper.h" 12 | 13 | @interface PXAPIHelper (Auth) 14 | 15 | -(NSDictionary *)authenticate500pxUserName:(NSString *)username password:(NSString *)password; 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /MomentsPhoto/Controller/HooPhotoViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // HooPhotoViewController.h 3 | // MomentsPhoto 4 | // 5 | // Created by HooJackie on 14/7/16. 6 | // Copyright (c) 2014年 jackie. All rights reserved. 7 | // 8 | 9 | @class HooPhoto; 10 | 11 | @interface HooPhotoViewController : UIViewController 12 | 13 | - (void)presentWithWindow:(UIWindow *)window photo:(HooPhoto *)photo sender:(UIView *)sender; 14 | - (void)dismiss; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /Pods/SVPullToRefresh/Demo/SVPullToRefreshDemo/SVAppDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // SVAppDelegate.h 3 | // SVPullToRefreshDemo 4 | // 5 | // Created by Sam Vermette on 23.04.12. 6 | // Copyright (c) 2012 samvermette.com. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @class SVViewController; 12 | 13 | @interface SVAppDelegate : UIResponder 14 | 15 | @property (strong, nonatomic) UIWindow *window; 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /MomentsPhoto/Images.xcassets/fbi_topics_flat.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x", 10 | "filename" : "fbi_topics_flat@2x.png" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Pods/SVPullToRefresh/Demo/SVPullToRefreshDemo/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // SVPullToRefreshDemo 4 | // 5 | // Created by Sam Vermette on 23.04.12. 6 | // Copyright (c) 2012 samvermette.com. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | #import "SVAppDelegate.h" 12 | 13 | int main(int argc, char *argv[]) 14 | { 15 | @autoreleasepool { 16 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([SVAppDelegate class])); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIImage+GIF.h: -------------------------------------------------------------------------------- 1 | // 2 | // UIImage+GIF.h 3 | // LBGIFImage 4 | // 5 | // Created by Laurin Brandner on 06.01.12. 6 | // Copyright (c) 2012 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface UIImage (GIF) 12 | 13 | + (UIImage *)sd_animatedGIFNamed:(NSString *)name; 14 | 15 | + (UIImage *)sd_animatedGIFWithData:(NSData *)data; 16 | 17 | - (UIImage *)sd_animatedImageByScalingAndCroppingToSize:(CGSize)size; 18 | 19 | @end 20 | -------------------------------------------------------------------------------- /Pods/Target Support Files/500px-iOS-api/500px-iOS-api.xcconfig: -------------------------------------------------------------------------------- 1 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 2 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/500px-iOS-api" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/500px-iOS-api" "${PODS_ROOT}/Headers/Public/FlatUIKit" "${PODS_ROOT}/Headers/Public/MBProgressHUD" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/SVPullToRefresh" 3 | PODS_ROOT = ${SRCROOT} 4 | SKIP_INSTALL = YES -------------------------------------------------------------------------------- /lib/ShareSDK/UI/ShareSDKFlatShareViewUI.bundle/zh-Hans.lproj/ShareSDKFlatShareViewUI.strings: -------------------------------------------------------------------------------- 1 | /* 2 | ShareSDKFlatShareViewUI.strings 3 | ShareSDKFlatShareViewUI 4 | 5 | Created by 冯 鸿杰 on 14-2-8. 6 | Copyright (c) 2014年 掌淘网络. All rights reserved. 7 | */ 8 | 9 | "SHARE_VIEW_TITLE" = "分 享"; 10 | "CANCEL_BUTTON" = "取消"; 11 | "SEND_BUTTON" = "发布"; 12 | "TIPS_TITLE" = "提示"; 13 | "INPUT_CONTENT" = "请输入分享内容"; 14 | "KNOW_BUTTON" = "知道了"; 15 | "SELECT_PLATFORM" = "请选择分享的目标平台"; 16 | "SHARE_TO" = "分享到"; -------------------------------------------------------------------------------- /MomentsPhoto/View/HooPhotoCell.h: -------------------------------------------------------------------------------- 1 | // 2 | // HooPhotoCell.h 3 | // MomentsPhoto 4 | // 5 | // Created by HooJackie on 14/7/17. 6 | // Copyright (c) 2014年 jackie. All rights reserved. 7 | // 8 | 9 | @class HooPhoto; 10 | 11 | @interface HooPhotoCell : UICollectionViewCell 12 | @property (weak, nonatomic) IBOutlet UIImageView *imageView; 13 | @property (weak, nonatomic) IBOutlet UIActivityIndicatorView *activityIndicator; 14 | 15 | @property (nonatomic, strong) HooPhoto *photo; 16 | 17 | 18 | @end 19 | -------------------------------------------------------------------------------- /Pods/FlatUIKit/Classes/ios/UIPopoverController+FlatUI.h: -------------------------------------------------------------------------------- 1 | // 2 | // UIPopoverController+FlatUI.h 3 | // FlatUIKit 4 | // 5 | // Created by Jack Flintermann on 6/29/13. 6 | // Copyright (c) 2013 Jack Flintermann. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface UIPopoverController (FlatUI) 12 | 13 | - (void) configureFlatPopoverWithBackgroundColor:(UIColor *)backgroundColor 14 | cornerRadius:(CGFloat)cornerRadius; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /MomentsPhoto/Images.xcassets/fbi_save_flat.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "fbi_save_flat.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "fbi_save_flat@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Pods/Target Support Files/SDWebImage/SDWebImage.xcconfig: -------------------------------------------------------------------------------- 1 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 2 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/SDWebImage" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/500px-iOS-api" "${PODS_ROOT}/Headers/Public/FlatUIKit" "${PODS_ROOT}/Headers/Public/MBProgressHUD" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/SVPullToRefresh" 3 | OTHER_LDFLAGS = -framework "ImageIO" 4 | PODS_ROOT = ${SRCROOT} 5 | SKIP_INSTALL = YES -------------------------------------------------------------------------------- /Pods/500px-iOS-api/PXAPI/ABOAuthCore/OAuthCore.h: -------------------------------------------------------------------------------- 1 | // 2 | // OAuthCore.h 3 | // 4 | // Created by Loren Brichter on 6/9/10. 5 | // Copyright 2010 Loren Brichter. All rights reserved. 6 | // 7 | 8 | #import 9 | 10 | extern NSString *OAuthorizationHeader(NSURL *url, 11 | NSString *method, 12 | NSData *body, 13 | NSString *_oAuthConsumerKey, 14 | NSString *_oAuthConsumerSecret, 15 | NSString *_oAuthToken, 16 | NSString *_oAuthTokenSecret); 17 | -------------------------------------------------------------------------------- /Pods/SVPullToRefresh/Demo/SVPullToRefreshDemo/SVPullToRefreshDemo-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'SVPullToRefreshDemo' target in the 'SVPullToRefreshDemo' project 3 | // 4 | 5 | #import 6 | 7 | #ifndef __IPHONE_4_0 8 | #warning "This project uses features only available in iOS SDK 4.0 and later." 9 | #endif 10 | 11 | #ifdef __OBJC__ 12 | #import 13 | #import 14 | #endif 15 | 16 | #ifdef DEBUG 17 | #define SV_DEBUG_MEMORY_LEAK 18 | #endif 19 | -------------------------------------------------------------------------------- /Pods/Target Support Files/MBProgressHUD/MBProgressHUD.xcconfig: -------------------------------------------------------------------------------- 1 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 2 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/MBProgressHUD" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/500px-iOS-api" "${PODS_ROOT}/Headers/Public/FlatUIKit" "${PODS_ROOT}/Headers/Public/MBProgressHUD" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/SVPullToRefresh" 3 | OTHER_LDFLAGS = -framework "CoreGraphics" 4 | PODS_ROOT = ${SRCROOT} 5 | SKIP_INSTALL = YES -------------------------------------------------------------------------------- /lib/ShareSDK/Connection/WeChatConnection.framework/Headers/SSWeChatErrorInfo.h: -------------------------------------------------------------------------------- 1 | // 2 | // SSWeChatShareInfo.h 3 | // WeChatConnection 4 | // 5 | // Created by 冯 鸿杰 on 13-11-29. 6 | // Copyright (c) 2013年 掌淘科技. All rights reserved. 7 | // 8 | 9 | #import 10 | #import 11 | 12 | ///#begin zh-cn 13 | /** 14 | * @brief 微信错误信息 15 | */ 16 | ///#end 17 | ///#begin en 18 | /** 19 | * @brief Error information. 20 | */ 21 | ///#end 22 | @interface SSWeChatErrorInfo : CMErrorInfo 23 | 24 | @end 25 | -------------------------------------------------------------------------------- /Pods/FlatUIKit/Classes/ios/UIFont+FlatUI.h: -------------------------------------------------------------------------------- 1 | // 2 | // UIFont+FlatUI.h 3 | // FlatUI 4 | // 5 | // Created by Jack Flintermann on 5/7/13. 6 | // Copyright (c) 2013 Jack Flintermann. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface UIFont (FlatUI) 12 | 13 | + (UIFont *)flatFontOfSize:(CGFloat)size; 14 | + (UIFont *)boldFlatFontOfSize:(CGFloat)size; 15 | + (UIFont *)italicFlatFontOfSize:(CGFloat)size; 16 | + (UIFont *)lightFlatFontOfSize:(CGFloat)size; 17 | + (UIFont *)iconFontWithSize:(CGFloat)size; 18 | @end 19 | -------------------------------------------------------------------------------- /Pods/Target Support Files/FlatUIKit/FlatUIKit.xcconfig: -------------------------------------------------------------------------------- 1 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 2 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/FlatUIKit" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/500px-iOS-api" "${PODS_ROOT}/Headers/Public/FlatUIKit" "${PODS_ROOT}/Headers/Public/MBProgressHUD" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/SVPullToRefresh" 3 | OTHER_LDFLAGS = -framework "CoreText" -framework "QuartzCore" 4 | PODS_ROOT = ${SRCROOT} 5 | SKIP_INSTALL = YES -------------------------------------------------------------------------------- /Pods/Target Support Files/SVPullToRefresh/SVPullToRefresh.xcconfig: -------------------------------------------------------------------------------- 1 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 2 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/SVPullToRefresh" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/500px-iOS-api" "${PODS_ROOT}/Headers/Public/FlatUIKit" "${PODS_ROOT}/Headers/Public/MBProgressHUD" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/SVPullToRefresh" 3 | OTHER_LDFLAGS = -framework "QuartzCore" 4 | PODS_ROOT = ${SRCROOT} 5 | SKIP_INSTALL = YES -------------------------------------------------------------------------------- /Pods/SVPullToRefresh/SVPullToRefresh/SVPullToRefresh.h: -------------------------------------------------------------------------------- 1 | // 2 | // SVPullToRefresh.h 3 | // SVPullToRefreshDemo 4 | // 5 | // Created by Sam Vermette on 23.04.12. 6 | // Copyright (c) 2012 samvermette.com. All rights reserved. 7 | // 8 | // https://github.com/samvermette/SVPullToRefresh 9 | // 10 | 11 | // this header file is provided for backwards compatibility and will be removed in the future 12 | // here's how you should import SVPullToRefresh now: 13 | 14 | #import "UIScrollView+SVPullToRefresh.h" 15 | #import "UIScrollView+SVInfiniteScrolling.h" 16 | -------------------------------------------------------------------------------- /lib/ShareSDK/UI/ShareSDKFlatShareViewUI.bundle/en.lproj/ShareSDKFlatShareViewUI.strings: -------------------------------------------------------------------------------- 1 | 2 | /* 3 | ShareSDKFlatShareViewUI.strings 4 | ShareSDKFlatShareViewUI 5 | 6 | Created by 冯 鸿杰 on 14-2-8. 7 | Copyright (c) 2014年 掌淘网络. All rights reserved. 8 | */ 9 | 10 | "SHARE_VIEW_TITLE" = "Share"; 11 | "CANCEL_BUTTON" = "Cancel"; 12 | "SEND_BUTTON" = "Publish"; 13 | "TIPS_TITLE" = "Tips"; 14 | "INPUT_CONTENT" = "Please input share content"; 15 | "KNOW_BUTTON" = "I know"; 16 | "SELECT_PLATFORM" = "Please select the target platform"; 17 | "SHARE_TO" = "Share to"; -------------------------------------------------------------------------------- /MomentsPhoto/Controller/HooPhotoInfoViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // HooPhotoInfoViewController.h 3 | // MomentsPhoto 4 | // 5 | // Created by HooJackie on 14/7/20. 6 | // Copyright (c) 2014年 jackie. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface HooPhotoInfoViewController : UIViewController 12 | @property (weak, nonatomic) IBOutlet UILabel *photoTitle; 13 | @property (weak, nonatomic) IBOutlet UILabel *userName; 14 | @property (nonatomic, copy)NSString *pTitle; 15 | @property (nonatomic, copy)NSString *uName; 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /MomentsPhoto/Images.xcassets/fbi_share.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "Group + Rectangle 1.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "Group + Rectangle 1@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x", 16 | "filename" : "Group + Rectangle 1@3x.png" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageDecoder.h: -------------------------------------------------------------------------------- 1 | /* 2 | * This file is part of the SDWebImage package. 3 | * (c) Olivier Poitrey 4 | * 5 | * Created by james on 9/28/11. 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | #import 12 | #import "SDWebImageCompat.h" 13 | 14 | @interface UIImage (ForceDecode) 15 | 16 | + (UIImage *)decodedImageWithImage:(UIImage *)image; 17 | 18 | @end 19 | -------------------------------------------------------------------------------- /Pods/FlatUIKit/Classes/ios/UIStepper+FlatUI.h: -------------------------------------------------------------------------------- 1 | // 2 | // UIStepper+FlatUI.h 3 | // FlatUI 4 | // 5 | // Created by Jack Flintermann on 5/3/13. 6 | // Copyright (c) 2013 Jack Flintermann. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface UIStepper (FlatUI) 12 | 13 | - (void) configureFlatStepperWithColor:(UIColor *)color 14 | highlightedColor:(UIColor *)highlightedColor 15 | disabledColor:(UIColor *)disabledColor 16 | iconColor:(UIColor *)iconColor; 17 | 18 | @end 19 | -------------------------------------------------------------------------------- /lib/ShareSDK/Connection/QZoneConnection.framework/Headers/SSQZoneErrorInfo.h: -------------------------------------------------------------------------------- 1 | // 2 | // Created by ShareSDK.cn on 13-1-14. 3 | // 官网地址:http://www.ShareSDK.cn 4 | // 技术支持邮箱:support@sharesdk.cn 5 | // 官方微信:ShareSDK (如果发布新版本的话,我们将会第一时间通过微信将版本更新内容推送给您。如果使用过程中有任何问题,也可以通过微信与我们取得联系,我们将会在24小时内给予回复) 6 | // 商务QQ:4006852216 7 | // Copyright (c) 2013年 ShareSDK.cn. All rights reserved. 8 | // 9 | 10 | #import 11 | #import 12 | 13 | /** 14 | * @brief QQ空间异常信息 15 | */ 16 | @interface SSQZoneErrorInfo : CMErrorInfo 17 | 18 | 19 | @end 20 | -------------------------------------------------------------------------------- /lib/ShareSDK/Core/AGCommon.framework/Headers/UIColor+Common.h: -------------------------------------------------------------------------------- 1 | 2 | #import 3 | 4 | @interface UIColor (Common) 5 | 6 | /** 7 | * @brief 获取颜色对象 8 | * 9 | * @param rgb RGB颜色值 10 | */ 11 | + (UIColor *)colorWithRGB:(NSUInteger)rgb; 12 | 13 | /** 14 | * @brief 获取颜色对象 15 | * 16 | * @param argb ARGB颜色值 17 | * 18 | * @return 颜色对象 19 | */ 20 | + (UIColor *)colorWithARGB:(NSUInteger)argb; 21 | 22 | /** 23 | * @brief 获取颜色对象 24 | * 25 | * @param string 颜色描述字符串,带“#”开头 26 | * 27 | * @return 颜色对象 28 | */ 29 | + (UIColor *)cmColorWithString:(NSString *)string; 30 | 31 | @end 32 | -------------------------------------------------------------------------------- /MomentsPhoto/Model/HooPhotoStreamCategory.m: -------------------------------------------------------------------------------- 1 | // 2 | // HooPhotoStreamCategory.m 3 | // MomentsPhoto 4 | // 5 | // Created by HooJackie on 14/7/17. 6 | // Copyright (c) 2014年 jackie. All rights reserved. 7 | // 8 | 9 | #import "HooPhotoStreamCategory.h" 10 | 11 | @implementation HooPhotoStreamCategory 12 | 13 | - (instancetype)initWithTitle:(NSString *)title value:(PXPhotoModelCategory)value selected:(BOOL)selected 14 | { 15 | if (self = [super init]) { 16 | _title = [title copy]; 17 | _value = value; 18 | _selected = selected; 19 | } 20 | return self; 21 | } 22 | 23 | @end 24 | -------------------------------------------------------------------------------- /Pods/FlatUIKit/Classes/ios/UITabBar+FlatUI.h: -------------------------------------------------------------------------------- 1 | // 2 | // UITabBar+FlatUI.h 3 | // FlatUI 4 | // 5 | // Created by Jack Flintermann on 5/3/13. 6 | // Copyright (c) 2013 Jack Flintermann. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface UITabBar (FlatUI) 12 | 13 | - (void)configureFlatTabBarWithColor:(UIColor *)color UI_APPEARANCE_SELECTOR; 14 | - (void)configureFlatTabBarWithSelectedColor:(UIColor *)selectedColor UI_APPEARANCE_SELECTOR; 15 | 16 | - (void)configureFlatTabBarWithColor:(UIColor *)color 17 | selectedColor:(UIColor *)selectedColor; 18 | 19 | @end 20 | -------------------------------------------------------------------------------- /MomentsPhoto/Model/HooPhotoStreamCategoryList.h: -------------------------------------------------------------------------------- 1 | // 2 | // HooPhotoStreamCategoryList.h 3 | // MomentsPhoto 4 | // 5 | // Created by HooJackie on 14/7/17. 6 | // Copyright (c) 2014年 jackie. All rights reserved. 7 | // 8 | 9 | @class HooPhotoStreamCategory; 10 | 11 | @interface HooPhotoStreamCategoryList : NSObject 12 | /* 13 | */ 14 | + (instancetype)DefaultList; 15 | 16 | - (NSUInteger)categoryCount; 17 | 18 | - (NSUInteger)indexOfSelectedCategory; 19 | 20 | - (void)selectCategoryAtIndex:(NSUInteger)index; 21 | 22 | - (HooPhotoStreamCategory *)categoryAtIndex:(NSUInteger)index; 23 | 24 | - (void)removeAllCategories; 25 | 26 | @end 27 | -------------------------------------------------------------------------------- /lib/ShareSDK/Core/AGCommon.framework/Headers/CMPageContentView.h: -------------------------------------------------------------------------------- 1 | 2 | #import 3 | #import "ICMPageContentView.h" 4 | 5 | ///#begin zh-cn 6 | /** 7 | * @brief 分页内容视图 8 | */ 9 | ///#end 10 | ///#begin en 11 | /** 12 | * @brief Page content view. 13 | */ 14 | ///#end 15 | @interface CMPageContentView : UIView 16 | { 17 | @private 18 | NSString *_reuseIdentifier; 19 | } 20 | 21 | ///#begin zh-cn 22 | /** 23 | * @brief 引用标识. 24 | */ 25 | ///#end 26 | ///#begin en 27 | /** 28 | * @brief Reuse identifier. 29 | */ 30 | ///#end 31 | @property (nonatomic,readonly) NSString *reuseIdentifier; 32 | 33 | 34 | @end 35 | -------------------------------------------------------------------------------- /Pods/FlatUIKit/Classes/ios/FUICellBackgroundView.h: -------------------------------------------------------------------------------- 1 | // 2 | // UACellBackgroundView.h 3 | // FlatUI 4 | // 5 | // Created by Maciej Swic on 2013-05-30. 6 | // Licensed under the MIT license. 7 | 8 | #import 9 | 10 | @interface FUICellBackgroundView : UIView 11 | 12 | @property (nonatomic, strong) UIColor *backgroundColor UI_APPEARANCE_SELECTOR; 13 | @property (nonatomic) CGFloat cornerRadius UI_APPEARANCE_SELECTOR; 14 | @property (nonatomic, strong) UIColor* separatorColor UI_APPEARANCE_SELECTOR; 15 | @property (nonatomic) CGFloat separatorHeight UI_APPEARANCE_SELECTOR; 16 | @property (nonatomic) UIRectCorner roundedCorners; 17 | 18 | @end 19 | -------------------------------------------------------------------------------- /MomentsPhoto/Model/HooPhotoStreamCategory.h: -------------------------------------------------------------------------------- 1 | // 2 | // HooPhotoStreamCategory.h 3 | // MomentsPhoto 4 | // 5 | // Created by HooJackie on 14/7/17. 6 | // Copyright (c) 2014年 jackie. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "PXAPI.h" 11 | 12 | @interface HooPhotoStreamCategory : NSObject 13 | 14 | @property (nonatomic, assign, getter=isSelected) BOOL selected; 15 | @property (nonatomic, copy, readonly) NSString *title; 16 | @property (nonatomic, assign, readonly) PXPhotoModelCategory value; 17 | 18 | - (instancetype)initWithTitle:(NSString *)title value:(PXPhotoModelCategory)value selected:(BOOL)selected; 19 | 20 | @end 21 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # `MomentsPhoto(丁丁美图)` 2 | =========================== 3 | 这是我用500pxAPI写的一个美图分享App。功能完整,分享出来,供有兴趣的朋友学习。欢迎加Q群交流技术:260558552。 4 | 5 | 截图: 6 | ====================== 7 | ![](https://github.com/jakciehoo/MomentsPhoto/raw/master/MomentsPhoto/snapshot/snapshot1.png) 8 | 9 | ![](https://github.com/jakciehoo/MomentsPhoto/raw/master/MomentsPhoto/snapshot/snapshot2.png) 10 | 11 | ![](https://github.com/jakciehoo/MomentsPhoto/raw/master/MomentsPhoto/snapshot/snapshot3.png) 12 | 13 | ![](https://github.com/jakciehoo/MomentsPhoto/raw/master/MomentsPhoto/snapshot/snapshot4.png) 14 | 15 | ![](https://github.com/jakciehoo/MomentsPhoto/raw/master/MomentsPhoto/snapshot/snapshot5.png) 16 | -------------------------------------------------------------------------------- /lib/ShareSDK/Core/AGCommon.framework/Headers/CMRandom.h: -------------------------------------------------------------------------------- 1 | 2 | #import 3 | 4 | ///#begin zh-cn 5 | /** 6 | * @brief 随机类 7 | */ 8 | ///#end 9 | ///#begin en 10 | /** 11 | * @brief Random 12 | */ 13 | ///#end 14 | @interface CMRandom : NSObject 15 | 16 | ///#begin zh-cn 17 | /** 18 | * @brief 获取随机整型值 19 | * 20 | * @param maxValue 随机最大值 21 | * 22 | * @return 随机整数 23 | */ 24 | ///#end 25 | ///#begin en 26 | /** 27 | * @brief Get random integer value. 28 | * 29 | * @param maxValue Max integer value. 30 | * 31 | * @return Random integer value. 32 | */ 33 | ///#end 34 | - (NSInteger)getIntegerValue:(NSInteger)maxValue; 35 | 36 | 37 | @end 38 | -------------------------------------------------------------------------------- /Pods/FlatUIKit/Classes/ios/UIProgressView+FlatUI.h: -------------------------------------------------------------------------------- 1 | // 2 | // UIProgressView+FlatUI.h 3 | // FlatUITestProj 4 | // 5 | // Created by Alex Medearis on 5/16/13. 6 | // Copyright (c) 2013 Alex Medearis. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface UIProgressView (FlatUI) 12 | 13 | - (void)configureFlatProgressViewWithTrackColor:(UIColor *)trackColor UI_APPEARANCE_SELECTOR; 14 | - (void)configureFlatProgressViewWithProgressColor:(UIColor *)progressColor UI_APPEARANCE_SELECTOR; 15 | 16 | - (void) configureFlatProgressViewWithTrackColor:(UIColor *)trackColor 17 | progressColor:(UIColor *)progressColor; 18 | 19 | @end 20 | -------------------------------------------------------------------------------- /lib/ShareSDK/Core/AGCommon.framework/Headers/CMOpenUDID.h: -------------------------------------------------------------------------------- 1 | // 2 | // OpenUDID.h 3 | // openudid 4 | // 5 | // initiated by Yann Lechelle (cofounder @Appsfire) on 8/28/11. 6 | // Copyright 2011 OpenUDID.org 7 | // 8 | // Main branches 9 | // iOS code: https://github.com/ylechelle/OpenUDID 10 | // 11 | 12 | 13 | #import 14 | 15 | #define kAGSKOpenUDIDErrorNone 0 16 | #define kAGSKOpenUDIDErrorOptedOut 1 17 | #define kAGSKOpenUDIDErrorCompromised 2 18 | 19 | @interface CMOpenUDID : NSObject { 20 | } 21 | + (NSString*) value; 22 | + (NSString*) valueWithError:(NSError**)error; 23 | + (void) setOptOut:(BOOL)optOutValue; 24 | 25 | @end 26 | -------------------------------------------------------------------------------- /lib/ShareSDK/Connection/WeChatConnection.framework/Headers/SSWeChatTypeDef.h: -------------------------------------------------------------------------------- 1 | // 2 | // SSWeChatShareInfo.h 3 | // WeChatConnection 4 | // 5 | // Created by 冯 鸿杰 on 13-11-29. 6 | // Copyright (c) 2013年 掌淘科技. All rights reserved. 7 | // 8 | 9 | #ifndef WeChatConnection_SSWeChatTypeDef_h 10 | #define WeChatConnection_SSWeChatTypeDef_h 11 | 12 | ///#begin zh-cn 13 | /** 14 | * @brief 微信类型 15 | */ 16 | ///#end 17 | ///#begin en 18 | /** 19 | * @brief WeChat type. 20 | */ 21 | ///#end 22 | typedef enum 23 | { 24 | SSWeChatSceneSession = 0, /**< 好友 */ 25 | SSWeChatSceneTimeline = 1 , /**< 朋友圈 */ 26 | SSWeChatSceneFav = 2 /**< 收藏 */ 27 | } 28 | SSWeChatScene; 29 | 30 | #endif 31 | -------------------------------------------------------------------------------- /Pods/FlatUIKit/Classes/ios/FUITextField.h: -------------------------------------------------------------------------------- 1 | // 2 | // FUITextField.h 3 | // FlatUI 4 | // 5 | // Created by Andrej Mihajlov on 8/25/13. 6 | // Copyright (c) 2013 Andrej Mihajlov. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface FUITextField : UITextField 12 | 13 | @property (nonatomic, assign) UIEdgeInsets edgeInsets UI_APPEARANCE_SELECTOR; 14 | @property (nonatomic, strong) UIColor *textFieldColor UI_APPEARANCE_SELECTOR; 15 | @property (nonatomic, strong) UIColor *borderColor UI_APPEARANCE_SELECTOR; 16 | @property (nonatomic, assign) CGFloat borderWidth UI_APPEARANCE_SELECTOR; 17 | @property (nonatomic, assign) CGFloat cornerRadius UI_APPEARANCE_SELECTOR; 18 | 19 | @end 20 | -------------------------------------------------------------------------------- /MomentsPhoto/Model/HooPhoto.h: -------------------------------------------------------------------------------- 1 | // 2 | // HooPhoto.h 3 | // MomentsPhoto 4 | // 5 | // Created by HooJackie on 14/7/16. 6 | // Copyright (c) 2014年 jackie. All rights reserved. 7 | // 8 | 9 | 10 | 11 | @class HooPhotoStreamPage; 12 | 13 | @interface HooPhoto : NSObject 14 | 15 | @property (nonatomic, copy, readonly)NSURL *thumbnailURL; 16 | @property (nonatomic, copy, readonly)NSURL *photoURL; 17 | @property (nonatomic, copy, readonly)NSString *title; 18 | @property (nonatomic, copy, readonly)NSString *userFullName; 19 | @property (nonatomic, copy, readonly)HooPhotoStreamPage *photoStreamPage; 20 | 21 | - (instancetype)initWithPage:(HooPhotoStreamPage *)page attributes:(NSDictionary *)attributes; 22 | 23 | @end 24 | -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/NSData+ImageContentType.h: -------------------------------------------------------------------------------- 1 | // 2 | // Created by Fabrice Aneche on 06/01/14. 3 | // Copyright (c) 2014 Dailymotion. All rights reserved. 4 | // 5 | 6 | #import 7 | 8 | @interface NSData (ImageContentType) 9 | 10 | /** 11 | * Compute the content type for an image data 12 | * 13 | * @param data the input data 14 | * 15 | * @return the content type as string (i.e. image/jpeg, image/gif) 16 | */ 17 | + (NSString *)sd_contentTypeForImageData:(NSData *)data; 18 | 19 | @end 20 | 21 | 22 | @interface NSData (ImageContentTypeDeprecated) 23 | 24 | + (NSString *)contentTypeForImageData:(NSData *)data __deprecated_msg("Use `sd_contentTypeForImageData:`"); 25 | 26 | @end 27 | -------------------------------------------------------------------------------- /lib/ShareSDK/Core/AGCommon.framework/Headers/CMPinyin.h: -------------------------------------------------------------------------------- 1 | // 2 | // POAPinyin.h 3 | // 4 | // Created by ShareSDK.cn on 13-1-14. 5 | // 官网地址:http://www.ShareSDK.cn 6 | // 技术支持邮箱:support@sharesdk.cn 7 | // 官方微信:ShareSDK (如果发布新版本的话,我们将会第一时间通过微信将版本更新内容推送给您。如果使用过程中有任何问题,也可以通过微信与我们取得联系,我们将会在24小时内给予回复) 8 | // 商务QQ:4006852216 9 | // Copyright (c) 2013年 ShareSDK.cn. All rights reserved. 10 | // 11 | 12 | #import 13 | 14 | 15 | @interface CMPinyin : NSObject { 16 | 17 | } 18 | 19 | + (NSString *) convert:(NSString *) hzString;//输入中文,返回拼音。 20 | 21 | // added by setimouse ( setimouse@gmail.com ) 22 | + (NSString *)quickConvert:(NSString *)hzString; 23 | + (void)clearCache; 24 | // ------------------ 25 | 26 | @end 27 | -------------------------------------------------------------------------------- /lib/ShareSDK/Core/ShareSDKCoreService.framework/Headers/SSCKeyDef.h: -------------------------------------------------------------------------------- 1 | // 2 | // Created by ShareSDK.cn on 13-1-14. 3 | // 官网地址:http://www.ShareSDK.cn 4 | // 技术支持邮箱:support@sharesdk.cn 5 | // 官方微信:ShareSDK (如果发布新版本的话,我们将会第一时间通过微信将版本更新内容推送给您。如果使用过程中有任何问题,也可以通过微信与我们取得联系,我们将会在24小时内给予回复) 6 | // 商务QQ:4006852216 7 | // Copyright (c) 2013年 ShareSDK.cn. All rights reserved. 8 | // 9 | 10 | 11 | #ifndef ShareSDKCoreService_SSCKeyDef_h 12 | #define ShareSDKCoreService_SSCKeyDef_h 13 | 14 | /** 15 | * @brief 帐号键,通过此键取得id对象 16 | */ 17 | #define SSK_ACCOUNT @"sskAccount" 18 | 19 | /** 20 | * @brief 平台类型 21 | */ 22 | #define SSK_PLAT @"sskPlat" 23 | 24 | /** 25 | * @brief 用户信息 26 | */ 27 | #define SSK_USER_INFO @"sskUser" 28 | 29 | #endif 30 | -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - 500px-iOS-api (1.0.5) 3 | - FlatUIKit (1.6.2) 4 | - MBProgressHUD (0.9.2) 5 | - SDWebImage (3.7.5): 6 | - SDWebImage/Core (= 3.7.5) 7 | - SDWebImage/Core (3.7.5) 8 | - SVPullToRefresh (0.4.1) 9 | 10 | DEPENDENCIES: 11 | - 500px-iOS-api (~> 1.0.3) 12 | - FlatUIKit 13 | - MBProgressHUD (~> 0.7) 14 | - SDWebImage (~> 3.3) 15 | - SVPullToRefresh (~> 0.4.1) 16 | 17 | SPEC CHECKSUMS: 18 | 500px-iOS-api: d9e46cb6300cef1a12964641374aa467d3cfb891 19 | FlatUIKit: 1b41f0d4952ce8d970d8479ce79df54a960242c4 20 | MBProgressHUD: 1569cf7ace17a8bac47aabfbb8580a49690386d1 21 | SDWebImage: 69c6303e3348fba97e03f65d65d4fbc26740f461 22 | SVPullToRefresh: ba2e718695a43253d8bea6852d2960097dc15d8c 23 | 24 | COCOAPODS: 0.39.0 25 | -------------------------------------------------------------------------------- /lib/ShareSDK/ShareSDK.framework/Headers/SSLogDef.h: -------------------------------------------------------------------------------- 1 | // 2 | // SSLog.h 3 | // ShareSDK 4 | // 5 | // Created by 冯 鸿杰 on 13-11-26. 6 | // Copyright (c) 2013年 掌淘科技. All rights reserved. 7 | // 8 | 9 | #ifndef ShareSDK_SSLogDef_h 10 | #define ShareSDK_SSLogDef_h 11 | 12 | #ifdef DEBUG 13 | #define SS_DEBUG(...) NSLog(__VA_ARGS__) 14 | #define SS_INFO(msg) NSLog(@"#info:%@", msg) 15 | #define SS_WARNING(msg) NSLog(@"#warning:%@", msg) 16 | #define SS_ERROR(msg) NSLog(@"#error:%@", msg) 17 | #else 18 | #define SS_DEBUG(...) {} 19 | #define SS_INFO(msg) NSLog(@"#info:%@", msg) 20 | #define SS_WARNING(msg) NSLog(@"#warning:%@", msg) 21 | #define SS_ERROR(msg) NSLog(@"#error:%@", msg) 22 | #endif 23 | 24 | #endif 25 | -------------------------------------------------------------------------------- /Pods/Manifest.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - 500px-iOS-api (1.0.5) 3 | - FlatUIKit (1.6.2) 4 | - MBProgressHUD (0.9.2) 5 | - SDWebImage (3.7.5): 6 | - SDWebImage/Core (= 3.7.5) 7 | - SDWebImage/Core (3.7.5) 8 | - SVPullToRefresh (0.4.1) 9 | 10 | DEPENDENCIES: 11 | - 500px-iOS-api (~> 1.0.3) 12 | - FlatUIKit 13 | - MBProgressHUD (~> 0.7) 14 | - SDWebImage (~> 3.3) 15 | - SVPullToRefresh (~> 0.4.1) 16 | 17 | SPEC CHECKSUMS: 18 | 500px-iOS-api: d9e46cb6300cef1a12964641374aa467d3cfb891 19 | FlatUIKit: 1b41f0d4952ce8d970d8479ce79df54a960242c4 20 | MBProgressHUD: 1569cf7ace17a8bac47aabfbb8580a49690386d1 21 | SDWebImage: 69c6303e3348fba97e03f65d65d4fbc26740f461 22 | SVPullToRefresh: ba2e718695a43253d8bea6852d2960097dc15d8c 23 | 24 | COCOAPODS: 0.39.0 25 | -------------------------------------------------------------------------------- /MomentsPhoto.xcodeproj/xcuserdata/hujh.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | SchemeUserState 6 | 7 | MomentsPhoto.xcscheme 8 | 9 | orderHint 10 | 0 11 | 12 | 13 | SuppressBuildableAutocreation 14 | 15 | B8D381AD1B57B7D100B20004 16 | 17 | primary 18 | 19 | 20 | B8D381C61B57B7D100B20004 21 | 22 | primary 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /MomentsPhoto/Controller/HooCategoryListViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // HooCategoryListViewController.h 3 | // MomentsPhoto 4 | // 5 | // Created by HooJackie on 14/7/17. 6 | // Copyright (c) 2014年 jackie. All rights reserved. 7 | // 8 | @class HooCategoryListViewController; 9 | @class HooPhotoStreamCategory; 10 | 11 | 12 | @protocol HooCategoryListViewControllerDelegate 13 | @required 14 | - (void)categoryListViewController:(HooCategoryListViewController *)categoryListViewController didSelectedCategory:(HooPhotoStreamCategory *)category; 15 | 16 | @end 17 | 18 | @interface HooCategoryListViewController : UIViewController 19 | 20 | @property (nonatomic,weak) id delegate; 21 | 22 | @end 23 | -------------------------------------------------------------------------------- /lib/ShareSDK/Core/AGCommon.framework/Headers/CMCacheManager.h: -------------------------------------------------------------------------------- 1 | 2 | #import 3 | #import "CMLoader.h" 4 | 5 | ///#begin zh-cn 6 | /** 7 | * @brief 缓存管理器 8 | */ 9 | ///#end 10 | ///#begin en 11 | /** 12 | * @brief Cache Manager. 13 | */ 14 | ///#end 15 | @interface CMCacheManager : NSObject 16 | { 17 | //加载队列,尚未从网络获取本地加载完毕的将会进入此队列。 18 | NSMutableArray *_loaderQueue; 19 | //缓存路径 20 | NSString *_cachePath; 21 | } 22 | 23 | ///#begin zh-cn 24 | /** 25 | * @brief 加载文件 26 | * 27 | * @param url 文件路径 28 | * 29 | * @return 文件加载器 30 | */ 31 | ///#end 32 | ///#begin en 33 | /** 34 | * @brief Load file. 35 | * 36 | * @param url File URL object. 37 | * 38 | * @return Loader object. 39 | */ 40 | ///#end 41 | - (CMLoader *)load:(NSURL *)url; 42 | 43 | 44 | @end 45 | -------------------------------------------------------------------------------- /Pods/FlatUIKit/Classes/ios/UITableViewCell+FlatUI.h: -------------------------------------------------------------------------------- 1 | // 2 | // UITableViewCell+FlatUI.h 3 | // FlatUIKitExample 4 | // 5 | // Created by Maciej Swic on 2013-05-31. 6 | // 7 | // 8 | 9 | #import 10 | 11 | @interface UITableViewCell (FlatUI) 12 | 13 | @property (nonatomic) CGFloat cornerRadius; 14 | @property (nonatomic) CGFloat separatorHeight; 15 | 16 | - (void) configureFlatCellWithColor:(UIColor *)color 17 | selectedColor:(UIColor *)selectedColor; 18 | 19 | - (void) configureFlatCellWithColor:(UIColor *)color 20 | selectedColor:(UIColor *)selectedColor 21 | roundingCorners:(UIRectCorner)corners; 22 | 23 | - (void)setCornerRadius:(CGFloat)cornerRadius; 24 | - (void)setSeparatorHeight:(CGFloat)separatorHeight; 25 | 26 | @end 27 | -------------------------------------------------------------------------------- /Pods/FlatUIKit/Classes/ios/UISlider+FlatUI.h: -------------------------------------------------------------------------------- 1 | // 2 | // UISlider+FlatUI.h 3 | // FlatUI 4 | // 5 | // Created by Jack Flintermann on 5/3/13. 6 | // Copyright (c) 2013 Jack Flintermann. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface UISlider (FlatUI) 12 | 13 | - (void) configureFlatSliderWithTrackColor:(UIColor *)trackColor 14 | progressColor:(UIColor *)progressColor 15 | thumbColor:(UIColor *)thumbColor; 16 | 17 | - (void) configureFlatSliderWithTrackColor:(UIColor *)trackColor 18 | progressColor:(UIColor *)progressColor 19 | thumbColorNormal:(UIColor *)thumbColorNormal 20 | thumbColorHighlighted:(UIColor *)highlightedThumbColor; 21 | 22 | @end 23 | -------------------------------------------------------------------------------- /MomentsPhotoTests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | BNDL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | 24 | 25 | -------------------------------------------------------------------------------- /lib/DescriptionBuilder/DescriptionBuilder.h: -------------------------------------------------------------------------------- 1 | // 2 | // DescriptionBuilder.h 3 | // DescriptionBuilder 4 | // 5 | // Created by KISHIKAWA Katsumi on 09/09/07. 6 | // Copyright 2009 KISHIKAWA Katsumi. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | typedef enum DescriptionStyle { 12 | DescriptionStyleDefault, 13 | DescriptionStyleMultiLine, 14 | DescriptionStyleNoNames, 15 | DescriptionStyleShortPrefix, 16 | DescriptionStyleSimple, 17 | } DescriptionStyle; 18 | 19 | @interface DescriptionBuilder : NSObject 20 | 21 | + (NSString *)reflectDescription:(id)obj; 22 | + (NSString *)reflectDescription:(id)obj style:(DescriptionStyle)style; 23 | + (NSString *)reflectDescriptionWithSuperClass:(id)obj; 24 | + (NSString *)reflectDescriptionWithSuperClass:(id)obj style:(DescriptionStyle)style; 25 | 26 | @end 27 | -------------------------------------------------------------------------------- /MomentsPhoto/Controller/HooFeatureListViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // HooFeatureViewController.h 3 | // MomentsPhoto 4 | // 5 | // Created by HooJackie on 14/7/24. 6 | // Copyright (c) 2014年 jackie. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "RESideMenu.h" 11 | #import "PXAPIHelper.h" 12 | @class HooFeatureListViewController; 13 | 14 | 15 | @protocol HooFeatureListViewControllerDelegate 16 | @required 17 | - (void)featureListViewController:(HooFeatureListViewController *)featureListViewController didSelectedfeature:(NSInteger)featureIndex featureName:(NSString *)featureName; 18 | @end 19 | 20 | @interface HooFeatureListViewController : UIViewController 21 | 22 | @property (nonatomic,weak) id delegate; 23 | 24 | @end 25 | -------------------------------------------------------------------------------- /Pods/FlatUIKit/Classes/ios/UIPopoverController+FlatUI.m: -------------------------------------------------------------------------------- 1 | // 2 | // UIPopoverController+FlatUI.m 3 | // FlatUIKit 4 | // 5 | // Created by Jack Flintermann on 6/29/13. 6 | // Copyright (c) 2013 Jack Flintermann. All rights reserved. 7 | // 8 | 9 | #import "UIPopoverController+FlatUI.h" 10 | #import "FUIPopoverBackgroundView.h" 11 | 12 | @implementation UIPopoverController (FlatUI) 13 | 14 | - (void) configureFlatPopoverWithBackgroundColor:(UIColor *)backgroundColor 15 | cornerRadius:(CGFloat)cornerRadius { 16 | [FUIPopoverBackgroundView setBackgroundColor:backgroundColor]; 17 | [FUIPopoverBackgroundView setCornerRadius:cornerRadius]; 18 | [self setPopoverLayoutMargins:[FUIPopoverBackgroundView contentViewInsets]]; 19 | [self setPopoverBackgroundViewClass:[FUIPopoverBackgroundView class]]; 20 | } 21 | 22 | @end 23 | -------------------------------------------------------------------------------- /lib/ShareSDK/Core/ShareSDKCoreService.framework/Headers/SSCNotificationDef.h: -------------------------------------------------------------------------------- 1 | // 2 | // Created by ShareSDK.cn on 13-1-14. 3 | // 官网地址:http://www.ShareSDK.cn 4 | // 技术支持邮箱:support@sharesdk.cn 5 | // 官方微信:ShareSDK (如果发布新版本的话,我们将会第一时间通过微信将版本更新内容推送给您。如果使用过程中有任何问题,也可以通过微信与我们取得联系,我们将会在24小时内给予回复) 6 | // 商务QQ:4006852216 7 | // Copyright (c) 2013年 ShareSDK.cn. All rights reserved. 8 | // 9 | 10 | #ifndef ShareSDKCoreService_SSCNotificationDef_h 11 | #define ShareSDKCoreService_SSCNotificationDef_h 12 | 13 | /** 14 | * @brief 注册应用成功 15 | */ 16 | #define SSN_REG_APP_SUC @"ssnRegAppSuc" 17 | 18 | /** 19 | * @brief 注册应用失败 20 | */ 21 | #define SSN_REG_APP_FAI @"ssnRegAppFai" 22 | 23 | /** 24 | * @brief 用户授权 25 | */ 26 | #define SSN_USER_AUTH @"ssnUserAuth" 27 | 28 | /** 29 | * @brief 用户信息更新 30 | */ 31 | #define SSN_USER_INFO_UPDATE @"ssnUserInfoUpdate" 32 | 33 | #endif 34 | -------------------------------------------------------------------------------- /lib/ShareSDK/Core/AGCommon.framework/Headers/CMHTableViewItem.h: -------------------------------------------------------------------------------- 1 | 2 | #import 3 | #import "ICMHTableViewItem.h" 4 | 5 | ///#begin zh-cn 6 | /** 7 | * @brief 水平排版表格列表项视图 8 | */ 9 | ///#end 10 | ///#begin en 11 | /** 12 | * @brief Horizontal table item view. 13 | */ 14 | ///#end 15 | @interface CMHTableViewItem : UIView 16 | { 17 | @private 18 | NSString *_reuseIdentifier; 19 | NSIndexPath *_indexPath; 20 | } 21 | 22 | ///#begin zh-cn 23 | /** 24 | * @brief 复用标识 25 | */ 26 | ///#end 27 | ///#begin en 28 | /** 29 | * @brief Reuse indentifier. 30 | */ 31 | ///#end 32 | @property (nonatomic,readonly) NSString *reuseIdentifier; 33 | 34 | ///#begin zh-cn 35 | /** 36 | * @brief 位置索引 37 | */ 38 | ///#end 39 | ///#begin en 40 | /** 41 | * @brief Index path. 42 | */ 43 | ///#end 44 | @property (nonatomic,retain) NSIndexPath *indexPath; 45 | 46 | @end 47 | -------------------------------------------------------------------------------- /Pods/FlatUIKit/Classes/ios/FUIButton.h: -------------------------------------------------------------------------------- 1 | // 2 | // FUIButton.h 3 | // FlatUI 4 | // 5 | // Created by Jack Flintermann on 5/7/13. 6 | // Copyright (c) 2013 Jack Flintermann. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface FUIButton : UIButton 12 | 13 | @property(nonatomic, strong, readwrite) UIColor *buttonColor UI_APPEARANCE_SELECTOR; 14 | @property(nonatomic, strong, readwrite) UIColor *shadowColor UI_APPEARANCE_SELECTOR; 15 | @property(nonatomic, strong, readwrite) UIColor *highlightedColor UI_APPEARANCE_SELECTOR; 16 | @property(nonatomic, strong, readwrite) UIColor *disabledColor UI_APPEARANCE_SELECTOR; 17 | @property(nonatomic, strong, readwrite) UIColor *disabledShadowColor UI_APPEARANCE_SELECTOR; 18 | @property(nonatomic, readwrite) CGFloat shadowHeight UI_APPEARANCE_SELECTOR; 19 | @property(nonatomic, readwrite) CGFloat cornerRadius UI_APPEARANCE_SELECTOR; 20 | 21 | @end 22 | -------------------------------------------------------------------------------- /MomentsPhoto/MomentsPhoto-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // MomentsPhoto-Prefix.pch 3 | // MomentsPhoto 4 | // 5 | // Created by HooJackie on 14/7/16. 6 | // Copyright (c) 2014年 jackie. All rights reserved. 7 | // 8 | 9 | #ifndef MomentsPhoto_MomentsPhoto_Prefix_pch 10 | #define MomentsPhoto_MomentsPhoto_Prefix_pch 11 | 12 | // Include any system framework and library headers here that should be included in all compilation units. 13 | // You will also need to set the Prefix Header build setting of one or more of your targets to reference this file. 14 | 15 | #ifdef DEBUG 16 | #define NSLog(FORMAT, ...) fprintf(stderr,"%s:%d\t%s\n",[[[NSString stringWithUTF8String:__FILE__] lastPathComponent] UTF8String], __LINE__, [[NSString stringWithFormat:FORMAT, ##__VA_ARGS__] UTF8String]); 17 | #else 18 | #define NSLog(FORMAT, ...) nil 19 | #endif 20 | 21 | #import 22 | #import 23 | 24 | 25 | 26 | #endif 27 | -------------------------------------------------------------------------------- /Pods/FlatUIKit/Classes/ios/UITabBar+FlatUI.m: -------------------------------------------------------------------------------- 1 | // 2 | // UITabBar+FlatUI.m 3 | // FlatUI 4 | // 5 | // Created by Jack Flintermann on 5/3/13. 6 | // Copyright (c) 2013 Jack Flintermann. All rights reserved. 7 | // 8 | 9 | #import "UITabBar+FlatUI.h" 10 | #import "UIImage+FlatUI.h" 11 | 12 | @implementation UITabBar (FlatUI) 13 | 14 | - (void)configureFlatTabBarWithColor:(UIColor *)color { 15 | [self setBackgroundImage:[UIImage imageWithColor:color cornerRadius:0]]; 16 | } 17 | 18 | - (void)configureFlatTabBarWithSelectedColor:(UIColor *)selectedColor { 19 | [self setSelectionIndicatorImage:[UIImage imageWithColor:selectedColor cornerRadius:6.0]]; 20 | } 21 | 22 | - (void)configureFlatTabBarWithColor:(UIColor *)color 23 | selectedColor:(UIColor *)selectedColor { 24 | [self configureFlatTabBarWithColor:color]; 25 | [self configureFlatTabBarWithSelectedColor:selectedColor]; 26 | } 27 | 28 | @end 29 | -------------------------------------------------------------------------------- /Pods/FlatUIKit/Classes/ios/UIToolbar+FlatUI.m: -------------------------------------------------------------------------------- 1 | // 2 | // Created by Jonathon Hibbard on 6/13/13. 3 | // Copyright (c) 2013 Integrated Events. All rights reserved. 4 | // 5 | // To change the template use AppCode | Preferences | File Templates. 6 | // 7 | 8 | #import "UIToolbar+FlatUI.h" 9 | #import "UIImage+FlatUI.h" 10 | 11 | @implementation UIToolbar (FlatUI) 12 | 13 | - (void)configureFlatToolbarWithColor:(UIColor *)color { 14 | [self setBackgroundImage:[UIImage imageWithColor:color cornerRadius:0] 15 | forToolbarPosition:UIToolbarPositionAny 16 | barMetrics:UIBarMetricsDefault]; 17 | 18 | if ([self respondsToSelector:@selector(setShadowImage:forToolbarPosition:)]) { 19 | UIImage *clearShadowImage = [UIImage imageWithColor:[UIColor clearColor] cornerRadius:0]; 20 | [self setShadowImage:clearShadowImage forToolbarPosition:UIToolbarPositionAny]; 21 | } 22 | } 23 | 24 | @end 25 | -------------------------------------------------------------------------------- /lib/ShareSDK/Core/AGCommon.framework/Headers/CMImageView.h: -------------------------------------------------------------------------------- 1 | 2 | #import 3 | 4 | ///#begin zh-cn 5 | /** 6 | * @brief 图片视图 7 | */ 8 | ///#end 9 | ///#begin en 10 | /** 11 | * @brief Image View. 12 | */ 13 | ///#end 14 | @interface CMImageView : UIControl 15 | { 16 | @private 17 | UIImageView *_imageView; 18 | UIImage *_image; 19 | UIImage *_defaultImage; 20 | 21 | BOOL _bNeedLayout; 22 | } 23 | 24 | ///#begin zh-cn 25 | /** 26 | * @brief 图片对象 27 | */ 28 | ///#end 29 | ///#begin en 30 | /** 31 | * @brief Image object. 32 | */ 33 | ///#end 34 | @property (nonatomic,retain) UIImage *image; 35 | 36 | ///#begin zh-cn 37 | /** 38 | * @brief 默认图片对象,在没有设置图片时显示 39 | */ 40 | ///#end 41 | ///#begin en 42 | /** 43 | * @brief Default image object,When the display image is not set image property. 44 | */ 45 | ///#end 46 | @property (nonatomic,retain) UIImage *defaultImage; 47 | 48 | 49 | 50 | @end 51 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods/Pods.debug.xcconfig: -------------------------------------------------------------------------------- 1 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 2 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/500px-iOS-api" "${PODS_ROOT}/Headers/Public/FlatUIKit" "${PODS_ROOT}/Headers/Public/MBProgressHUD" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/SVPullToRefresh" 3 | OTHER_CFLAGS = $(inherited) -isystem "${PODS_ROOT}/Headers/Public" -isystem "${PODS_ROOT}/Headers/Public/500px-iOS-api" -isystem "${PODS_ROOT}/Headers/Public/FlatUIKit" -isystem "${PODS_ROOT}/Headers/Public/MBProgressHUD" -isystem "${PODS_ROOT}/Headers/Public/SDWebImage" -isystem "${PODS_ROOT}/Headers/Public/SVPullToRefresh" 4 | OTHER_LDFLAGS = $(inherited) -ObjC -l"500px-iOS-api" -l"FlatUIKit" -l"MBProgressHUD" -l"SDWebImage" -l"SVPullToRefresh" -framework "CoreGraphics" -framework "CoreText" -framework "ImageIO" -framework "QuartzCore" 5 | PODS_ROOT = ${SRCROOT}/Pods -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods/Pods.release.xcconfig: -------------------------------------------------------------------------------- 1 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 2 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/500px-iOS-api" "${PODS_ROOT}/Headers/Public/FlatUIKit" "${PODS_ROOT}/Headers/Public/MBProgressHUD" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/SVPullToRefresh" 3 | OTHER_CFLAGS = $(inherited) -isystem "${PODS_ROOT}/Headers/Public" -isystem "${PODS_ROOT}/Headers/Public/500px-iOS-api" -isystem "${PODS_ROOT}/Headers/Public/FlatUIKit" -isystem "${PODS_ROOT}/Headers/Public/MBProgressHUD" -isystem "${PODS_ROOT}/Headers/Public/SDWebImage" -isystem "${PODS_ROOT}/Headers/Public/SVPullToRefresh" 4 | OTHER_LDFLAGS = $(inherited) -ObjC -l"500px-iOS-api" -l"FlatUIKit" -l"MBProgressHUD" -l"SDWebImage" -l"SVPullToRefresh" -framework "CoreGraphics" -framework "CoreText" -framework "ImageIO" -framework "QuartzCore" 5 | PODS_ROOT = ${SRCROOT}/Pods -------------------------------------------------------------------------------- /MomentsPhoto/Model/HooPhotoStreamPage.h: -------------------------------------------------------------------------------- 1 | // 2 | // HooPhotoStreamPage.h 3 | // MomentsPhoto 4 | // 此模型代表照片流中的一页,每页包含一定数量的照片集合。 5 | // Created by HooJackie on 14/7/17. 6 | // Copyright (c) 2014年 jackie. All rights reserved. 7 | // 8 | 9 | @class HooPhoto; 10 | @class HooPhotoStream; 11 | 12 | @interface HooPhotoStreamPage : NSObject 13 | /* 14 | 引用此页所在的照片流 15 | */ 16 | @property (nonatomic, weak, readonly) HooPhotoStream *photoStream; 17 | 18 | /* 19 | 获取当前也所在页数,起始值为1 20 | */ 21 | @property (nonatomic,assign, readonly) NSInteger pageNumber; 22 | /* 23 | 初始化页面的照片流数据 24 | */ 25 | - (instancetype)initWithPhotoStream:(HooPhotoStream *)photoStream 26 | pageNumber:(NSInteger)pageNmuber; 27 | /* 28 | 根据字典设置页面属性 29 | */ 30 | - (void)setAttribute:(NSDictionary *)attributes; 31 | /* 32 | 获取页面中的照片数量 33 | */ 34 | - (NSUInteger)photoCount; 35 | /* 36 | 根据索引获取页面中的照片 37 | */ 38 | - (HooPhoto *)photoAtIndex:(NSUInteger)index; 39 | 40 | @end 41 | -------------------------------------------------------------------------------- /lib/ShareSDK/Core/AGCommon.framework/Headers/CMQuiltItemView.h: -------------------------------------------------------------------------------- 1 | 2 | 3 | #import 4 | #import "ICMQuiltItemView.h" 5 | 6 | ///#begin zh-cn 7 | /** 8 | * @brief 瀑布流子项视图 9 | */ 10 | ///#end 11 | ///#begin en 12 | /** 13 | * @brief Quilt item view. 14 | */ 15 | ///#end 16 | @interface CMQuiltItemView : UIView 17 | { 18 | @private 19 | NSString *_reuseIdentifier; 20 | id _constructorDelegate; 21 | } 22 | 23 | ///#begin zh-cn 24 | /** 25 | * @brief 复用标识 26 | */ 27 | ///#end 28 | ///#begin en 29 | /** 30 | * @brief Reuse identifier. 31 | */ 32 | ///#end 33 | @property (nonatomic,readonly) NSString *reuseIdentifier; 34 | 35 | ///#begin zh-cn 36 | /** 37 | * @brief 构造器协议对象 38 | */ 39 | ///#end 40 | ///#begin en 41 | /** 42 | * @brief Constructor delegate object. 43 | */ 44 | ///#end 45 | @property (nonatomic,assign) id constructorDelegate; 46 | 47 | 48 | 49 | @end 50 | -------------------------------------------------------------------------------- /Pods/FlatUIKit/Classes/ios/FlatUIKit.h: -------------------------------------------------------------------------------- 1 | // 2 | // FlatUIKit.h 3 | // FlatUI 4 | // 5 | // Created by Keisuke Kimura on 6/8/13. 6 | // Copyright (c) 2013 Keisuke Kimura. All rights reserved. 7 | // 8 | 9 | #ifndef FlatUI_FlatUIKit_h 10 | #define FlatUI_FlatUIKit_h 11 | 12 | #if TARGET_OS_IPHONE 13 | #import 14 | #import 15 | #endif 16 | 17 | #endif 18 | 19 | #import "FUIAlertView.h" 20 | #import "FUIButton.h" 21 | #import "FUITextField.h" 22 | #import "FUICellBackgroundView.h" 23 | #import "FUISegmentedControl.h" 24 | #import "FUISwitch.h" 25 | #import "UIBarButtonItem+FlatUI.h" 26 | #import "UIColor+FlatUI.h" 27 | #import "UIFont+FlatUI.h" 28 | #import "UIImage+FlatUI.h" 29 | #import "UINavigationBar+FlatUI.h" 30 | #import "UIProgressView+FlatUI.h" 31 | #import "UIStepper+FlatUI.h" 32 | #import "UISlider+FlatUI.h" 33 | #import "UITabBar+FlatUI.h" 34 | #import "UITableViewCell+FlatUI.h" 35 | #import "UIToolbar+FlatUI.h" 36 | #import "UIPopoverController+FlatUI.h" -------------------------------------------------------------------------------- /lib/ShareSDK/Core/ShareSDKCoreService.framework/Headers/ISSCOpenApp.h: -------------------------------------------------------------------------------- 1 | ///#begin zh-cn 2 | // 3 | // Created by ShareSDK.cn on 13-1-14. 4 | // 官网地址:http://www.ShareSDK.cn 5 | // 技术支持邮箱:support@sharesdk.cn 6 | // 官方微信:ShareSDK (如果发布新版本的话,我们将会第一时间通过微信将版本更新内容推送给您。如果使用过程中有任何问题,也可以通过微信与我们取得联系,我们将会在24小时内给予回复) 7 | // 商务QQ:4006852216 8 | // Copyright (c) 2013年 ShareSDK.cn. All rights reserved. 9 | // 10 | ///#end 11 | ///#begin en 12 | // 13 | // Created by ShareSDK.cn on 13-1-14. 14 | // Website:http://www.ShareSDK.cn 15 | // Support E-mail:support@sharesdk.cn 16 | // WeChat ID:ShareSDK (If publish a new version, we will be push the updates content of version to you. If you have any questions about the ShareSDK, you can get in touch through the WeChat with us, we will respond within 24 hours) 17 | // Business QQ:4006852216 18 | // Copyright (c) 2013年 ShareSDK.cn. All rights reserved. 19 | // 20 | ///#end 21 | 22 | #import 23 | 24 | @protocol ISSCOpenApp 25 | 26 | @end 27 | -------------------------------------------------------------------------------- /MomentsPhoto/Model/HooPhotoStream.h: -------------------------------------------------------------------------------- 1 | // 2 | // HooPhotoStreamPage.h 3 | // MomentsPhoto 4 | // 照片流。用于显示到多个页面中,提高检索效率 5 | // Created by HooJackie on 14/7/16. 6 | // Copyright (c) 2014年 jackie. All rights reserved. 7 | // 8 | 9 | #import 10 | @class HooPhoto; 11 | 12 | typedef void(^HooPhotoCompletionBlock)(HooPhoto *photo,NSError *error); 13 | 14 | //没有获取到照片时照片数量HooPhotoStreamNoCount 15 | enum { 16 | HooPhotoStreamNoPhotoCount = -1 17 | }; 18 | 19 | @interface HooPhotoStream : NSObject 20 | 21 | // 获取照片类型 22 | @property (nonatomic, assign, readonly) PXAPIHelperPhotoFeature feature; 23 | //获取照片目录 24 | @property (nonatomic, assign, readonly) PXPhotoModelCategory category; 25 | 26 | //初始化照片流 27 | - (instancetype)initWithFeature:(PXAPIHelperPhotoFeature)feature 28 | category:(PXPhotoModelCategory)category; 29 | 30 | //获取照片流中的照片,如果没有完成加载照片流,值为HooPhotoStreamNoCount 31 | - (NSInteger)photoCount; 32 | 33 | //从网络获取照片 34 | - (HooPhoto *)photoAtIndex:(NSUInteger)index completion:(HooPhotoCompletionBlock)completionBlock; 35 | 36 | @end 37 | -------------------------------------------------------------------------------- /MomentsPhotoTests/MomentsPhotoTests.m: -------------------------------------------------------------------------------- 1 | // 2 | // MomentsPhotoTests.m 3 | // MomentsPhotoTests 4 | // 5 | // Created by HooJackie on 14/7/16. 6 | // Copyright (c) 2014年 jackie. All rights reserved. 7 | // 8 | 9 | #import 10 | #import 11 | 12 | @interface MomentsPhotoTests : XCTestCase 13 | 14 | @end 15 | 16 | @implementation MomentsPhotoTests 17 | 18 | - (void)setUp { 19 | [super setUp]; 20 | // Put setup code here. This method is called before the invocation of each test method in the class. 21 | } 22 | 23 | - (void)tearDown { 24 | // Put teardown code here. This method is called after the invocation of each test method in the class. 25 | [super tearDown]; 26 | } 27 | 28 | - (void)testExample { 29 | // This is an example of a functional test case. 30 | XCTAssert(YES, @"Pass"); 31 | } 32 | 33 | - (void)testPerformanceExample { 34 | // This is an example of a performance test case. 35 | [self measureBlock:^{ 36 | // Put the code you want to measure the time of here. 37 | }]; 38 | } 39 | 40 | @end 41 | -------------------------------------------------------------------------------- /Pods/SVPullToRefresh/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2012 Sam Vermette 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: 4 | 5 | The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 6 | 7 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -------------------------------------------------------------------------------- /Pods/500px-iOS-api/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (C) 2012 Ash Furrow, 500px 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: 4 | 5 | The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 6 | 7 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 8 | -------------------------------------------------------------------------------- /lib/ShareSDK/Core/AGCommon.framework/Headers/CMDeviceInfo.h: -------------------------------------------------------------------------------- 1 | 2 | #import 3 | 4 | ///#begin zh-cn 5 | /** 6 | * @brief 设备信息 7 | */ 8 | ///#end 9 | ///#begin en 10 | /** 11 | * @brief Device information. 12 | */ 13 | ///#end 14 | @interface CMDeviceInfo : NSObject 15 | 16 | ///#begin zh-cn 17 | /** 18 | * @brief 取得网卡的物理地址 19 | * 20 | * @return 网卡物理地址 21 | */ 22 | ///#end 23 | ///#begin en 24 | /** 25 | * @brief Get MAC address. 26 | * 27 | * @return MAC address. 28 | */ 29 | ///#end 30 | + (NSString *)macAddress; 31 | 32 | ///#begin zh-cn 33 | /** 34 | * @brief 获取设备型号.http://en.wikipedia.org/wiki/List_of_iOS_devices 35 | * 36 | * @return 设备型号:设备型号对照如下:https://github.com/InderKumarRathore/UIDeviceUtil/blob/master/UIDeviceUtil.m 37 | */ 38 | ///#end 39 | ///#begin en 40 | /** 41 | * @brief Get device model.http://en.wikipedia.org/wiki/List_of_iOS_devices 42 | * 43 | * @return Device model. Model follows:https://github.com/InderKumarRathore/UIDeviceUtil/blob/master/UIDeviceUtil.m 44 | */ 45 | ///#end 46 | + (NSString *)deviceModel; 47 | 48 | @end 49 | -------------------------------------------------------------------------------- /Pods/FlatUIKit/Classes/ios/FUISwitch.h: -------------------------------------------------------------------------------- 1 | // 2 | // FUISwitch.h 3 | // FlatUI 4 | // 5 | // Created by Jack Flintermann on 5/3/13. 6 | // Copyright (c) 2013 Jack Flintermann. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface FUISwitch : UIControl 12 | 13 | @property(nonatomic,getter=isOn) BOOL on; 14 | @property(nonatomic, strong, readwrite) UIColor *onBackgroundColor UI_APPEARANCE_SELECTOR; 15 | @property(nonatomic, strong, readwrite) UIColor *offBackgroundColor UI_APPEARANCE_SELECTOR; 16 | @property(nonatomic, strong, readwrite) UIColor *onColor UI_APPEARANCE_SELECTOR; 17 | @property(nonatomic, strong, readwrite) UIColor *offColor UI_APPEARANCE_SELECTOR; 18 | @property(nonatomic, strong, readwrite) UIColor *highlightedColor UI_APPEARANCE_SELECTOR; 19 | @property(nonatomic, readwrite) CGFloat switchCornerRadius UI_APPEARANCE_SELECTOR; 20 | @property(nonatomic, readwrite) CGFloat percentOn; 21 | @property(weak, readwrite, nonatomic) UILabel *offLabel; 22 | @property(weak, readwrite, nonatomic) UILabel *onLabel; 23 | 24 | - (void)setOn:(BOOL)on animated:(BOOL)animated; // does not send action 25 | 26 | @end 27 | --------------------------------------------------------------------------------