├── .gitignore ├── Documents └── UI │ └── Home │ ├── Home_Content.png │ ├── Home_Content_ 标注.sketch │ ├── Home_Content_2.png │ ├── Home_Content_2_ 标注.sketch │ ├── Pixel Winch Image.png │ ├── Question_Praise.png │ ├── Question_Praise.sketch │ ├── Thing.png │ └── Thing.sketch ├── LICENSE ├── MyOne ├── MyOne.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── MyOne.xcworkspace │ └── contents.xcworkspacedata ├── MyOne │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Fonts │ │ └── Century Gothic Bold.TTF │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── icon-120x120-1.png │ │ │ ├── icon-120x120.png │ │ │ ├── icon-180x180.png │ │ │ ├── icon-58x58.png │ │ │ ├── icon-80x80.png │ │ │ └── icon-87x87.png │ │ ├── Common │ │ │ ├── common_icon_error.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── common_icon_error.png │ │ │ │ ├── common_icon_error@2x.png │ │ │ │ └── common_icon_error@3x.png │ │ │ ├── common_icon_right.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── common_icon_right.png │ │ │ │ ├── common_icon_right@2x.png │ │ │ │ └── common_icon_right@3x.png │ │ │ ├── home_like.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── home_like@2x.png │ │ │ │ └── home_like@3x.png │ │ │ ├── home_likeBg.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── home_likeBg@2x.png │ │ │ │ └── home_likeBg@3x.png │ │ │ ├── home_like_hl.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── home_like_hl@2x.png │ │ │ │ └── home_like_hl@3x.png │ │ │ └── horizontalLine.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── horizontalLine@2x.png │ │ │ │ └── horizontalLine@3x.png │ │ ├── Home │ │ │ ├── contBack.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── contBack@2x.png │ │ │ │ └── contBack@3x.png │ │ │ └── contBack_nt.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── contBack_nt@2x.png │ │ │ │ └── contBack_nt@3x.png │ │ ├── LaunchImage.launchimage │ │ │ ├── Contents.json │ │ │ ├── launch_image640x1136.png │ │ │ ├── launch_image640x960.png │ │ │ ├── launch_image750x1334.png │ │ │ └── launch_image@1242x2208.png │ │ ├── Navbar │ │ │ ├── navLogo.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── navLogo@2x.png │ │ │ │ └── navLogo@3x.png │ │ │ ├── nav_share_btn_highlighted.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── nav_share_btn_highlighted@2x.png │ │ │ │ └── nav_share_btn_highlighted@3x.png │ │ │ └── nav_share_btn_normal.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── nav_share_btn_normal@2x.png │ │ │ │ └── nav_share_btn_normal@3x.png │ │ ├── Person │ │ │ ├── copyright.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── copyright@2x.png │ │ │ │ └── copyright@3x.png │ │ │ ├── copyright_nt.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── copyright_nt@2x.png │ │ │ │ └── copyright_nt@3x.png │ │ │ ├── person_icon.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── person_icon@2x.png │ │ │ │ └── person_icon@3x.png │ │ │ └── setting.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── setting@2x.png │ │ │ │ └── setting@3x.png │ │ └── Tabbar │ │ │ ├── tabbar_item_home.imageset │ │ │ ├── Contents.json │ │ │ ├── tabbar_item_home@2x.png │ │ │ └── tabbar_item_home@3x.png │ │ │ ├── tabbar_item_home_selected.imageset │ │ │ ├── Contents.json │ │ │ ├── tabbar_item_home_selected@2x.png │ │ │ └── tabbar_item_home_selected@3x.png │ │ │ ├── tabbar_item_person.imageset │ │ │ ├── Contents.json │ │ │ ├── tabbar_item_person@2x.png │ │ │ └── tabbar_item_person@3x.png │ │ │ ├── tabbar_item_person_selected.imageset │ │ │ ├── Contents.json │ │ │ ├── tabbar_item_person_selected@2x.png │ │ │ └── tabbar_item_person_selected@3x.png │ │ │ ├── tabbar_item_question.imageset │ │ │ ├── Contents.json │ │ │ ├── tabbar_item_question@2x.png │ │ │ └── tabbar_item_question@3x.png │ │ │ ├── tabbar_item_question_selected.imageset │ │ │ ├── Contents.json │ │ │ ├── tabbar_item_question_selected@2x.png │ │ │ └── tabbar_item_question_selected@3x.png │ │ │ ├── tabbar_item_reading.imageset │ │ │ ├── Contents.json │ │ │ ├── tabbar_item_reading@2x.png │ │ │ └── tabbar_item_reading@3x.png │ │ │ ├── tabbar_item_reading_selected.imageset │ │ │ ├── Contents.json │ │ │ ├── tabbar_item_reading_selected@2x.png │ │ │ └── tabbar_item_reading_selected@3x.png │ │ │ ├── tabbar_item_thing.imageset │ │ │ ├── Contents.json │ │ │ ├── tabbar_item_thing@2x.png │ │ │ └── tabbar_item_thing@3x.png │ │ │ └── tabbar_item_thing_selected.imageset │ │ │ ├── Contents.json │ │ │ ├── tabbar_item_thing_selected@2x.png │ │ │ └── tabbar_item_thing_selected@3x.png │ ├── Info.plist │ ├── Modules │ │ ├── HomeEntity.h │ │ ├── HomeEntity.m │ │ ├── QuestionEntity.h │ │ ├── QuestionEntity.m │ │ ├── ReadingEntity.h │ │ ├── ReadingEntity.m │ │ ├── ThingEntity.h │ │ └── ThingEntity.m │ ├── MyOne.pch │ ├── TestDatas │ │ ├── home_content.txt │ │ ├── question_content.txt │ │ ├── reading_content_0.txt │ │ ├── reading_content_1.txt │ │ ├── reading_content_2.txt │ │ ├── reading_content_3.txt │ │ ├── reading_content_4.txt │ │ └── thing_content.txt │ ├── ThirdParty │ │ └── DSNavigationBar │ │ │ ├── DSNavigationBar.h │ │ │ └── DSNavigationBar.m │ ├── Utilities │ │ ├── AppConfigure.h │ │ ├── AppConfigure.m │ │ ├── BaseFunction.h │ │ ├── BaseFunction.m │ │ ├── Constants.h │ │ ├── HTTPTool.h │ │ ├── HTTPTool.m │ │ ├── TopWindow.h │ │ └── TopWindow.m │ ├── ViewControllers │ │ ├── AboutViewController.h │ │ ├── AboutViewController.m │ │ ├── BaseViewController │ │ │ ├── BaseViewController.h │ │ │ └── BaseViewController.m │ │ ├── HomeViewController.h │ │ ├── HomeViewController.m │ │ ├── PersonViewController.h │ │ ├── PersonViewController.m │ │ ├── QuestionViewController.h │ │ ├── QuestionViewController.m │ │ ├── ReadingViewController.h │ │ ├── ReadingViewController.m │ │ ├── SettingsViewController.h │ │ ├── SettingsViewController.m │ │ ├── ThingViewController.h │ │ └── ThingViewController.m │ ├── Views │ │ ├── CircularLoaderView.h │ │ ├── CircularLoaderView.m │ │ ├── CustomImageView.h │ │ ├── CustomImageView.m │ │ ├── HomeView.h │ │ ├── HomeView.m │ │ ├── PraiseView.h │ │ ├── PraiseView.m │ │ ├── QuestionView.h │ │ ├── QuestionView.m │ │ ├── ReadingAuthorView.h │ │ ├── ReadingAuthorView.m │ │ ├── ReadingView.h │ │ ├── ReadingView.m │ │ ├── RightPullToRefreshView.h │ │ ├── RightPullToRefreshView.m │ │ ├── ThingView.h │ │ └── ThingView.m │ └── main.m ├── MyOneTests │ ├── Info.plist │ └── MyOneTests.m ├── Podfile ├── Podfile.lock └── Pods │ ├── AFNetworking │ ├── AFNetworking │ │ ├── AFHTTPRequestOperation.h │ │ ├── AFHTTPRequestOperation.m │ │ ├── AFHTTPRequestOperationManager.h │ │ ├── AFHTTPRequestOperationManager.m │ │ ├── AFHTTPSessionManager.h │ │ ├── AFHTTPSessionManager.m │ │ ├── AFNetworkReachabilityManager.h │ │ ├── AFNetworkReachabilityManager.m │ │ ├── AFNetworking.h │ │ ├── AFSecurityPolicy.h │ │ ├── AFSecurityPolicy.m │ │ ├── AFURLConnectionOperation.h │ │ ├── AFURLConnectionOperation.m │ │ ├── AFURLRequestSerialization.h │ │ ├── AFURLRequestSerialization.m │ │ ├── AFURLResponseSerialization.h │ │ ├── AFURLResponseSerialization.m │ │ ├── AFURLSessionManager.h │ │ └── AFURLSessionManager.m │ ├── LICENSE │ ├── README.md │ └── UIKit+AFNetworking │ │ ├── AFNetworkActivityIndicatorManager.h │ │ ├── AFNetworkActivityIndicatorManager.m │ │ ├── UIActivityIndicatorView+AFNetworking.h │ │ ├── UIActivityIndicatorView+AFNetworking.m │ │ ├── UIAlertView+AFNetworking.h │ │ ├── UIAlertView+AFNetworking.m │ │ ├── UIButton+AFNetworking.h │ │ ├── UIButton+AFNetworking.m │ │ ├── UIImageView+AFNetworking.h │ │ ├── UIImageView+AFNetworking.m │ │ ├── UIKit+AFNetworking.h │ │ ├── UIProgressView+AFNetworking.h │ │ ├── UIProgressView+AFNetworking.m │ │ ├── UIRefreshControl+AFNetworking.h │ │ ├── UIRefreshControl+AFNetworking.m │ │ ├── UIWebView+AFNetworking.h │ │ └── UIWebView+AFNetworking.m │ ├── DKNightVersion │ ├── Classes │ │ ├── Controller │ │ │ ├── UIViewController+ChangeColor.h │ │ │ └── UIViewController+ChangeColor.m │ │ ├── Core │ │ │ ├── DKNightVersionManager.h │ │ │ └── DKNightVersionManager.m │ │ ├── DKNightVersion.h │ │ ├── Helper │ │ │ ├── DKNightVersionUtility.h │ │ │ ├── DKNightVersionUtility.m │ │ │ ├── UINavigationBar+Animation.h │ │ │ └── UINavigationBar+Animation.m │ │ └── UIKit │ │ │ ├── UIBarButtonItem │ │ │ ├── UIBarButtonItem+NightVersion.h │ │ │ ├── UIBarButtonItem+NightVersion.m │ │ │ ├── UIBarButtonItem+TintColor.h │ │ │ └── UIBarButtonItem+TintColor.m │ │ │ ├── UIButton │ │ │ ├── UIButton+NightVersion.h │ │ │ ├── UIButton+NightVersion.m │ │ │ ├── UIButton+TitleColor.h │ │ │ └── UIButton+TitleColor.m │ │ │ ├── UILabel │ │ │ ├── UILabel+NightVersion.h │ │ │ ├── UILabel+NightVersion.m │ │ │ ├── UILabel+TextColor.h │ │ │ └── UILabel+TextColor.m │ │ │ ├── UINavigationBar │ │ │ ├── UINavigationBar+BarTintColor.h │ │ │ ├── UINavigationBar+BarTintColor.m │ │ │ ├── UINavigationBar+NightVersion.h │ │ │ ├── UINavigationBar+NightVersion.m │ │ │ ├── UINavigationBar+TintColor.h │ │ │ └── UINavigationBar+TintColor.m │ │ │ ├── UITabBar │ │ │ ├── UITabBar+BarTintColor.h │ │ │ ├── UITabBar+BarTintColor.m │ │ │ ├── UITabBar+NightVersion.h │ │ │ └── UITabBar+NightVersion.m │ │ │ ├── UITableView │ │ │ ├── UITableView+NightVersion.h │ │ │ ├── UITableView+NightVersion.m │ │ │ ├── UITableView+SeparatorColor.h │ │ │ └── UITableView+SeparatorColor.m │ │ │ └── UIView │ │ │ ├── UIView+BackgroundColor.h │ │ │ ├── UIView+BackgroundColor.m │ │ │ ├── UIView+NightVersion.h │ │ │ └── UIView+NightVersion.m │ ├── Gemfile │ ├── Gemfile.lock │ ├── LICENSE │ ├── README.md │ ├── Rakefile │ ├── generator │ │ └── lib │ │ │ ├── generator.rb │ │ │ └── generator │ │ │ ├── json │ │ │ ├── method.json │ │ │ ├── project.json │ │ │ └── superklass.json │ │ │ ├── model │ │ │ ├── objc_class.rb │ │ │ └── objc_property.rb │ │ │ ├── parser.rb │ │ │ ├── project.rb │ │ │ ├── render.rb │ │ │ ├── template │ │ │ ├── color.h.erb │ │ │ ├── color.m.erb │ │ │ ├── nightversion.h.erb │ │ │ └── nightversion.m.erb │ │ │ └── xcodeproj.rb │ └── property.json │ ├── Headers │ ├── Private │ │ ├── AFNetworking │ │ │ ├── AFHTTPRequestOperation.h │ │ │ ├── AFHTTPRequestOperationManager.h │ │ │ ├── AFHTTPSessionManager.h │ │ │ ├── AFNetworkActivityIndicatorManager.h │ │ │ ├── AFNetworkReachabilityManager.h │ │ │ ├── AFNetworking.h │ │ │ ├── AFSecurityPolicy.h │ │ │ ├── AFURLConnectionOperation.h │ │ │ ├── AFURLRequestSerialization.h │ │ │ ├── AFURLResponseSerialization.h │ │ │ ├── AFURLSessionManager.h │ │ │ ├── UIActivityIndicatorView+AFNetworking.h │ │ │ ├── UIAlertView+AFNetworking.h │ │ │ ├── UIButton+AFNetworking.h │ │ │ ├── UIImageView+AFNetworking.h │ │ │ ├── UIKit+AFNetworking.h │ │ │ ├── UIProgressView+AFNetworking.h │ │ │ ├── UIRefreshControl+AFNetworking.h │ │ │ └── UIWebView+AFNetworking.h │ │ ├── DKNightVersion │ │ │ ├── DKNightVersion.h │ │ │ ├── DKNightVersionManager.h │ │ │ ├── DKNightVersionUtility.h │ │ │ ├── UIBarButtonItem+NightVersion.h │ │ │ ├── UIBarButtonItem+TintColor.h │ │ │ ├── UIButton+NightVersion.h │ │ │ ├── UIButton+TitleColor.h │ │ │ ├── UILabel+NightVersion.h │ │ │ ├── UILabel+TextColor.h │ │ │ ├── UINavigationBar+Animation.h │ │ │ ├── UINavigationBar+BarTintColor.h │ │ │ ├── UINavigationBar+NightVersion.h │ │ │ ├── UINavigationBar+TintColor.h │ │ │ ├── UITabBar+BarTintColor.h │ │ │ ├── UITabBar+NightVersion.h │ │ │ ├── UITableView+NightVersion.h │ │ │ ├── UITableView+SeparatorColor.h │ │ │ ├── UIView+BackgroundColor.h │ │ │ ├── UIView+NightVersion.h │ │ │ └── UIViewController+ChangeColor.h │ │ ├── MBProgressHUD │ │ │ └── MBProgressHUD.h │ │ ├── MJExtension │ │ │ ├── MJExtension.h │ │ │ ├── MJExtensionConst.h │ │ │ ├── MJFoundation.h │ │ │ ├── MJProperty.h │ │ │ ├── MJType.h │ │ │ ├── NSObject+MJCoding.h │ │ │ ├── NSObject+MJKeyValue.h │ │ │ ├── NSObject+MJProperty.h │ │ │ └── NSString+MJExtension.h │ │ ├── Masonry │ │ │ ├── MASCompositeConstraint.h │ │ │ ├── MASConstraint+Private.h │ │ │ ├── MASConstraint.h │ │ │ ├── MASConstraintMaker.h │ │ │ ├── MASLayoutConstraint.h │ │ │ ├── MASUtilities.h │ │ │ ├── MASViewAttribute.h │ │ │ ├── MASViewConstraint.h │ │ │ ├── Masonry.h │ │ │ ├── NSArray+MASAdditions.h │ │ │ ├── NSArray+MASShorthandAdditions.h │ │ │ ├── NSLayoutConstraint+MASDebugAdditions.h │ │ │ ├── View+MASAdditions.h │ │ │ ├── View+MASShorthandAdditions.h │ │ │ └── ViewController+MASAdditions.h │ │ ├── SDWebImage │ │ │ ├── NSData+ImageContentType.h │ │ │ ├── SDImageCache.h │ │ │ ├── SDWebImageCompat.h │ │ │ ├── SDWebImageDecoder.h │ │ │ ├── SDWebImageDownloader.h │ │ │ ├── SDWebImageDownloaderOperation.h │ │ │ ├── SDWebImageManager.h │ │ │ ├── SDWebImageOperation.h │ │ │ ├── SDWebImagePrefetcher.h │ │ │ ├── UIButton+WebCache.h │ │ │ ├── UIImage+GIF.h │ │ │ ├── UIImage+MultiFormat.h │ │ │ ├── UIImageView+HighlightedWebCache.h │ │ │ ├── UIImageView+WebCache.h │ │ │ └── UIView+WebCacheOperation.h │ │ └── iCarousel │ │ │ └── iCarousel.h │ └── Public │ │ ├── AFNetworking │ │ ├── AFHTTPRequestOperation.h │ │ ├── AFHTTPRequestOperationManager.h │ │ ├── AFHTTPSessionManager.h │ │ ├── AFNetworkActivityIndicatorManager.h │ │ ├── AFNetworkReachabilityManager.h │ │ ├── AFNetworking.h │ │ ├── AFSecurityPolicy.h │ │ ├── AFURLConnectionOperation.h │ │ ├── AFURLRequestSerialization.h │ │ ├── AFURLResponseSerialization.h │ │ ├── AFURLSessionManager.h │ │ ├── UIActivityIndicatorView+AFNetworking.h │ │ ├── UIAlertView+AFNetworking.h │ │ ├── UIButton+AFNetworking.h │ │ ├── UIImageView+AFNetworking.h │ │ ├── UIKit+AFNetworking.h │ │ ├── UIProgressView+AFNetworking.h │ │ ├── UIRefreshControl+AFNetworking.h │ │ └── UIWebView+AFNetworking.h │ │ ├── DKNightVersion │ │ ├── DKNightVersion.h │ │ ├── DKNightVersionManager.h │ │ ├── DKNightVersionUtility.h │ │ ├── UIBarButtonItem+NightVersion.h │ │ ├── UIBarButtonItem+TintColor.h │ │ ├── UIButton+NightVersion.h │ │ ├── UIButton+TitleColor.h │ │ ├── UILabel+NightVersion.h │ │ ├── UILabel+TextColor.h │ │ ├── UINavigationBar+Animation.h │ │ ├── UINavigationBar+BarTintColor.h │ │ ├── UINavigationBar+NightVersion.h │ │ ├── UINavigationBar+TintColor.h │ │ ├── UITabBar+BarTintColor.h │ │ ├── UITabBar+NightVersion.h │ │ ├── UITableView+NightVersion.h │ │ ├── UITableView+SeparatorColor.h │ │ ├── UIView+BackgroundColor.h │ │ ├── UIView+NightVersion.h │ │ └── UIViewController+ChangeColor.h │ │ ├── MBProgressHUD │ │ └── MBProgressHUD.h │ │ ├── MJExtension │ │ ├── MJExtension.h │ │ ├── MJExtensionConst.h │ │ ├── MJFoundation.h │ │ ├── MJProperty.h │ │ ├── MJType.h │ │ ├── NSObject+MJCoding.h │ │ ├── NSObject+MJKeyValue.h │ │ ├── NSObject+MJProperty.h │ │ └── NSString+MJExtension.h │ │ ├── Masonry │ │ ├── MASCompositeConstraint.h │ │ ├── MASConstraint+Private.h │ │ ├── MASConstraint.h │ │ ├── MASConstraintMaker.h │ │ ├── MASLayoutConstraint.h │ │ ├── MASUtilities.h │ │ ├── MASViewAttribute.h │ │ ├── MASViewConstraint.h │ │ ├── Masonry.h │ │ ├── NSArray+MASAdditions.h │ │ ├── NSArray+MASShorthandAdditions.h │ │ ├── NSLayoutConstraint+MASDebugAdditions.h │ │ ├── View+MASAdditions.h │ │ ├── View+MASShorthandAdditions.h │ │ └── ViewController+MASAdditions.h │ │ ├── SDWebImage │ │ ├── NSData+ImageContentType.h │ │ ├── SDImageCache.h │ │ ├── SDWebImageCompat.h │ │ ├── SDWebImageDecoder.h │ │ ├── SDWebImageDownloader.h │ │ ├── SDWebImageDownloaderOperation.h │ │ ├── SDWebImageManager.h │ │ ├── SDWebImageOperation.h │ │ ├── SDWebImagePrefetcher.h │ │ ├── UIButton+WebCache.h │ │ ├── UIImage+GIF.h │ │ ├── UIImage+MultiFormat.h │ │ ├── UIImageView+HighlightedWebCache.h │ │ ├── UIImageView+WebCache.h │ │ └── UIView+WebCacheOperation.h │ │ └── iCarousel │ │ └── iCarousel.h │ ├── MBProgressHUD │ ├── LICENSE │ ├── MBProgressHUD.h │ ├── MBProgressHUD.m │ └── README.mdown │ ├── MJExtension │ ├── LICENSE │ ├── MJExtension │ │ ├── MJExtension.h │ │ ├── MJExtensionConst.h │ │ ├── MJExtensionConst.m │ │ ├── MJFoundation.h │ │ ├── MJFoundation.m │ │ ├── MJProperty.h │ │ ├── MJProperty.m │ │ ├── MJType.h │ │ ├── MJType.m │ │ ├── NSObject+MJCoding.h │ │ ├── NSObject+MJCoding.m │ │ ├── NSObject+MJKeyValue.h │ │ ├── NSObject+MJKeyValue.m │ │ ├── NSObject+MJProperty.h │ │ ├── NSObject+MJProperty.m │ │ ├── NSString+MJExtension.h │ │ └── NSString+MJExtension.m │ └── README.md │ ├── Manifest.lock │ ├── Masonry │ ├── LICENSE │ ├── Masonry │ │ ├── MASCompositeConstraint.h │ │ ├── MASCompositeConstraint.m │ │ ├── MASConstraint+Private.h │ │ ├── MASConstraint.h │ │ ├── MASConstraint.m │ │ ├── MASConstraintMaker.h │ │ ├── MASConstraintMaker.m │ │ ├── MASLayoutConstraint.h │ │ ├── MASLayoutConstraint.m │ │ ├── MASUtilities.h │ │ ├── MASViewAttribute.h │ │ ├── MASViewAttribute.m │ │ ├── MASViewConstraint.h │ │ ├── MASViewConstraint.m │ │ ├── Masonry.h │ │ ├── NSArray+MASAdditions.h │ │ ├── NSArray+MASAdditions.m │ │ ├── NSArray+MASShorthandAdditions.h │ │ ├── NSLayoutConstraint+MASDebugAdditions.h │ │ ├── NSLayoutConstraint+MASDebugAdditions.m │ │ ├── View+MASAdditions.h │ │ ├── View+MASAdditions.m │ │ ├── View+MASShorthandAdditions.h │ │ ├── ViewController+MASAdditions.h │ │ └── ViewController+MASAdditions.m │ └── README.md │ ├── Pods.xcodeproj │ └── project.pbxproj │ ├── SDWebImage │ ├── LICENSE │ ├── README.md │ └── SDWebImage │ │ ├── NSData+ImageContentType.h │ │ ├── NSData+ImageContentType.m │ │ ├── SDImageCache.h │ │ ├── SDImageCache.m │ │ ├── SDWebImageCompat.h │ │ ├── SDWebImageCompat.m │ │ ├── SDWebImageDecoder.h │ │ ├── SDWebImageDecoder.m │ │ ├── SDWebImageDownloader.h │ │ ├── SDWebImageDownloader.m │ │ ├── SDWebImageDownloaderOperation.h │ │ ├── SDWebImageDownloaderOperation.m │ │ ├── SDWebImageManager.h │ │ ├── SDWebImageManager.m │ │ ├── SDWebImageOperation.h │ │ ├── SDWebImagePrefetcher.h │ │ ├── SDWebImagePrefetcher.m │ │ ├── UIButton+WebCache.h │ │ ├── UIButton+WebCache.m │ │ ├── UIImage+GIF.h │ │ ├── UIImage+GIF.m │ │ ├── UIImage+MultiFormat.h │ │ ├── UIImage+MultiFormat.m │ │ ├── UIImageView+HighlightedWebCache.h │ │ ├── UIImageView+HighlightedWebCache.m │ │ ├── UIImageView+WebCache.h │ │ ├── UIImageView+WebCache.m │ │ ├── UIView+WebCacheOperation.h │ │ └── UIView+WebCacheOperation.m │ ├── Target Support Files │ ├── Pods-AFNetworking │ │ ├── Pods-AFNetworking-Private.xcconfig │ │ ├── Pods-AFNetworking-dummy.m │ │ ├── Pods-AFNetworking-prefix.pch │ │ └── Pods-AFNetworking.xcconfig │ ├── Pods-DKNightVersion │ │ ├── Pods-DKNightVersion-Private.xcconfig │ │ ├── Pods-DKNightVersion-dummy.m │ │ ├── Pods-DKNightVersion-prefix.pch │ │ └── Pods-DKNightVersion.xcconfig │ ├── Pods-MBProgressHUD │ │ ├── Pods-MBProgressHUD-Private.xcconfig │ │ ├── Pods-MBProgressHUD-dummy.m │ │ ├── Pods-MBProgressHUD-prefix.pch │ │ └── Pods-MBProgressHUD.xcconfig │ ├── Pods-MJExtension │ │ ├── Pods-MJExtension-Private.xcconfig │ │ ├── Pods-MJExtension-dummy.m │ │ ├── Pods-MJExtension-prefix.pch │ │ └── Pods-MJExtension.xcconfig │ ├── Pods-Masonry │ │ ├── Pods-Masonry-Private.xcconfig │ │ ├── Pods-Masonry-dummy.m │ │ ├── Pods-Masonry-prefix.pch │ │ └── Pods-Masonry.xcconfig │ ├── Pods-SDWebImage │ │ ├── Pods-SDWebImage-Private.xcconfig │ │ ├── Pods-SDWebImage-dummy.m │ │ ├── Pods-SDWebImage-prefix.pch │ │ └── Pods-SDWebImage.xcconfig │ ├── Pods-iCarousel │ │ ├── Pods-iCarousel-Private.xcconfig │ │ ├── Pods-iCarousel-dummy.m │ │ ├── Pods-iCarousel-prefix.pch │ │ └── Pods-iCarousel.xcconfig │ └── Pods │ │ ├── Pods-acknowledgements.markdown │ │ ├── Pods-acknowledgements.plist │ │ ├── Pods-dummy.m │ │ ├── Pods-environment.h │ │ ├── Pods-resources.sh │ │ ├── Pods.debug.xcconfig │ │ └── Pods.release.xcconfig │ └── iCarousel │ ├── LICENCE.md │ ├── README.md │ └── iCarousel │ ├── iCarousel.h │ └── iCarousel.m ├── README.md └── Screenshot ├── Home.gif ├── Images ├── About.png ├── Home_0.png ├── Home_1.png ├── Personal.png ├── Question_0.png ├── Question_1.png ├── Reading_0.png ├── Reading_1.png ├── Settings.png └── Thing.png ├── NightMode ├── Night_Mode_Home.png ├── Night_Mode_Personal.png ├── Night_Mode_Question.png ├── Night_Mode_Reading_0.png ├── Night_Mode_Reading_1.png ├── Night_Mode_Settings.png └── Night_Mode_Thing.png ├── Personal.gif ├── Question.gif ├── Reading.gif └── Thing.gif /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | # MacOSX 3 | .DS_Store 4 | 5 | # Xcode 6 | # 7 | build/ 8 | *.pbxuser 9 | !default.pbxuser 10 | *.mode1v3 11 | !default.mode1v3 12 | *.mode2v3 13 | !default.mode2v3 14 | *.perspectivev3 15 | !default.perspectivev3 16 | xcuserdata 17 | *.xccheckout 18 | *.moved-aside 19 | DerivedData 20 | *.hmap 21 | *.ipa 22 | *.xcuserstate 23 | 24 | # CocoaPods 25 | # 26 | # We recommend against adding the Pods directory to your .gitignore. However 27 | # you should judge for yourself, the pros and cons are mentioned at: 28 | # http://guides.cocoapods.org/using/using-cocoapods.html#should-i-ignore-the-pods-directory-in-source-control 29 | # 30 | #Pods/ 31 | -------------------------------------------------------------------------------- /Documents/UI/Home/Home_Content.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilbn/MyOne-iOS/418d3ae9cd1ad15bf9301627a50ff75890d844de/Documents/UI/Home/Home_Content.png -------------------------------------------------------------------------------- /Documents/UI/Home/Home_Content_ 标注.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilbn/MyOne-iOS/418d3ae9cd1ad15bf9301627a50ff75890d844de/Documents/UI/Home/Home_Content_ 标注.sketch -------------------------------------------------------------------------------- /Documents/UI/Home/Home_Content_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilbn/MyOne-iOS/418d3ae9cd1ad15bf9301627a50ff75890d844de/Documents/UI/Home/Home_Content_2.png -------------------------------------------------------------------------------- /Documents/UI/Home/Home_Content_2_ 标注.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilbn/MyOne-iOS/418d3ae9cd1ad15bf9301627a50ff75890d844de/Documents/UI/Home/Home_Content_2_ 标注.sketch -------------------------------------------------------------------------------- /Documents/UI/Home/Pixel Winch Image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilbn/MyOne-iOS/418d3ae9cd1ad15bf9301627a50ff75890d844de/Documents/UI/Home/Pixel Winch Image.png -------------------------------------------------------------------------------- /Documents/UI/Home/Question_Praise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilbn/MyOne-iOS/418d3ae9cd1ad15bf9301627a50ff75890d844de/Documents/UI/Home/Question_Praise.png -------------------------------------------------------------------------------- /Documents/UI/Home/Question_Praise.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilbn/MyOne-iOS/418d3ae9cd1ad15bf9301627a50ff75890d844de/Documents/UI/Home/Question_Praise.sketch -------------------------------------------------------------------------------- /Documents/UI/Home/Thing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilbn/MyOne-iOS/418d3ae9cd1ad15bf9301627a50ff75890d844de/Documents/UI/Home/Thing.png -------------------------------------------------------------------------------- /Documents/UI/Home/Thing.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilbn/MyOne-iOS/418d3ae9cd1ad15bf9301627a50ff75890d844de/Documents/UI/Home/Thing.sketch -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2015 我的眼里只有代码 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | 23 | -------------------------------------------------------------------------------- /MyOne/MyOne.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /MyOne/MyOne.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /MyOne/MyOne/AppDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.h 3 | // MyOne 4 | // 5 | // Created by HelloWorld on 7/27/15. 6 | // Copyright (c) 2015 melody. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface AppDelegate : UIResponder 12 | 13 | @property (strong, nonatomic) UIWindow *window; 14 | 15 | 16 | @end 17 | 18 | -------------------------------------------------------------------------------- /MyOne/MyOne/Fonts/Century Gothic Bold.TTF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilbn/MyOne-iOS/418d3ae9cd1ad15bf9301627a50ff75890d844de/MyOne/MyOne/Fonts/Century Gothic Bold.TTF -------------------------------------------------------------------------------- /MyOne/MyOne/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "size" : "29x29", 5 | "idiom" : "iphone", 6 | "filename" : "icon-58x58.png", 7 | "scale" : "2x" 8 | }, 9 | { 10 | "size" : "29x29", 11 | "idiom" : "iphone", 12 | "filename" : "icon-87x87.png", 13 | "scale" : "3x" 14 | }, 15 | { 16 | "size" : "40x40", 17 | "idiom" : "iphone", 18 | "filename" : "icon-80x80.png", 19 | "scale" : "2x" 20 | }, 21 | { 22 | "size" : "40x40", 23 | "idiom" : "iphone", 24 | "filename" : "icon-120x120-1.png", 25 | "scale" : "3x" 26 | }, 27 | { 28 | "size" : "60x60", 29 | "idiom" : "iphone", 30 | "filename" : "icon-120x120.png", 31 | "scale" : "2x" 32 | }, 33 | { 34 | "size" : "60x60", 35 | "idiom" : "iphone", 36 | "filename" : "icon-180x180.png", 37 | "scale" : "3x" 38 | } 39 | ], 40 | "info" : { 41 | "version" : 1, 42 | "author" : "xcode" 43 | } 44 | } -------------------------------------------------------------------------------- /MyOne/MyOne/Images.xcassets/AppIcon.appiconset/icon-120x120-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilbn/MyOne-iOS/418d3ae9cd1ad15bf9301627a50ff75890d844de/MyOne/MyOne/Images.xcassets/AppIcon.appiconset/icon-120x120-1.png -------------------------------------------------------------------------------- /MyOne/MyOne/Images.xcassets/AppIcon.appiconset/icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilbn/MyOne-iOS/418d3ae9cd1ad15bf9301627a50ff75890d844de/MyOne/MyOne/Images.xcassets/AppIcon.appiconset/icon-120x120.png -------------------------------------------------------------------------------- /MyOne/MyOne/Images.xcassets/AppIcon.appiconset/icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilbn/MyOne-iOS/418d3ae9cd1ad15bf9301627a50ff75890d844de/MyOne/MyOne/Images.xcassets/AppIcon.appiconset/icon-180x180.png -------------------------------------------------------------------------------- /MyOne/MyOne/Images.xcassets/AppIcon.appiconset/icon-58x58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilbn/MyOne-iOS/418d3ae9cd1ad15bf9301627a50ff75890d844de/MyOne/MyOne/Images.xcassets/AppIcon.appiconset/icon-58x58.png -------------------------------------------------------------------------------- /MyOne/MyOne/Images.xcassets/AppIcon.appiconset/icon-80x80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilbn/MyOne-iOS/418d3ae9cd1ad15bf9301627a50ff75890d844de/MyOne/MyOne/Images.xcassets/AppIcon.appiconset/icon-80x80.png -------------------------------------------------------------------------------- /MyOne/MyOne/Images.xcassets/AppIcon.appiconset/icon-87x87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilbn/MyOne-iOS/418d3ae9cd1ad15bf9301627a50ff75890d844de/MyOne/MyOne/Images.xcassets/AppIcon.appiconset/icon-87x87.png -------------------------------------------------------------------------------- /MyOne/MyOne/Images.xcassets/Common/common_icon_error.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "common_icon_error.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "common_icon_error@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x", 16 | "filename" : "common_icon_error@3x.png" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /MyOne/MyOne/Images.xcassets/Common/common_icon_error.imageset/common_icon_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilbn/MyOne-iOS/418d3ae9cd1ad15bf9301627a50ff75890d844de/MyOne/MyOne/Images.xcassets/Common/common_icon_error.imageset/common_icon_error.png -------------------------------------------------------------------------------- /MyOne/MyOne/Images.xcassets/Common/common_icon_error.imageset/common_icon_error@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilbn/MyOne-iOS/418d3ae9cd1ad15bf9301627a50ff75890d844de/MyOne/MyOne/Images.xcassets/Common/common_icon_error.imageset/common_icon_error@2x.png -------------------------------------------------------------------------------- /MyOne/MyOne/Images.xcassets/Common/common_icon_error.imageset/common_icon_error@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilbn/MyOne-iOS/418d3ae9cd1ad15bf9301627a50ff75890d844de/MyOne/MyOne/Images.xcassets/Common/common_icon_error.imageset/common_icon_error@3x.png -------------------------------------------------------------------------------- /MyOne/MyOne/Images.xcassets/Common/common_icon_right.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "common_icon_right.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "common_icon_right@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x", 16 | "filename" : "common_icon_right@3x.png" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /MyOne/MyOne/Images.xcassets/Common/common_icon_right.imageset/common_icon_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilbn/MyOne-iOS/418d3ae9cd1ad15bf9301627a50ff75890d844de/MyOne/MyOne/Images.xcassets/Common/common_icon_right.imageset/common_icon_right.png -------------------------------------------------------------------------------- /MyOne/MyOne/Images.xcassets/Common/common_icon_right.imageset/common_icon_right@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilbn/MyOne-iOS/418d3ae9cd1ad15bf9301627a50ff75890d844de/MyOne/MyOne/Images.xcassets/Common/common_icon_right.imageset/common_icon_right@2x.png -------------------------------------------------------------------------------- /MyOne/MyOne/Images.xcassets/Common/common_icon_right.imageset/common_icon_right@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilbn/MyOne-iOS/418d3ae9cd1ad15bf9301627a50ff75890d844de/MyOne/MyOne/Images.xcassets/Common/common_icon_right.imageset/common_icon_right@3x.png -------------------------------------------------------------------------------- /MyOne/MyOne/Images.xcassets/Common/home_like.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x", 10 | "filename" : "home_like@2x.png" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x", 15 | "filename" : "home_like@3x.png" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /MyOne/MyOne/Images.xcassets/Common/home_like.imageset/home_like@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilbn/MyOne-iOS/418d3ae9cd1ad15bf9301627a50ff75890d844de/MyOne/MyOne/Images.xcassets/Common/home_like.imageset/home_like@2x.png -------------------------------------------------------------------------------- /MyOne/MyOne/Images.xcassets/Common/home_like.imageset/home_like@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilbn/MyOne-iOS/418d3ae9cd1ad15bf9301627a50ff75890d844de/MyOne/MyOne/Images.xcassets/Common/home_like.imageset/home_like@3x.png -------------------------------------------------------------------------------- /MyOne/MyOne/Images.xcassets/Common/home_likeBg.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x", 10 | "filename" : "home_likeBg@2x.png" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x", 15 | "filename" : "home_likeBg@3x.png" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /MyOne/MyOne/Images.xcassets/Common/home_likeBg.imageset/home_likeBg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilbn/MyOne-iOS/418d3ae9cd1ad15bf9301627a50ff75890d844de/MyOne/MyOne/Images.xcassets/Common/home_likeBg.imageset/home_likeBg@2x.png -------------------------------------------------------------------------------- /MyOne/MyOne/Images.xcassets/Common/home_likeBg.imageset/home_likeBg@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilbn/MyOne-iOS/418d3ae9cd1ad15bf9301627a50ff75890d844de/MyOne/MyOne/Images.xcassets/Common/home_likeBg.imageset/home_likeBg@3x.png -------------------------------------------------------------------------------- /MyOne/MyOne/Images.xcassets/Common/home_like_hl.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x", 10 | "filename" : "home_like_hl@2x.png" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x", 15 | "filename" : "home_like_hl@3x.png" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /MyOne/MyOne/Images.xcassets/Common/home_like_hl.imageset/home_like_hl@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilbn/MyOne-iOS/418d3ae9cd1ad15bf9301627a50ff75890d844de/MyOne/MyOne/Images.xcassets/Common/home_like_hl.imageset/home_like_hl@2x.png -------------------------------------------------------------------------------- /MyOne/MyOne/Images.xcassets/Common/home_like_hl.imageset/home_like_hl@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilbn/MyOne-iOS/418d3ae9cd1ad15bf9301627a50ff75890d844de/MyOne/MyOne/Images.xcassets/Common/home_like_hl.imageset/home_like_hl@3x.png -------------------------------------------------------------------------------- /MyOne/MyOne/Images.xcassets/Common/horizontalLine.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x", 10 | "filename" : "horizontalLine@2x.png" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x", 15 | "filename" : "horizontalLine@3x.png" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /MyOne/MyOne/Images.xcassets/Common/horizontalLine.imageset/horizontalLine@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilbn/MyOne-iOS/418d3ae9cd1ad15bf9301627a50ff75890d844de/MyOne/MyOne/Images.xcassets/Common/horizontalLine.imageset/horizontalLine@2x.png -------------------------------------------------------------------------------- /MyOne/MyOne/Images.xcassets/Common/horizontalLine.imageset/horizontalLine@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilbn/MyOne-iOS/418d3ae9cd1ad15bf9301627a50ff75890d844de/MyOne/MyOne/Images.xcassets/Common/horizontalLine.imageset/horizontalLine@3x.png -------------------------------------------------------------------------------- /MyOne/MyOne/Images.xcassets/Home/contBack.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x", 10 | "filename" : "contBack@2x.png" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x", 15 | "filename" : "contBack@3x.png" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /MyOne/MyOne/Images.xcassets/Home/contBack.imageset/contBack@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilbn/MyOne-iOS/418d3ae9cd1ad15bf9301627a50ff75890d844de/MyOne/MyOne/Images.xcassets/Home/contBack.imageset/contBack@2x.png -------------------------------------------------------------------------------- /MyOne/MyOne/Images.xcassets/Home/contBack.imageset/contBack@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilbn/MyOne-iOS/418d3ae9cd1ad15bf9301627a50ff75890d844de/MyOne/MyOne/Images.xcassets/Home/contBack.imageset/contBack@3x.png -------------------------------------------------------------------------------- /MyOne/MyOne/Images.xcassets/Home/contBack_nt.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x", 10 | "filename" : "contBack_nt@2x.png" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x", 15 | "filename" : "contBack_nt@3x.png" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /MyOne/MyOne/Images.xcassets/Home/contBack_nt.imageset/contBack_nt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilbn/MyOne-iOS/418d3ae9cd1ad15bf9301627a50ff75890d844de/MyOne/MyOne/Images.xcassets/Home/contBack_nt.imageset/contBack_nt@2x.png -------------------------------------------------------------------------------- /MyOne/MyOne/Images.xcassets/Home/contBack_nt.imageset/contBack_nt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilbn/MyOne-iOS/418d3ae9cd1ad15bf9301627a50ff75890d844de/MyOne/MyOne/Images.xcassets/Home/contBack_nt.imageset/contBack_nt@3x.png -------------------------------------------------------------------------------- /MyOne/MyOne/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "extent" : "full-screen", 5 | "idiom" : "iphone", 6 | "subtype" : "736h", 7 | "filename" : "launch_image@1242x2208.png", 8 | "minimum-system-version" : "8.0", 9 | "orientation" : "portrait", 10 | "scale" : "3x" 11 | }, 12 | { 13 | "extent" : "full-screen", 14 | "idiom" : "iphone", 15 | "subtype" : "667h", 16 | "filename" : "launch_image750x1334.png", 17 | "minimum-system-version" : "8.0", 18 | "orientation" : "portrait", 19 | "scale" : "2x" 20 | }, 21 | { 22 | "orientation" : "portrait", 23 | "idiom" : "iphone", 24 | "extent" : "full-screen", 25 | "minimum-system-version" : "7.0", 26 | "filename" : "launch_image640x960.png", 27 | "scale" : "2x" 28 | }, 29 | { 30 | "extent" : "full-screen", 31 | "idiom" : "iphone", 32 | "subtype" : "retina4", 33 | "filename" : "launch_image640x1136.png", 34 | "minimum-system-version" : "7.0", 35 | "orientation" : "portrait", 36 | "scale" : "2x" 37 | } 38 | ], 39 | "info" : { 40 | "version" : 1, 41 | "author" : "xcode" 42 | } 43 | } -------------------------------------------------------------------------------- /MyOne/MyOne/Images.xcassets/LaunchImage.launchimage/launch_image640x1136.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilbn/MyOne-iOS/418d3ae9cd1ad15bf9301627a50ff75890d844de/MyOne/MyOne/Images.xcassets/LaunchImage.launchimage/launch_image640x1136.png -------------------------------------------------------------------------------- /MyOne/MyOne/Images.xcassets/LaunchImage.launchimage/launch_image640x960.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilbn/MyOne-iOS/418d3ae9cd1ad15bf9301627a50ff75890d844de/MyOne/MyOne/Images.xcassets/LaunchImage.launchimage/launch_image640x960.png -------------------------------------------------------------------------------- /MyOne/MyOne/Images.xcassets/LaunchImage.launchimage/launch_image750x1334.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilbn/MyOne-iOS/418d3ae9cd1ad15bf9301627a50ff75890d844de/MyOne/MyOne/Images.xcassets/LaunchImage.launchimage/launch_image750x1334.png -------------------------------------------------------------------------------- /MyOne/MyOne/Images.xcassets/LaunchImage.launchimage/launch_image@1242x2208.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilbn/MyOne-iOS/418d3ae9cd1ad15bf9301627a50ff75890d844de/MyOne/MyOne/Images.xcassets/LaunchImage.launchimage/launch_image@1242x2208.png -------------------------------------------------------------------------------- /MyOne/MyOne/Images.xcassets/Navbar/navLogo.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x", 10 | "filename" : "navLogo@2x.png" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x", 15 | "filename" : "navLogo@3x.png" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /MyOne/MyOne/Images.xcassets/Navbar/navLogo.imageset/navLogo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilbn/MyOne-iOS/418d3ae9cd1ad15bf9301627a50ff75890d844de/MyOne/MyOne/Images.xcassets/Navbar/navLogo.imageset/navLogo@2x.png -------------------------------------------------------------------------------- /MyOne/MyOne/Images.xcassets/Navbar/navLogo.imageset/navLogo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilbn/MyOne-iOS/418d3ae9cd1ad15bf9301627a50ff75890d844de/MyOne/MyOne/Images.xcassets/Navbar/navLogo.imageset/navLogo@3x.png -------------------------------------------------------------------------------- /MyOne/MyOne/Images.xcassets/Navbar/nav_share_btn_highlighted.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x", 10 | "filename" : "nav_share_btn_highlighted@2x.png" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x", 15 | "filename" : "nav_share_btn_highlighted@3x.png" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /MyOne/MyOne/Images.xcassets/Navbar/nav_share_btn_highlighted.imageset/nav_share_btn_highlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilbn/MyOne-iOS/418d3ae9cd1ad15bf9301627a50ff75890d844de/MyOne/MyOne/Images.xcassets/Navbar/nav_share_btn_highlighted.imageset/nav_share_btn_highlighted@2x.png -------------------------------------------------------------------------------- /MyOne/MyOne/Images.xcassets/Navbar/nav_share_btn_highlighted.imageset/nav_share_btn_highlighted@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilbn/MyOne-iOS/418d3ae9cd1ad15bf9301627a50ff75890d844de/MyOne/MyOne/Images.xcassets/Navbar/nav_share_btn_highlighted.imageset/nav_share_btn_highlighted@3x.png -------------------------------------------------------------------------------- /MyOne/MyOne/Images.xcassets/Navbar/nav_share_btn_normal.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x", 10 | "filename" : "nav_share_btn_normal@2x.png" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x", 15 | "filename" : "nav_share_btn_normal@3x.png" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /MyOne/MyOne/Images.xcassets/Navbar/nav_share_btn_normal.imageset/nav_share_btn_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilbn/MyOne-iOS/418d3ae9cd1ad15bf9301627a50ff75890d844de/MyOne/MyOne/Images.xcassets/Navbar/nav_share_btn_normal.imageset/nav_share_btn_normal@2x.png -------------------------------------------------------------------------------- /MyOne/MyOne/Images.xcassets/Navbar/nav_share_btn_normal.imageset/nav_share_btn_normal@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilbn/MyOne-iOS/418d3ae9cd1ad15bf9301627a50ff75890d844de/MyOne/MyOne/Images.xcassets/Navbar/nav_share_btn_normal.imageset/nav_share_btn_normal@3x.png -------------------------------------------------------------------------------- /MyOne/MyOne/Images.xcassets/Person/copyright.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x", 10 | "filename" : "copyright@2x.png" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x", 15 | "filename" : "copyright@3x.png" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /MyOne/MyOne/Images.xcassets/Person/copyright.imageset/copyright@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilbn/MyOne-iOS/418d3ae9cd1ad15bf9301627a50ff75890d844de/MyOne/MyOne/Images.xcassets/Person/copyright.imageset/copyright@2x.png -------------------------------------------------------------------------------- /MyOne/MyOne/Images.xcassets/Person/copyright.imageset/copyright@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilbn/MyOne-iOS/418d3ae9cd1ad15bf9301627a50ff75890d844de/MyOne/MyOne/Images.xcassets/Person/copyright.imageset/copyright@3x.png -------------------------------------------------------------------------------- /MyOne/MyOne/Images.xcassets/Person/copyright_nt.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x", 10 | "filename" : "copyright_nt@2x.png" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x", 15 | "filename" : "copyright_nt@3x.png" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /MyOne/MyOne/Images.xcassets/Person/copyright_nt.imageset/copyright_nt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilbn/MyOne-iOS/418d3ae9cd1ad15bf9301627a50ff75890d844de/MyOne/MyOne/Images.xcassets/Person/copyright_nt.imageset/copyright_nt@2x.png -------------------------------------------------------------------------------- /MyOne/MyOne/Images.xcassets/Person/copyright_nt.imageset/copyright_nt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilbn/MyOne-iOS/418d3ae9cd1ad15bf9301627a50ff75890d844de/MyOne/MyOne/Images.xcassets/Person/copyright_nt.imageset/copyright_nt@3x.png -------------------------------------------------------------------------------- /MyOne/MyOne/Images.xcassets/Person/person_icon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x", 10 | "filename" : "person_icon@2x.png" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x", 15 | "filename" : "person_icon@3x.png" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /MyOne/MyOne/Images.xcassets/Person/person_icon.imageset/person_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilbn/MyOne-iOS/418d3ae9cd1ad15bf9301627a50ff75890d844de/MyOne/MyOne/Images.xcassets/Person/person_icon.imageset/person_icon@2x.png -------------------------------------------------------------------------------- /MyOne/MyOne/Images.xcassets/Person/person_icon.imageset/person_icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilbn/MyOne-iOS/418d3ae9cd1ad15bf9301627a50ff75890d844de/MyOne/MyOne/Images.xcassets/Person/person_icon.imageset/person_icon@3x.png -------------------------------------------------------------------------------- /MyOne/MyOne/Images.xcassets/Person/setting.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x", 10 | "filename" : "setting@2x.png" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x", 15 | "filename" : "setting@3x.png" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /MyOne/MyOne/Images.xcassets/Person/setting.imageset/setting@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilbn/MyOne-iOS/418d3ae9cd1ad15bf9301627a50ff75890d844de/MyOne/MyOne/Images.xcassets/Person/setting.imageset/setting@2x.png -------------------------------------------------------------------------------- /MyOne/MyOne/Images.xcassets/Person/setting.imageset/setting@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilbn/MyOne-iOS/418d3ae9cd1ad15bf9301627a50ff75890d844de/MyOne/MyOne/Images.xcassets/Person/setting.imageset/setting@3x.png -------------------------------------------------------------------------------- /MyOne/MyOne/Images.xcassets/Tabbar/tabbar_item_home.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x", 10 | "filename" : "tabbar_item_home@2x.png" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x", 15 | "filename" : "tabbar_item_home@3x.png" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /MyOne/MyOne/Images.xcassets/Tabbar/tabbar_item_home.imageset/tabbar_item_home@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilbn/MyOne-iOS/418d3ae9cd1ad15bf9301627a50ff75890d844de/MyOne/MyOne/Images.xcassets/Tabbar/tabbar_item_home.imageset/tabbar_item_home@2x.png -------------------------------------------------------------------------------- /MyOne/MyOne/Images.xcassets/Tabbar/tabbar_item_home.imageset/tabbar_item_home@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilbn/MyOne-iOS/418d3ae9cd1ad15bf9301627a50ff75890d844de/MyOne/MyOne/Images.xcassets/Tabbar/tabbar_item_home.imageset/tabbar_item_home@3x.png -------------------------------------------------------------------------------- /MyOne/MyOne/Images.xcassets/Tabbar/tabbar_item_home_selected.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x", 10 | "filename" : "tabbar_item_home_selected@2x.png" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x", 15 | "filename" : "tabbar_item_home_selected@3x.png" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /MyOne/MyOne/Images.xcassets/Tabbar/tabbar_item_home_selected.imageset/tabbar_item_home_selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilbn/MyOne-iOS/418d3ae9cd1ad15bf9301627a50ff75890d844de/MyOne/MyOne/Images.xcassets/Tabbar/tabbar_item_home_selected.imageset/tabbar_item_home_selected@2x.png -------------------------------------------------------------------------------- /MyOne/MyOne/Images.xcassets/Tabbar/tabbar_item_home_selected.imageset/tabbar_item_home_selected@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilbn/MyOne-iOS/418d3ae9cd1ad15bf9301627a50ff75890d844de/MyOne/MyOne/Images.xcassets/Tabbar/tabbar_item_home_selected.imageset/tabbar_item_home_selected@3x.png -------------------------------------------------------------------------------- /MyOne/MyOne/Images.xcassets/Tabbar/tabbar_item_person.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x", 10 | "filename" : "tabbar_item_person@2x.png" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x", 15 | "filename" : "tabbar_item_person@3x.png" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /MyOne/MyOne/Images.xcassets/Tabbar/tabbar_item_person.imageset/tabbar_item_person@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilbn/MyOne-iOS/418d3ae9cd1ad15bf9301627a50ff75890d844de/MyOne/MyOne/Images.xcassets/Tabbar/tabbar_item_person.imageset/tabbar_item_person@2x.png -------------------------------------------------------------------------------- /MyOne/MyOne/Images.xcassets/Tabbar/tabbar_item_person.imageset/tabbar_item_person@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilbn/MyOne-iOS/418d3ae9cd1ad15bf9301627a50ff75890d844de/MyOne/MyOne/Images.xcassets/Tabbar/tabbar_item_person.imageset/tabbar_item_person@3x.png -------------------------------------------------------------------------------- /MyOne/MyOne/Images.xcassets/Tabbar/tabbar_item_person_selected.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x", 10 | "filename" : "tabbar_item_person_selected@2x.png" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x", 15 | "filename" : "tabbar_item_person_selected@3x.png" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /MyOne/MyOne/Images.xcassets/Tabbar/tabbar_item_person_selected.imageset/tabbar_item_person_selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilbn/MyOne-iOS/418d3ae9cd1ad15bf9301627a50ff75890d844de/MyOne/MyOne/Images.xcassets/Tabbar/tabbar_item_person_selected.imageset/tabbar_item_person_selected@2x.png -------------------------------------------------------------------------------- /MyOne/MyOne/Images.xcassets/Tabbar/tabbar_item_person_selected.imageset/tabbar_item_person_selected@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilbn/MyOne-iOS/418d3ae9cd1ad15bf9301627a50ff75890d844de/MyOne/MyOne/Images.xcassets/Tabbar/tabbar_item_person_selected.imageset/tabbar_item_person_selected@3x.png -------------------------------------------------------------------------------- /MyOne/MyOne/Images.xcassets/Tabbar/tabbar_item_question.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x", 10 | "filename" : "tabbar_item_question@2x.png" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x", 15 | "filename" : "tabbar_item_question@3x.png" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /MyOne/MyOne/Images.xcassets/Tabbar/tabbar_item_question.imageset/tabbar_item_question@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilbn/MyOne-iOS/418d3ae9cd1ad15bf9301627a50ff75890d844de/MyOne/MyOne/Images.xcassets/Tabbar/tabbar_item_question.imageset/tabbar_item_question@2x.png -------------------------------------------------------------------------------- /MyOne/MyOne/Images.xcassets/Tabbar/tabbar_item_question.imageset/tabbar_item_question@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilbn/MyOne-iOS/418d3ae9cd1ad15bf9301627a50ff75890d844de/MyOne/MyOne/Images.xcassets/Tabbar/tabbar_item_question.imageset/tabbar_item_question@3x.png -------------------------------------------------------------------------------- /MyOne/MyOne/Images.xcassets/Tabbar/tabbar_item_question_selected.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x", 10 | "filename" : "tabbar_item_question_selected@2x.png" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x", 15 | "filename" : "tabbar_item_question_selected@3x.png" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /MyOne/MyOne/Images.xcassets/Tabbar/tabbar_item_question_selected.imageset/tabbar_item_question_selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilbn/MyOne-iOS/418d3ae9cd1ad15bf9301627a50ff75890d844de/MyOne/MyOne/Images.xcassets/Tabbar/tabbar_item_question_selected.imageset/tabbar_item_question_selected@2x.png -------------------------------------------------------------------------------- /MyOne/MyOne/Images.xcassets/Tabbar/tabbar_item_question_selected.imageset/tabbar_item_question_selected@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilbn/MyOne-iOS/418d3ae9cd1ad15bf9301627a50ff75890d844de/MyOne/MyOne/Images.xcassets/Tabbar/tabbar_item_question_selected.imageset/tabbar_item_question_selected@3x.png -------------------------------------------------------------------------------- /MyOne/MyOne/Images.xcassets/Tabbar/tabbar_item_reading.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x", 10 | "filename" : "tabbar_item_reading@2x.png" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x", 15 | "filename" : "tabbar_item_reading@3x.png" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /MyOne/MyOne/Images.xcassets/Tabbar/tabbar_item_reading.imageset/tabbar_item_reading@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilbn/MyOne-iOS/418d3ae9cd1ad15bf9301627a50ff75890d844de/MyOne/MyOne/Images.xcassets/Tabbar/tabbar_item_reading.imageset/tabbar_item_reading@2x.png -------------------------------------------------------------------------------- /MyOne/MyOne/Images.xcassets/Tabbar/tabbar_item_reading.imageset/tabbar_item_reading@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilbn/MyOne-iOS/418d3ae9cd1ad15bf9301627a50ff75890d844de/MyOne/MyOne/Images.xcassets/Tabbar/tabbar_item_reading.imageset/tabbar_item_reading@3x.png -------------------------------------------------------------------------------- /MyOne/MyOne/Images.xcassets/Tabbar/tabbar_item_reading_selected.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x", 10 | "filename" : "tabbar_item_reading_selected@2x.png" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x", 15 | "filename" : "tabbar_item_reading_selected@3x.png" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /MyOne/MyOne/Images.xcassets/Tabbar/tabbar_item_reading_selected.imageset/tabbar_item_reading_selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilbn/MyOne-iOS/418d3ae9cd1ad15bf9301627a50ff75890d844de/MyOne/MyOne/Images.xcassets/Tabbar/tabbar_item_reading_selected.imageset/tabbar_item_reading_selected@2x.png -------------------------------------------------------------------------------- /MyOne/MyOne/Images.xcassets/Tabbar/tabbar_item_reading_selected.imageset/tabbar_item_reading_selected@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilbn/MyOne-iOS/418d3ae9cd1ad15bf9301627a50ff75890d844de/MyOne/MyOne/Images.xcassets/Tabbar/tabbar_item_reading_selected.imageset/tabbar_item_reading_selected@3x.png -------------------------------------------------------------------------------- /MyOne/MyOne/Images.xcassets/Tabbar/tabbar_item_thing.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x", 10 | "filename" : "tabbar_item_thing@2x.png" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x", 15 | "filename" : "tabbar_item_thing@3x.png" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /MyOne/MyOne/Images.xcassets/Tabbar/tabbar_item_thing.imageset/tabbar_item_thing@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilbn/MyOne-iOS/418d3ae9cd1ad15bf9301627a50ff75890d844de/MyOne/MyOne/Images.xcassets/Tabbar/tabbar_item_thing.imageset/tabbar_item_thing@2x.png -------------------------------------------------------------------------------- /MyOne/MyOne/Images.xcassets/Tabbar/tabbar_item_thing.imageset/tabbar_item_thing@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilbn/MyOne-iOS/418d3ae9cd1ad15bf9301627a50ff75890d844de/MyOne/MyOne/Images.xcassets/Tabbar/tabbar_item_thing.imageset/tabbar_item_thing@3x.png -------------------------------------------------------------------------------- /MyOne/MyOne/Images.xcassets/Tabbar/tabbar_item_thing_selected.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x", 10 | "filename" : "tabbar_item_thing_selected@2x.png" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x", 15 | "filename" : "tabbar_item_thing_selected@3x.png" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /MyOne/MyOne/Images.xcassets/Tabbar/tabbar_item_thing_selected.imageset/tabbar_item_thing_selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilbn/MyOne-iOS/418d3ae9cd1ad15bf9301627a50ff75890d844de/MyOne/MyOne/Images.xcassets/Tabbar/tabbar_item_thing_selected.imageset/tabbar_item_thing_selected@2x.png -------------------------------------------------------------------------------- /MyOne/MyOne/Images.xcassets/Tabbar/tabbar_item_thing_selected.imageset/tabbar_item_thing_selected@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilbn/MyOne-iOS/418d3ae9cd1ad15bf9301627a50ff75890d844de/MyOne/MyOne/Images.xcassets/Tabbar/tabbar_item_thing_selected.imageset/tabbar_item_thing_selected@3x.png -------------------------------------------------------------------------------- /MyOne/MyOne/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 | APPL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | LSRequiresIPhoneOS 24 | 25 | NSAppTransportSecurity 26 | 27 | NSAllowsArbitraryLoads 28 | 29 | 30 | UIAppFonts 31 | 32 | Century Gothic Bold.TTF 33 | 34 | UIRequiredDeviceCapabilities 35 | 36 | armv7 37 | 38 | UISupportedInterfaceOrientations 39 | 40 | UIInterfaceOrientationPortrait 41 | 42 | 43 | 44 | -------------------------------------------------------------------------------- /MyOne/MyOne/Modules/HomeEntity.h: -------------------------------------------------------------------------------- 1 | // 2 | // HomeEntity.h 3 | // MyOne 4 | // 5 | // Created by HelloWorld on 7/29/15. 6 | // Copyright (c) 2015 melody. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface HomeEntity : NSObject 12 | 13 | //"strLastUpdateDate": "2015-07-22 15:50:45", 14 | //"strDayDiffer": "", 15 | //"strHpId": "1043", 16 | //"strHpTitle": "VOL.1024", 17 | //"strThumbnailUrl": "http:\/\/pic.yupoo.com\/hanapp\/EOTa3fZW\/69lSZ.jpg", 18 | //"strOriginalImgUrl": "http:\/\/pic.yupoo.com\/hanapp\/EOTa3fZW\/69lSZ.jpg", 19 | //"strAuthor": "花&高思远 作品", 20 | //"strContent": "分别是,从此就一个人站在茫茫人群中,一个人站在世界上。我的每句话、每件事,都不能再说给你听。 by 苏更生", 21 | //"strMarketTime": "2015-07-28", 22 | //"sWebLk": "http:\/\/m.wufazhuce.com\/one\/2015-07-28", 23 | //"strPn": "20592", 24 | //"wImgUrl": "http:\/\/211.152.49.184:9000\/upload\/onephoto\/f1437551445290.jpg" 25 | 26 | @property (nonatomic, copy) NSString *strLastUpdateDate; 27 | @property (nonatomic, copy) NSString *strDayDiffer; 28 | @property (nonatomic, copy) NSString *strHpId; 29 | @property (nonatomic, copy) NSString *strHpTitle; 30 | @property (nonatomic, copy) NSString *strThumbnailUrl; 31 | @property (nonatomic, copy) NSString *strOriginalImgUrl; 32 | @property (nonatomic, copy) NSString *strAuthor; 33 | @property (nonatomic, copy) NSString *strContent; 34 | @property (nonatomic, copy) NSString *strMarketTime; 35 | @property (nonatomic, copy) NSString *sWebLk; 36 | @property (nonatomic, copy) NSString *strPn; 37 | @property (nonatomic, copy) NSString *wImgUrl; 38 | 39 | @end 40 | -------------------------------------------------------------------------------- /MyOne/MyOne/Modules/HomeEntity.m: -------------------------------------------------------------------------------- 1 | // 2 | // HomeEntity.m 3 | // MyOne 4 | // 5 | // Created by HelloWorld on 7/29/15. 6 | // Copyright (c) 2015 melody. All rights reserved. 7 | // 8 | 9 | #import "HomeEntity.h" 10 | 11 | @implementation HomeEntity 12 | 13 | - (NSString *)description { 14 | return [NSString stringWithFormat:@"strLastUpdateDate = %@, strDayDiffer = %@, strHpId = %@, strHpTitle = %@, strThumbnailUrl = %@, strOriginalImgUrl = %@, strAuthor = %@, strContent = %@, strMarketTime = %@, sWebLk = %@, strPn = %@, wImgUrl = %@.", self.strLastUpdateDate, self.strDayDiffer, self.strHpId, self.strHpTitle, self.strThumbnailUrl, self.strOriginalImgUrl, self.strAuthor, self.strContent, self.strMarketTime, self.sWebLk, self.strPn, self.wImgUrl]; 15 | } 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /MyOne/MyOne/Modules/QuestionEntity.h: -------------------------------------------------------------------------------- 1 | // 2 | // QuestionEntity.h 3 | // MyOne 4 | // 5 | // Created by HelloWorld on 7/29/15. 6 | // Copyright (c) 2015 melody. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface QuestionEntity : NSObject 12 | 13 | //"sWebLk" : "http:\/\/m.wufazhuce.com\/question\/2015-07-26", 14 | //"strQuestionId" : "1049", 15 | //"strQuestionContent" : "泰大问:常常不小心看到烂片,看完以后要怎么吐槽才能准确表达内心?", 16 | //"strAnswerTitle" : "阿能答泰大:", 17 | //"sEditor" : "(责任编辑:天天)", 18 | //"strQuestionTitle" : "如何吐槽一部电影很烂?", 19 | //"strLastUpdateDate" : "2015-07-28 15:21:37", 20 | //"strPraiseNumber" : "20282", 21 | //"strDayDiffer" : "3", 22 | //"strQuestionMarketTime" : "2015-07-26", 23 | //"strAnswerContent" : "影厅座位有18排,每排32个座位,天花板上共有48盏灯,荧幕的左下角有个黑点总是出现,频率大概是1分20秒一次。" 24 | 25 | @property (nonatomic, copy) NSString *sWebLk; 26 | @property (nonatomic, copy) NSString *strQuestionId; 27 | @property (nonatomic, copy) NSString *strQuestionContent; 28 | @property (nonatomic, copy) NSString *strAnswerTitle; 29 | @property (nonatomic, copy) NSString *sEditor; 30 | @property (nonatomic, copy) NSString *strQuestionTitle; 31 | @property (nonatomic, copy) NSString *strLastUpdateDate; 32 | @property (nonatomic, copy) NSString *strPraiseNumber; 33 | @property (nonatomic, copy) NSString *strDayDiffer; 34 | @property (nonatomic, copy) NSString *strQuestionMarketTime; 35 | @property (nonatomic, copy) NSString *strAnswerContent; 36 | 37 | @end 38 | -------------------------------------------------------------------------------- /MyOne/MyOne/Modules/QuestionEntity.m: -------------------------------------------------------------------------------- 1 | // 2 | // QuestionEntity.m 3 | // MyOne 4 | // 5 | // Created by HelloWorld on 7/29/15. 6 | // Copyright (c) 2015 melody. All rights reserved. 7 | // 8 | 9 | #import "QuestionEntity.h" 10 | 11 | @implementation QuestionEntity 12 | 13 | - (NSString *)description { 14 | return [NSString stringWithFormat:@"sWebLk = %@, strQuestionId = %@, strQuestionContent = %@, strAnswerTitle = %@, sEditor = %@, strQuestionTitle = %@, strLastUpdateDate = %@, strPraiseNumber = %@, strDayDiffer = %@, strQuestionMarketTime = %@, strAnswerContent = %@.", self.sWebLk, self.strQuestionId, self.strQuestionContent, self.strAnswerTitle, self.sEditor, self.strQuestionTitle, self.strLastUpdateDate, self.strPraiseNumber, self.strDayDiffer, self.strQuestionMarketTime, self.strAnswerContent]; 15 | } 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /MyOne/MyOne/Modules/ReadingEntity.h: -------------------------------------------------------------------------------- 1 | // 2 | // ReadingEntity.h 3 | // MyOne 4 | // 5 | // Created by HelloWorld on 7/29/15. 6 | // Copyright (c) 2015 melody. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface ReadingEntity : NSObject 12 | 13 | //"strContent" : "浪子与六......" 14 | //"sRdNum" : "112108", 15 | //"strContentId" : "1105", 16 | //"subTitle" : "", 17 | //"strContDayDiffer" : "", 18 | //"strPraiseNumber" : "3079", 19 | //"strLastUpdateDate" : "2015-07-28 10:13:35", 20 | //"sGW" : "此刻的“萨德侯爵”,在天国门口,发射出马克沁重机枪般疯狂的子弹,宛如狂风暴雨扫过最漫长的那一夜,将世界摧枯拉朽地打成筛子,同时也耗尽自己最后一滴魂魄。", 21 | //"sAuth" : "蔡骏,悬疑作家。", 22 | //"sWebLk" : "http:\/\/m.wufazhuce.com\/article\/2015-07-28", 23 | //"wImgUrl" : "http:\/\/211.152.49.184:9000\/upload\/onephoto\/f1437546015695.jpg", 24 | //"strContAuthorIntroduce" : "(责任编辑:卫天成)", 25 | //"strContTitle" : "黄片审查员萨德侯爵的一夜", 26 | //"sWbN" : "@蔡骏", 27 | //"strContAuthor" : "蔡骏", 28 | //"strContMarketTime" : "2015-07-28" 29 | 30 | @property (nonatomic, copy) NSString *strContent; 31 | @property (nonatomic, copy) NSString *sRdNum; 32 | @property (nonatomic, copy) NSString *strContentId; 33 | @property (nonatomic, copy) NSString *subTitle; 34 | @property (nonatomic, copy) NSString *strContDayDiffer; 35 | @property (nonatomic, copy) NSString *strPraiseNumber; 36 | @property (nonatomic, copy) NSString *strLastUpdateDate; 37 | @property (nonatomic, copy) NSString *sGW; 38 | @property (nonatomic, copy) NSString *sAuth; 39 | @property (nonatomic, copy) NSString *sWebLk; 40 | @property (nonatomic, copy) NSString *wImgUrl; 41 | @property (nonatomic, copy) NSString *strContAuthorIntroduce; 42 | @property (nonatomic, copy) NSString *strContTitle; 43 | @property (nonatomic, copy) NSString *sWbN; 44 | @property (nonatomic, copy) NSString *strContAuthor; 45 | @property (nonatomic, copy) NSString *strContMarketTime; 46 | 47 | @end 48 | -------------------------------------------------------------------------------- /MyOne/MyOne/Modules/ReadingEntity.m: -------------------------------------------------------------------------------- 1 | // 2 | // ReadingEntity.m 3 | // MyOne 4 | // 5 | // Created by HelloWorld on 7/29/15. 6 | // Copyright (c) 2015 melody. All rights reserved. 7 | // 8 | 9 | #import "ReadingEntity.h" 10 | 11 | @implementation ReadingEntity 12 | 13 | - (NSString *)description { 14 | return [NSString stringWithFormat:@"strContent = %@, sRdNum = %@, strContentId = %@, subTitle = %@, strContDayDiffer = %@, strPraiseNumber = %@, strLastUpdateDate = %@, sGW = %@, sAuth = %@, sWebLk = %@, wImgUrl = %@, strContAuthorIntroduce = %@, strContTitle = %@, sWbN = %@, strContAuthor = %@, strContMarketTime = %@.", self.strContent, self.sRdNum, self.strContentId, self.subTitle, self.strContDayDiffer, self.strPraiseNumber, self.strLastUpdateDate, self.sGW, self.sAuth, self.sWebLk, self.wImgUrl, self.strContAuthorIntroduce, self.strContTitle, self.sWbN, self.strContAuthor, self.strContMarketTime]; 15 | } 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /MyOne/MyOne/Modules/ThingEntity.h: -------------------------------------------------------------------------------- 1 | // 2 | // ThingEntity.h 3 | // MyOne 4 | // 5 | // Created by HelloWorld on 7/29/15. 6 | // Copyright (c) 2015 melody. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface ThingEntity : NSObject 12 | 13 | //"strLastUpdateDate": "2015-07-24 17:59:48", 14 | //"strPn": "0", 15 | //"strBu": "http:\/\/pic.yupoo.com\/hanapp\/EPcPLEFq\/KKBKE.jpg", 16 | //"strTm": "2015-07-27", 17 | //"strWu": "http:\/\/m.wufazhuce.com\/thing\/2015-07-27", 18 | //"strId": "569", 19 | //"strTt": "创意拼图", 20 | //"strTc": "拼出一天好心情!" 21 | 22 | @property (nonatomic, copy) NSString *strLastUpdateDate; 23 | @property (nonatomic, copy) NSString *strPn; 24 | @property (nonatomic, copy) NSString *strBu; 25 | @property (nonatomic, copy) NSString *strTm; 26 | @property (nonatomic, copy) NSString *strWu; 27 | @property (nonatomic, copy) NSString *strId; 28 | @property (nonatomic, copy) NSString *strTt; 29 | @property (nonatomic, copy) NSString *strTc; 30 | 31 | @end 32 | -------------------------------------------------------------------------------- /MyOne/MyOne/Modules/ThingEntity.m: -------------------------------------------------------------------------------- 1 | // 2 | // ThingEntity.m 3 | // MyOne 4 | // 5 | // Created by HelloWorld on 7/29/15. 6 | // Copyright (c) 2015 melody. All rights reserved. 7 | // 8 | 9 | #import "ThingEntity.h" 10 | 11 | @implementation ThingEntity 12 | 13 | - (NSString *)description { 14 | return [NSString stringWithFormat:@"strLastUpdateDate = %@, strPn = %@, strBu = %@, strTm = %@, strWu = %@, strId = %@, strTt = %@, strTc = %@.", self.strLastUpdateDate, self.strPn, self.strBu, self.strTm, self.strWu, self.strId, self.strTt, self.strTc]; 15 | } 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /MyOne/MyOne/TestDatas/home_content.txt: -------------------------------------------------------------------------------- 1 | { 2 | "hpEntity": { 3 | "strLastUpdateDate": "2015-07-22 15:50:45", 4 | "strDayDiffer": "", 5 | "strHpId": "1043", 6 | "strHpTitle": "VOL.1024", 7 | "strThumbnailUrl": "http:\/\/pic.yupoo.com\/hanapp\/EOTa3fZW\/69lSZ.jpg", 8 | "strOriginalImgUrl": "http:\/\/pic.yupoo.com\/hanapp\/EOTa3fZW\/69lSZ.jpg", 9 | "strAuthor": "花&高思远 作品", 10 | "strContent": "分别是,从此就一个人站在茫茫人群中,一个人站在世界上。我的每句话、每件事,都不能再说给你听。 by 苏更生", 11 | "strMarketTime": "2015-07-28", 12 | "sWebLk": "http:\/\/m.wufazhuce.com\/one\/2015-07-28", 13 | "strPn": "20592", 14 | "wImgUrl": "http:\/\/211.152.49.184:9000\/upload\/onephoto\/f1437551445290.jpg" 15 | }, 16 | "result": "SUCCESS" 17 | } -------------------------------------------------------------------------------- /MyOne/MyOne/TestDatas/question_content.txt: -------------------------------------------------------------------------------- 1 | { 2 | "result" : "SUCCESS", 3 | "questionAdEntity" : { 4 | "sWebLk" : "http:\/\/m.wufazhuce.com\/question\/2015-07-26", 5 | "strQuestionId" : "1049", 6 | "strQuestionContent" : "泰大问:常常不小心看到烂片,看完以后要怎么吐槽才能准确表达内心?", 7 | "strAnswerTitle" : "阿能答泰大:", 8 | "sEditor" : "(责任编辑:天天)", 9 | "strQuestionTitle" : "如何吐槽一部电影很烂?", 10 | "strLastUpdateDate" : "2015-07-28 15:21:37", 11 | "strPraiseNumber" : "20282", 12 | "strDayDiffer" : "3", 13 | "strQuestionMarketTime" : "2015-07-26", 14 | "strAnswerContent" : "影厅座位有18排,每排32个座位,天花板上共有48盏灯,荧幕的左下角有个黑点总是出现,频率大概是1分20秒一次。" 15 | } 16 | } -------------------------------------------------------------------------------- /MyOne/MyOne/TestDatas/thing_content.txt: -------------------------------------------------------------------------------- 1 | { 2 | "entTg": { 3 | "strLastUpdateDate": "2015-07-24 17:59:48", 4 | "strPn": "0", 5 | "strBu": "http:\/\/pic.yupoo.com\/hanapp\/EPcPLEFq\/KKBKE.jpg", 6 | "strTm": "2015-07-27", 7 | "strWu": "http:\/\/m.wufazhuce.com\/thing\/2015-07-27", 8 | "strId": "569", 9 | "strTt": "创意拼图", 10 | "strTc": "拼出一天好心情!" 11 | }, 12 | "rs": "SUCCESS" 13 | } -------------------------------------------------------------------------------- /MyOne/MyOne/ThirdParty/DSNavigationBar/DSNavigationBar.h: -------------------------------------------------------------------------------- 1 | // 2 | // DSNavigationBar.h 3 | // DSTranparentNavigationBar 4 | // 5 | // Created by Diego Serrano on 10/13/14. 6 | // Copyright (c) 2014 Diego Serrano. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | IB_DESIGNABLE 12 | 13 | @interface DSNavigationBar : UINavigationBar 14 | 15 | @property (strong, nonatomic) IBInspectable UIColor *color; 16 | 17 | -(void)setNavigationBarWithColor:(UIColor *)color; 18 | -(void)setNavigationBarWithColors:(NSArray *)colours; 19 | 20 | @end 21 | -------------------------------------------------------------------------------- /MyOne/MyOne/Utilities/AppConfigure.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppConfigure.h 3 | // MyOne 4 | // 5 | // Created by HelloWorld on 7/27/15. 6 | // Copyright (c) 2015 melody. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | // 当前 APP 版本 12 | #define CURRENT_APP_VERSION 1.0 13 | // 用户第一次安装 APP 展示引导页的版本 14 | #define LAST_SHOW_GUIDE_APP_VERSION @"Last_Show_Guide_App_Version" 15 | // 用户是否已经登录 16 | #define IS_LOGINED @"User_Login_Status" 17 | // App 主题模式是否开启夜间模式 18 | #define APP_THEME_NIGHT_MODE @"Night_Mode_Is_On" 19 | 20 | @interface AppConfigure : NSObject 21 | 22 | + (id)objectForKey:(NSString *)key; 23 | + (NSString *)valueForKey:(NSString *)key; 24 | + (float)floatForKey:(NSString *)key; 25 | + (NSInteger)integerForKey:(NSString *)key; 26 | + (BOOL)boolForKey:(NSString *)key; 27 | + (void)setObject:(id)value ForKey:(NSString *)key; 28 | + (void)setValue:(id)value forKey:(NSString *)key; 29 | + (void)setFloat:(float)value forKey:(NSString *)key; 30 | + (void)setInteger:(NSInteger)value forKey:(NSString *)key; 31 | + (void)setBool:(BOOL)value forKey:(NSString *)key; 32 | 33 | @end 34 | -------------------------------------------------------------------------------- /MyOne/MyOne/Utilities/AppConfigure.m: -------------------------------------------------------------------------------- 1 | // 2 | // AppConfigure.m 3 | // MyOne 4 | // 5 | // Created by HelloWorld on 7/27/15. 6 | // Copyright (c) 2015 melody. All rights reserved. 7 | // 8 | 9 | #import "AppConfigure.h" 10 | 11 | @implementation AppConfigure 12 | 13 | #pragma mark - Getter 14 | 15 | // object 16 | + (id)objectForKey:(NSString *)key { 17 | return [UserDefaults objectForKey:key]; 18 | } 19 | 20 | // value 21 | + (NSString *)valueForKey:(NSString *)key { 22 | return [UserDefaults valueForKey:key] ? [UserDefaults valueForKey:key] : @""; 23 | } 24 | 25 | // float 26 | + (float)floatForKey:(NSString *)key { 27 | return [UserDefaults floatForKey:key]; 28 | } 29 | 30 | // int 31 | + (NSInteger)integerForKey:(NSString *)key { 32 | return [UserDefaults integerForKey:key]; 33 | } 34 | 35 | // bool 36 | + (BOOL)boolForKey:(NSString *)key { 37 | return [UserDefaults boolForKey:key]; 38 | } 39 | 40 | #pragma mark - Setter 41 | 42 | // object 43 | + (void)setObject:(id)value ForKey:(NSString *)key { 44 | [UserDefaults setObject:value forKey:key]; 45 | } 46 | 47 | // value 48 | + (void)setValue:(id)value forKey:(NSString *)key { 49 | [UserDefaults setValue:value forKey:key]; 50 | } 51 | 52 | // float 53 | + (void)setFloat:(float)value forKey:(NSString *)key { 54 | [UserDefaults setFloat:value forKey:key]; 55 | } 56 | 57 | // int 58 | + (void)setInteger:(NSInteger)value forKey:(NSString *)key { 59 | [UserDefaults setInteger:value forKey:key]; 60 | } 61 | 62 | // bool 63 | + (void)setBool:(BOOL)value forKey:(NSString *)key { 64 | [UserDefaults setBool:value forKey:key]; 65 | } 66 | 67 | @end 68 | -------------------------------------------------------------------------------- /MyOne/MyOne/Utilities/BaseFunction.h: -------------------------------------------------------------------------------- 1 | // 2 | // BaseFunction.h 3 | // MyOne 4 | // 5 | // Created by HelloWorld on 7/28/15. 6 | // Copyright (c) 2015 melody. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface BaseFunction : NSObject 12 | 13 | /** 14 | * 取一个随机整数 0~x-1 15 | * 16 | * @param x 17 | * 18 | * @return 19 | */ 20 | + (int)random:(int)x; 21 | 22 | /** 23 | * MD5加密 24 | * 25 | * @param str 待加密的字符串 26 | * 27 | * @return 加密后的字符串 28 | */ 29 | + (NSString *)md5Digest:(NSString *)str; 30 | 31 | /** 32 | * 根据文件名来加载文件内容,并转化为 NSDictionary 对象 33 | * 34 | * @param fileName 文件名 35 | * 36 | * @return 转化之后的 NSDictionary 对象 37 | */ 38 | + (NSDictionary *)loadTestDatasWithFileName:(NSString *)fileName; 39 | 40 | /** 41 | * 根据“yyyy-MM-dd”格式的时间获取文章或者东西头部的时间格式 42 | * 43 | * @param originalMarketTime 原数据中的时间 44 | * 45 | * @return 转换之后的时间 46 | */ 47 | + (NSString *)enMarketTimeWithOriginalMarketTime:(NSString *)originalMarketTime; 48 | 49 | /** 50 | * 根据“yyyy-MM-dd”格式的时间获取首页的时间格式(天)和(月、年)用 & 连接,用来切割字符串 51 | * 52 | * @param originalMarketTime originalMarketTime 原数据中的时间 53 | * 54 | * @return 转换之后的时间 55 | */ 56 | + (NSString *)homeENMarketTimeWithOriginalMarketTime:(NSString *)originalMarketTime; 57 | 58 | + (NSString *)stringDateFromCurrent; 59 | 60 | /** 61 | * 获取今天之前的相应天数的日期 62 | * 63 | * @param days 几天之前 64 | * 65 | * @return 相应天数之前的那天的日期 66 | */ 67 | + (NSString *)stringDateBeforeTodaySeveralDays:(NSInteger)days; 68 | 69 | + (NSString *)stringDateFromDate:(NSDate *)date; 70 | 71 | @end 72 | -------------------------------------------------------------------------------- /MyOne/MyOne/Utilities/TopWindow.h: -------------------------------------------------------------------------------- 1 | // 2 | // TopWindow.h 3 | // MyOne 4 | // 5 | // Created by HelloWorld on 8/16/15. 6 | // Copyright (c) 2015 melody. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface TopWindow : NSObject 12 | 13 | + (void)show; 14 | + (void)hide; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /MyOne/MyOne/ViewControllers/AboutViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // AboutViewController.h 3 | // MyOne 4 | // 5 | // Created by HelloWorld on 7/27/15. 6 | // Copyright (c) 2015 melody. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface AboutViewController : UIViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /MyOne/MyOne/ViewControllers/BaseViewController/BaseViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // BaseViewController.h 3 | // MyOne 4 | // 5 | // Created by HelloWorld on 7/28/15. 6 | // Copyright (c) 2015 melody. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface BaseViewController : UIViewController 12 | 13 | - (UIImage *)imageWithColor:(UIColor *)color; 14 | 15 | /** 16 | * 设置导航栏 17 | * 18 | * @param show 是否显示右侧的分享按钮 19 | */ 20 | - (void)setUpNavigationBarShowRightBarButtonItem:(BOOL)show; 21 | 22 | /** 23 | * 点击分享按钮时调用 24 | */ 25 | - (void)share; 26 | 27 | /** 28 | * 不显示返回按钮的Title 29 | */ 30 | - (void)dontShowBackButtonTitle; 31 | 32 | - (void)showHUDWaitingWhileExecuting:(SEL)method; 33 | 34 | - (void)showHUDWithText:(NSString *)text delay:(NSTimeInterval)delay; 35 | 36 | - (void)showHUDDone; 37 | 38 | - (void)showHUDDoneWithText:(NSString *)text; 39 | 40 | - (void)showHUDErrorWithText:(NSString *)text; 41 | 42 | - (void)showHUDNetError; 43 | 44 | - (void)showHUDServerError; 45 | 46 | - (void)showWithLabelText:(NSString *)showText executing:(SEL)method; 47 | 48 | - (void)showHUDWithText:(NSString *)text; 49 | 50 | /** 51 | * 隐藏当前显示的提示框 52 | */ 53 | - (void)hideHud; 54 | 55 | @property (nonatomic, copy) void (^hudWasHidden)(void); 56 | 57 | @end 58 | -------------------------------------------------------------------------------- /MyOne/MyOne/ViewControllers/HomeViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // HomeViewController.h 3 | // MyOne 4 | // 5 | // Created by HelloWorld on 7/27/15. 6 | // Copyright (c) 2015 melody. All rights reserved. 7 | // 8 | 9 | #import "BaseViewController.h" 10 | 11 | @interface HomeViewController : BaseViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /MyOne/MyOne/ViewControllers/PersonViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // PersonViewController.h 3 | // MyOne 4 | // 5 | // Created by HelloWorld on 7/27/15. 6 | // Copyright (c) 2015 melody. All rights reserved. 7 | // 8 | 9 | #import "BaseViewController.h" 10 | 11 | @interface PersonViewController : BaseViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /MyOne/MyOne/ViewControllers/QuestionViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // QuestionViewController.h 3 | // MyOne 4 | // 5 | // Created by HelloWorld on 7/27/15. 6 | // Copyright (c) 2015 melody. All rights reserved. 7 | // 8 | 9 | #import "BaseViewController.h" 10 | 11 | @interface QuestionViewController : BaseViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /MyOne/MyOne/ViewControllers/ReadingViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // ReadingViewController.h 3 | // MyOne 4 | // 5 | // Created by HelloWorld on 7/27/15. 6 | // Copyright (c) 2015 melody. All rights reserved. 7 | // 8 | 9 | #import "BaseViewController.h" 10 | 11 | @interface ReadingViewController : BaseViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /MyOne/MyOne/ViewControllers/SettingsViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // SettingsViewController.h 3 | // MyOne 4 | // 5 | // Created by HelloWorld on 8/2/15. 6 | // Copyright (c) 2015 melody. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface SettingsViewController : UIViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /MyOne/MyOne/ViewControllers/ThingViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // ThingViewController.h 3 | // MyOne 4 | // 5 | // Created by HelloWorld on 7/27/15. 6 | // Copyright (c) 2015 melody. All rights reserved. 7 | // 8 | 9 | #import "BaseViewController.h" 10 | 11 | @interface ThingViewController : BaseViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /MyOne/MyOne/Views/CircularLoaderView.h: -------------------------------------------------------------------------------- 1 | // 2 | // CircularLoaderView.h 3 | // MyOne 4 | // 5 | // Created by HelloWorld on 8/3/15. 6 | // Copyright (c) 2015 melody. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface CircularLoaderView : UIView 12 | 13 | @property (nonatomic, assign) CGFloat progress; 14 | //@property (nonatomic, assign) CAShapeLayer *circlePathLayer; 15 | //@property (nonatomic, assign, getter=isRevealed) BOOL revealed; 16 | 17 | - (void)reveal; 18 | 19 | @end 20 | -------------------------------------------------------------------------------- /MyOne/MyOne/Views/CustomImageView.h: -------------------------------------------------------------------------------- 1 | // 2 | // CustomImageView.h 3 | // MyOne 4 | // 5 | // Created by HelloWorld on 8/3/15. 6 | // Copyright (c) 2015 melody. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface CustomImageView : UIImageView 12 | 13 | - (void)configureImageViwWithImageURL:(NSURL *)url animated:(BOOL)animated; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /MyOne/MyOne/Views/CustomImageView.m: -------------------------------------------------------------------------------- 1 | // 2 | // CustomImageView.m 3 | // MyOne 4 | // 5 | // Created by HelloWorld on 8/3/15. 6 | // Copyright (c) 2015 melody. All rights reserved. 7 | // 8 | 9 | #import "CustomImageView.h" 10 | #import "CircularLoaderView.h" 11 | #import 12 | 13 | @interface CustomImageView () 14 | 15 | @property (nonatomic, strong) CircularLoaderView *progressIndicatorView; 16 | 17 | @end 18 | 19 | @implementation CustomImageView 20 | 21 | - (instancetype)init { 22 | self = [super init]; 23 | 24 | if (self) { 25 | self.progressIndicatorView = [[CircularLoaderView alloc] initWithFrame:CGRectZero]; 26 | [self addSubview:self.progressIndicatorView]; 27 | } 28 | 29 | return self; 30 | } 31 | 32 | - (void)configureImageViwWithImageURL:(NSURL *)url animated:(BOOL)animated { 33 | // NSLog(@"%@, animated = %@", NSStringFromSelector(_cmd), animated ? @"YES" : @"NO"); 34 | if (animated) { 35 | self.progressIndicatorView.frame = self.bounds; 36 | [self.progressIndicatorView setAutoresizingMask:UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight]; 37 | 38 | [self sd_setImageWithURL:url placeholderImage:nil options:0 progress:^(NSInteger receivedSize, NSInteger expectedSize) { 39 | self.progressIndicatorView.progress = @(receivedSize).floatValue / @(expectedSize).floatValue; 40 | } completed:^(UIImage *image, NSError *error, SDImageCacheType cacheType, NSURL *imageURL) { 41 | [self.progressIndicatorView reveal]; 42 | }]; 43 | } else { 44 | self.progressIndicatorView.frame = CGRectZero; 45 | [self sd_setImageWithURL:url]; 46 | } 47 | } 48 | 49 | /* 50 | // Only override drawRect: if you perform custom drawing. 51 | // An empty implementation adversely affects performance during animation. 52 | - (void)drawRect:(CGRect)rect { 53 | // Drawing code 54 | } 55 | */ 56 | 57 | @end 58 | -------------------------------------------------------------------------------- /MyOne/MyOne/Views/HomeView.h: -------------------------------------------------------------------------------- 1 | // 2 | // HomeView.h 3 | // MyOne 4 | // 5 | // Created by HelloWorld on 7/31/15. 6 | // Copyright (c) 2015 melody. All rights reserved. 7 | // 8 | 9 | #import 10 | @class HomeEntity; 11 | 12 | @interface HomeView : UIView 13 | 14 | /** 15 | * 按照给定的数据显示视图 16 | * 17 | * @param homeEntity 要显示的数据 18 | * @param animated 是否需要图片的加载动画 19 | */ 20 | - (void)configureViewWithHomeEntity:(HomeEntity *)homeEntity animated:(BOOL)animated; 21 | 22 | /** 23 | * 刷新视图内的子视图,主要是为了准备显示新的 item 24 | */ 25 | - (void)refreshSubviewsForNewItem; 26 | 27 | @end 28 | -------------------------------------------------------------------------------- /MyOne/MyOne/Views/PraiseView.h: -------------------------------------------------------------------------------- 1 | // 2 | // PraiseView.h 3 | // MyOne 4 | // 5 | // Created by HelloWorld on 8/2/15. 6 | // Copyright (c) 2015 melody. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface PraiseView : UIView 12 | 13 | - (void)configureViewWithPraiseNumber:(NSString *)praiseNumber; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /MyOne/MyOne/Views/QuestionView.h: -------------------------------------------------------------------------------- 1 | // 2 | // QuestionView.h 3 | // MyOne 4 | // 5 | // Created by HelloWorld on 8/2/15. 6 | // Copyright (c) 2015 melody. All rights reserved. 7 | // 8 | 9 | #import 10 | @class QuestionEntity; 11 | 12 | @interface QuestionView : UIView 13 | 14 | /** 15 | * 按照给定的数据显示视图 16 | * 17 | * @param homeEntity 要显示的数据 18 | * @param animated 是否需要图片的加载动画 19 | */ 20 | - (void)configureViewWithQuestionEntity:(QuestionEntity *)questionEntity; 21 | 22 | /** 23 | * 刷新视图内的子视图,主要是为了准备显示新的 item 24 | */ 25 | - (void)refreshSubviewsForNewItem; 26 | 27 | 28 | @end 29 | -------------------------------------------------------------------------------- /MyOne/MyOne/Views/ReadingAuthorView.h: -------------------------------------------------------------------------------- 1 | // 2 | // ReadingAuthorView.h 3 | // MyOne 4 | // 5 | // Created by HelloWorld on 7/30/15. 6 | // Copyright (c) 2015 melody. All rights reserved. 7 | // 8 | 9 | #import 10 | @class ReadingEntity; 11 | 12 | @interface ReadingAuthorView : UIView 13 | 14 | - (void)configureAuthorViewWithReadingEntity:(ReadingEntity *)readingEntity; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /MyOne/MyOne/Views/ReadingView.h: -------------------------------------------------------------------------------- 1 | // 2 | // ReadingView.h 3 | // MyOne 4 | // 5 | // Created by HelloWorld on 8/2/15. 6 | // Copyright (c) 2015 melody. All rights reserved. 7 | // 8 | 9 | #import 10 | @class ReadingEntity; 11 | 12 | @interface ReadingView : UIView 13 | 14 | - (void)configureReadingViewWithReadingEntity:(ReadingEntity *)readingEntity; 15 | 16 | - (void)refreshSubviewsForNewItem; 17 | 18 | @end 19 | -------------------------------------------------------------------------------- /MyOne/MyOne/Views/ThingView.h: -------------------------------------------------------------------------------- 1 | // 2 | // ThingView.h 3 | // MyOne 4 | // 5 | // Created by HelloWorld on 8/2/15. 6 | // Copyright (c) 2015 melody. All rights reserved. 7 | // 8 | 9 | #import 10 | @class ThingEntity; 11 | 12 | @interface ThingView : UIView 13 | 14 | /** 15 | * 按照给定的数据显示视图 16 | * 17 | * @param homeEntity 要显示的数据 18 | * @param animated 是否需要图片的加载动画 19 | */ 20 | - (void)configureViewWithThingEntity:(ThingEntity *)thingEntity animated:(BOOL)animated; 21 | 22 | /** 23 | * 刷新视图内的子视图,主要是为了准备显示新的 item 24 | */ 25 | - (void)refreshSubviewsForNewItem; 26 | 27 | @end 28 | -------------------------------------------------------------------------------- /MyOne/MyOne/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // MyOne 4 | // 5 | // Created by HelloWorld on 7/27/15. 6 | // Copyright (c) 2015 melody. 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 | -------------------------------------------------------------------------------- /MyOne/MyOneTests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | com.melody.$(PRODUCT_NAME:rfc1034identifier) 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 | -------------------------------------------------------------------------------- /MyOne/MyOneTests/MyOneTests.m: -------------------------------------------------------------------------------- 1 | // 2 | // MyOneTests.m 3 | // MyOneTests 4 | // 5 | // Created by HelloWorld on 7/27/15. 6 | // Copyright (c) 2015 melody. All rights reserved. 7 | // 8 | 9 | #import 10 | #import 11 | 12 | @interface MyOneTests : XCTestCase 13 | 14 | @end 15 | 16 | @implementation MyOneTests 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 | -------------------------------------------------------------------------------- /MyOne/Podfile: -------------------------------------------------------------------------------- 1 | inhibit_all_warnings! 2 | 3 | platform :ios, '7.0' 4 | 5 | pod 'AFNetworking', '~> 2.5.4' 6 | pod 'SDWebImage', '~> 3.7.2' 7 | pod 'MBProgressHUD', '~> 0.9.1' 8 | pod 'iCarousel', '~> 1.8.1' 9 | pod 'MJExtension', '~> 2.5.3' 10 | pod 'Masonry', '~> 0.6.2' 11 | pod 'DKNightVersion', '~> 0.8.1' 12 | -------------------------------------------------------------------------------- /MyOne/Pods/AFNetworking/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2011–2015 Alamofire Software Foundation (http://alamofire.org/) 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy 4 | of this software and associated documentation files (the "Software"), to deal 5 | in the Software without restriction, including without limitation the rights 6 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 7 | copies of the Software, and to permit persons to whom the Software is 8 | furnished to do so, subject to the following conditions: 9 | 10 | The above copyright notice and this permission notice shall be included in 11 | all copies or substantial portions of the Software. 12 | 13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 16 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 17 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 18 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 19 | THE SOFTWARE. 20 | -------------------------------------------------------------------------------- /MyOne/Pods/AFNetworking/UIKit+AFNetworking/UIKit+AFNetworking.h: -------------------------------------------------------------------------------- 1 | // UIKit+AFNetworking.h 2 | // 3 | // Copyright (c) 2013 AFNetworking (http://afnetworking.com/) 4 | // 5 | // Permission is hereby granted, free of charge, to any person obtaining a copy 6 | // of this software and associated documentation files (the "Software"), to deal 7 | // in the Software without restriction, including without limitation the rights 8 | // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | // copies of the Software, and to permit persons to whom the Software is 10 | // furnished to do so, subject to the following conditions: 11 | // 12 | // The above copyright notice and this permission notice shall be included in 13 | // all copies or substantial portions of the Software. 14 | // 15 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | // THE SOFTWARE. 22 | 23 | #import 24 | 25 | #ifndef _UIKIT_AFNETWORKING_ 26 | #define _UIKIT_AFNETWORKING_ 27 | 28 | #import "AFNetworkActivityIndicatorManager.h" 29 | 30 | #import "UIActivityIndicatorView+AFNetworking.h" 31 | #import "UIAlertView+AFNetworking.h" 32 | #import "UIButton+AFNetworking.h" 33 | #import "UIImageView+AFNetworking.h" 34 | #import "UIKit+AFNetworking.h" 35 | #import "UIProgressView+AFNetworking.h" 36 | #import "UIRefreshControl+AFNetworking.h" 37 | #import "UIWebView+AFNetworking.h" 38 | #endif /* _UIKIT_AFNETWORKING_ */ 39 | -------------------------------------------------------------------------------- /MyOne/Pods/DKNightVersion/Classes/Controller/UIViewController+ChangeColor.h: -------------------------------------------------------------------------------- 1 | // 2 | // UINavigationController+ChangeColor.h 3 | // DKNightVersion 4 | // 5 | // Created by apple on 15/5/10. 6 | // Copyright (c) 2015年 DeltaX. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface UIViewController (ChangeColor) 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /MyOne/Pods/DKNightVersion/Classes/DKNightVersion.h: -------------------------------------------------------------------------------- 1 | // 2 | // DKNightVersion.h 3 | // DKNightVerision 4 | // 5 | // Created by apple on 4/14/15. 6 | // Copyright (c) 2015 DeltaX. All rights reserved. 7 | // 8 | 9 | #ifndef DKNightVerision_DKNightVersion_h 10 | #define DKNightVerision_DKNightVersion_h 11 | 12 | #import "DKNightVersionManager.h" 13 | #import "UILabel+NightVersion.h" 14 | #import "UIView+NightVersion.h" 15 | #import "UITableView+NightVersion.h" 16 | #import "UINavigationBar+NightVersion.h" 17 | #import "UITabBar+NightVersion.h" 18 | #import "UIButton+NightVersion.h" 19 | #import "UIBarButtonItem+NightVersion.h" 20 | #import "UIViewController+ChangeColor.h" 21 | 22 | #endif 23 | -------------------------------------------------------------------------------- /MyOne/Pods/DKNightVersion/Classes/Helper/DKNightVersionUtility.h: -------------------------------------------------------------------------------- 1 | // 2 | // DKNightVersionUtility.h 3 | // DKNightVersion 4 | // 5 | // Created by apple on 15/5/20. 6 | // Copyright (c) 2015年 DeltaX. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface DKNightVersionUtility : NSObject 12 | 13 | 14 | /** 15 | * Whether the object should change color 16 | * 17 | * @param object Object which should change color 18 | * 19 | * @return Whether the object should change color 20 | */ 21 | + (BOOL)shouldChangeColor:(id)object; 22 | 23 | @end 24 | -------------------------------------------------------------------------------- /MyOne/Pods/DKNightVersion/Classes/Helper/DKNightVersionUtility.m: -------------------------------------------------------------------------------- 1 | // 2 | // DKNightVersionUtility.m 3 | // DKNightVersion 4 | // 5 | // Created by apple on 15/5/20. 6 | // Copyright (c) 2015年 DeltaX. All rights reserved. 7 | // 8 | 9 | #import "DKNightVersionUtility.h" 10 | #import "DKNightVersionManager.h" 11 | 12 | @implementation DKNightVersionUtility 13 | 14 | + (BOOL)shouldChangeColor:(id)object { 15 | __block BOOL shouldChangeColor = NO; 16 | [[DKNightVersionManager respondClasseses] enumerateObjectsUsingBlock:^(NSString *klassString, BOOL *stop) { 17 | Class klass = NSClassFromString(klassString); 18 | if ([object isMemberOfClass:klass]) { 19 | shouldChangeColor = YES; 20 | *stop = YES; 21 | } 22 | }]; 23 | return shouldChangeColor; 24 | } 25 | 26 | 27 | @end 28 | -------------------------------------------------------------------------------- /MyOne/Pods/DKNightVersion/Classes/Helper/UINavigationBar+Animation.h: -------------------------------------------------------------------------------- 1 | // 2 | // UINavigationBar+Animation.h 3 | // DKNightVersion 4 | // 5 | // Created by apple on 15/5/4. 6 | // Copyright (c) 2015年 DeltaX. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface UINavigationBar (Animation) 12 | 13 | - (void)animateNavigationBarToColor:(UIColor *)toColor 14 | duration:(NSTimeInterval)duration; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /MyOne/Pods/DKNightVersion/Classes/UIKit/UIBarButtonItem/UIBarButtonItem+NightVersion.h: -------------------------------------------------------------------------------- 1 | // 2 | // UIBarButtonItem+NightVersion.h 3 | // UIBarButtonItem+NightVersion 4 | // 5 | // Copyright (c) 2015 Draveness. All rights reserved. 6 | // 7 | // These files are generated by ruby script, if you want to modify code 8 | // in this file, you are supposed to update the ruby code, run it and 9 | // test it. And finally open a pull request. 10 | 11 | #import 12 | #import "UIBarButtonItem+TintColor.h" 13 | 14 | 15 | @interface UIBarButtonItem (NightVersion) 16 | 17 | - (void)changeColor; 18 | 19 | - (void)changeColorWithDuration:(CGFloat)duration; 20 | 21 | @end 22 | -------------------------------------------------------------------------------- /MyOne/Pods/DKNightVersion/Classes/UIKit/UIBarButtonItem/UIBarButtonItem+NightVersion.m: -------------------------------------------------------------------------------- 1 | // 2 | // UIBarButtonItem+NightVersion.m 3 | // UIBarButtonItem+NightVersion 4 | // 5 | // Copyright (c) 2015 Draveness. All rights reserved. 6 | // 7 | // These files are generated by ruby script, if you want to modify code 8 | // in this file, you are supposed to update the ruby code, run it and 9 | // test it. And finally open a pull request. 10 | 11 | #import "UIBarButtonItem+NightVersion.h" 12 | #import "DKNightVersionManager.h" 13 | #import "DKNightVersionUtility.h" 14 | 15 | 16 | 17 | @implementation UIBarButtonItem (NightVersion) 18 | 19 | #pragma mark - ChangeColor 20 | 21 | - (void)changeColorWithDuration:(CGFloat)duration { 22 | if ([DKNightVersionUtility shouldChangeColor:self]) { 23 | 24 | [UIView animateWithDuration:duration animations:^{ 25 | [self setTintColor:([DKNightVersionManager currentThemeVersion] == DKThemeVersionNight) ? self.nightTintColor : self.normalTintColor]; 26 | 27 | }]; 28 | } 29 | } 30 | 31 | - (void)changeColor { 32 | if ([DKNightVersionUtility shouldChangeColor:self]) { 33 | [self setTintColor:([DKNightVersionManager currentThemeVersion] == DKThemeVersionNight) ? self.nightTintColor : self.normalTintColor]; 34 | 35 | } 36 | } 37 | 38 | @end 39 | -------------------------------------------------------------------------------- /MyOne/Pods/DKNightVersion/Classes/UIKit/UIBarButtonItem/UIBarButtonItem+TintColor.h: -------------------------------------------------------------------------------- 1 | // 2 | // UIBarButtonItem+TintColor.h 3 | // UIBarButtonItem+TintColor 4 | // 5 | // Copyright (c) 2015 Draveness. All rights reserved. 6 | // 7 | // These files are generated by ruby script, if you want to modify code 8 | // in this file, you are supposed to update the ruby code, run it and 9 | // test it. And finally open a pull request. 10 | 11 | #import 12 | 13 | @interface UIBarButtonItem (TintColor) 14 | 15 | /** 16 | * Set this property when switch to night version uibarbuttonitem TintColor turns to this color. 17 | */ 18 | @property (nonatomic, strong) UIColor *nightTintColor; 19 | 20 | /** 21 | * UIBarButtonItem TintColor in normal version. 22 | */ 23 | @property (nonatomic, strong, readonly) UIColor *normalTintColor; 24 | 25 | @end 26 | -------------------------------------------------------------------------------- /MyOne/Pods/DKNightVersion/Classes/UIKit/UIButton/UIButton+NightVersion.h: -------------------------------------------------------------------------------- 1 | // 2 | // UIButton+NightVersion.h 3 | // UIButton+NightVersion 4 | // 5 | // Copyright (c) 2015 Draveness. All rights reserved. 6 | // 7 | // These files are generated by ruby script, if you want to modify code 8 | // in this file, you are supposed to update the ruby code, run it and 9 | // test it. And finally open a pull request. 10 | 11 | #import 12 | #import "UIButton+TitleColor.h" 13 | 14 | 15 | @interface UIButton (NightVersion) 16 | 17 | - (void)changeColor; 18 | 19 | - (void)changeColorWithDuration:(CGFloat)duration; 20 | 21 | @end 22 | -------------------------------------------------------------------------------- /MyOne/Pods/DKNightVersion/Classes/UIKit/UIButton/UIButton+NightVersion.m: -------------------------------------------------------------------------------- 1 | // 2 | // UIButton+NightVersion.m 3 | // UIButton+NightVersion 4 | // 5 | // Copyright (c) 2015 Draveness. All rights reserved. 6 | // 7 | // These files are generated by ruby script, if you want to modify code 8 | // in this file, you are supposed to update the ruby code, run it and 9 | // test it. And finally open a pull request. 10 | 11 | #import "UIButton+NightVersion.h" 12 | #import "DKNightVersionManager.h" 13 | #import "DKNightVersionUtility.h" 14 | #import "UIView+NightVersion.h" 15 | 16 | 17 | 18 | @implementation UIButton (NightVersion) 19 | 20 | #pragma mark - ChangeColor 21 | 22 | - (void)changeColorWithDuration:(CGFloat)duration { 23 | if ([DKNightVersionUtility shouldChangeColor:self]) { 24 | 25 | [UIView animateWithDuration:duration animations:^{ 26 | [self setTitleColor:([DKNightVersionManager currentThemeVersion] == DKThemeVersionNight) ? self.nightTitleColor : self.normalTitleColor forState:UIControlStateNormal]; 27 | [self setBackgroundColor:([DKNightVersionManager currentThemeVersion] == DKThemeVersionNight) ? self.nightBackgroundColor : self.normalBackgroundColor]; 28 | 29 | }]; 30 | } 31 | } 32 | 33 | - (void)changeColor { 34 | if ([DKNightVersionUtility shouldChangeColor:self]) { 35 | [self setTitleColor:([DKNightVersionManager currentThemeVersion] == DKThemeVersionNight) ? self.nightTitleColor : self.normalTitleColor forState:UIControlStateNormal]; 36 | [self setBackgroundColor:([DKNightVersionManager currentThemeVersion] == DKThemeVersionNight) ? self.nightBackgroundColor : self.normalBackgroundColor]; 37 | 38 | } 39 | } 40 | 41 | @end 42 | -------------------------------------------------------------------------------- /MyOne/Pods/DKNightVersion/Classes/UIKit/UIButton/UIButton+TitleColor.h: -------------------------------------------------------------------------------- 1 | // 2 | // UIButton+TitleColor.h 3 | // UIButton+TitleColor 4 | // 5 | // Copyright (c) 2015 Draveness. All rights reserved. 6 | // 7 | // These files are generated by ruby script, if you want to modify code 8 | // in this file, you are supposed to update the ruby code, run it and 9 | // test it. And finally open a pull request. 10 | 11 | #import 12 | 13 | @interface UIButton (TitleColor) 14 | 15 | /** 16 | * Set this property when switch to night version uibutton TitleColor turns to this color. 17 | */ 18 | @property (nonatomic, strong) UIColor *nightTitleColor; 19 | 20 | /** 21 | * UIButton TitleColor in normal version. 22 | */ 23 | @property (nonatomic, strong, readonly) UIColor *normalTitleColor; 24 | 25 | @end 26 | -------------------------------------------------------------------------------- /MyOne/Pods/DKNightVersion/Classes/UIKit/UILabel/UILabel+NightVersion.h: -------------------------------------------------------------------------------- 1 | // 2 | // UILabel+NightVersion.h 3 | // UILabel+NightVersion 4 | // 5 | // Copyright (c) 2015 Draveness. All rights reserved. 6 | // 7 | // These files are generated by ruby script, if you want to modify code 8 | // in this file, you are supposed to update the ruby code, run it and 9 | // test it. And finally open a pull request. 10 | 11 | #import 12 | #import "UILabel+TextColor.h" 13 | 14 | 15 | @interface UILabel (NightVersion) 16 | 17 | - (void)changeColor; 18 | 19 | - (void)changeColorWithDuration:(CGFloat)duration; 20 | 21 | @end 22 | -------------------------------------------------------------------------------- /MyOne/Pods/DKNightVersion/Classes/UIKit/UILabel/UILabel+NightVersion.m: -------------------------------------------------------------------------------- 1 | // 2 | // UILabel+NightVersion.m 3 | // UILabel+NightVersion 4 | // 5 | // Copyright (c) 2015 Draveness. All rights reserved. 6 | // 7 | // These files are generated by ruby script, if you want to modify code 8 | // in this file, you are supposed to update the ruby code, run it and 9 | // test it. And finally open a pull request. 10 | 11 | #import "UILabel+NightVersion.h" 12 | #import "DKNightVersionManager.h" 13 | #import "DKNightVersionUtility.h" 14 | #import "UIView+NightVersion.h" 15 | 16 | 17 | 18 | @implementation UILabel (NightVersion) 19 | 20 | #pragma mark - ChangeColor 21 | 22 | - (void)changeColorWithDuration:(CGFloat)duration { 23 | if ([DKNightVersionUtility shouldChangeColor:self]) { 24 | 25 | [UIView animateWithDuration:duration animations:^{ 26 | [self setTextColor:([DKNightVersionManager currentThemeVersion] == DKThemeVersionNight) ? self.nightTextColor : self.normalTextColor]; 27 | [self setBackgroundColor:([DKNightVersionManager currentThemeVersion] == DKThemeVersionNight) ? self.nightBackgroundColor : self.normalBackgroundColor]; 28 | 29 | }]; 30 | } 31 | } 32 | 33 | - (void)changeColor { 34 | if ([DKNightVersionUtility shouldChangeColor:self]) { 35 | [self setTextColor:([DKNightVersionManager currentThemeVersion] == DKThemeVersionNight) ? self.nightTextColor : self.normalTextColor]; 36 | [self setBackgroundColor:([DKNightVersionManager currentThemeVersion] == DKThemeVersionNight) ? self.nightBackgroundColor : self.normalBackgroundColor]; 37 | 38 | } 39 | } 40 | 41 | @end 42 | -------------------------------------------------------------------------------- /MyOne/Pods/DKNightVersion/Classes/UIKit/UILabel/UILabel+TextColor.h: -------------------------------------------------------------------------------- 1 | // 2 | // UILabel+TextColor.h 3 | // UILabel+TextColor 4 | // 5 | // Copyright (c) 2015 Draveness. All rights reserved. 6 | // 7 | // These files are generated by ruby script, if you want to modify code 8 | // in this file, you are supposed to update the ruby code, run it and 9 | // test it. And finally open a pull request. 10 | 11 | #import 12 | 13 | @interface UILabel (TextColor) 14 | 15 | /** 16 | * Set this property when switch to night version uilabel TextColor turns to this color. 17 | */ 18 | @property (nonatomic, strong) UIColor *nightTextColor; 19 | 20 | /** 21 | * UILabel TextColor in normal version. 22 | */ 23 | @property (nonatomic, strong, readonly) UIColor *normalTextColor; 24 | 25 | @end 26 | -------------------------------------------------------------------------------- /MyOne/Pods/DKNightVersion/Classes/UIKit/UINavigationBar/UINavigationBar+BarTintColor.h: -------------------------------------------------------------------------------- 1 | // 2 | // UINavigationBar+BarTintColor.h 3 | // UINavigationBar+BarTintColor 4 | // 5 | // Copyright (c) 2015 Draveness. All rights reserved. 6 | // 7 | // These files are generated by ruby script, if you want to modify code 8 | // in this file, you are supposed to update the ruby code, run it and 9 | // test it. And finally open a pull request. 10 | 11 | #import 12 | 13 | @interface UINavigationBar (BarTintColor) 14 | 15 | /** 16 | * Set this property when switch to night version uinavigationbar BarTintColor turns to this color. 17 | */ 18 | @property (nonatomic, strong) UIColor *nightBarTintColor; 19 | 20 | /** 21 | * UINavigationBar BarTintColor in normal version. 22 | */ 23 | @property (nonatomic, strong, readonly) UIColor *normalBarTintColor; 24 | 25 | @end 26 | -------------------------------------------------------------------------------- /MyOne/Pods/DKNightVersion/Classes/UIKit/UINavigationBar/UINavigationBar+NightVersion.h: -------------------------------------------------------------------------------- 1 | // 2 | // UINavigationBar+NightVersion.h 3 | // UINavigationBar+NightVersion 4 | // 5 | // Copyright (c) 2015 Draveness. All rights reserved. 6 | // 7 | // These files are generated by ruby script, if you want to modify code 8 | // in this file, you are supposed to update the ruby code, run it and 9 | // test it. And finally open a pull request. 10 | 11 | #import 12 | #import "UINavigationBar+BarTintColor.h" 13 | #import "UINavigationBar+TintColor.h" 14 | 15 | 16 | @interface UINavigationBar (NightVersion) 17 | 18 | - (void)changeColor; 19 | 20 | - (void)changeColorWithDuration:(CGFloat)duration; 21 | 22 | @end 23 | -------------------------------------------------------------------------------- /MyOne/Pods/DKNightVersion/Classes/UIKit/UINavigationBar/UINavigationBar+TintColor.h: -------------------------------------------------------------------------------- 1 | // 2 | // UINavigationBar+TintColor.h 3 | // UINavigationBar+TintColor 4 | // 5 | // Copyright (c) 2015 Draveness. All rights reserved. 6 | // 7 | // These files are generated by ruby script, if you want to modify code 8 | // in this file, you are supposed to update the ruby code, run it and 9 | // test it. And finally open a pull request. 10 | 11 | #import 12 | 13 | @interface UINavigationBar (TintColor) 14 | 15 | /** 16 | * Set this property when switch to night version uinavigationbar TintColor turns to this color. 17 | */ 18 | @property (nonatomic, strong) UIColor *nightTintColor; 19 | 20 | /** 21 | * UINavigationBar TintColor in normal version. 22 | */ 23 | @property (nonatomic, strong, readonly) UIColor *normalTintColor; 24 | 25 | @end 26 | -------------------------------------------------------------------------------- /MyOne/Pods/DKNightVersion/Classes/UIKit/UITabBar/UITabBar+BarTintColor.h: -------------------------------------------------------------------------------- 1 | // 2 | // UITabBar+BarTintColor.h 3 | // UITabBar+BarTintColor 4 | // 5 | // Copyright (c) 2015 Draveness. All rights reserved. 6 | // 7 | // These files are generated by ruby script, if you want to modify code 8 | // in this file, you are supposed to update the ruby code, run it and 9 | // test it. And finally open a pull request. 10 | 11 | #import 12 | 13 | @interface UITabBar (BarTintColor) 14 | 15 | /** 16 | * Set this property when switch to night version uitabbar BarTintColor turns to this color. 17 | */ 18 | @property (nonatomic, strong) UIColor *nightBarTintColor; 19 | 20 | /** 21 | * UITabBar BarTintColor in normal version. 22 | */ 23 | @property (nonatomic, strong, readonly) UIColor *normalBarTintColor; 24 | 25 | @end 26 | -------------------------------------------------------------------------------- /MyOne/Pods/DKNightVersion/Classes/UIKit/UITabBar/UITabBar+NightVersion.h: -------------------------------------------------------------------------------- 1 | // 2 | // UITabBar+NightVersion.h 3 | // UITabBar+NightVersion 4 | // 5 | // Copyright (c) 2015 Draveness. All rights reserved. 6 | // 7 | // These files are generated by ruby script, if you want to modify code 8 | // in this file, you are supposed to update the ruby code, run it and 9 | // test it. And finally open a pull request. 10 | 11 | #import 12 | #import "UITabBar+BarTintColor.h" 13 | 14 | 15 | @interface UITabBar (NightVersion) 16 | 17 | - (void)changeColor; 18 | 19 | - (void)changeColorWithDuration:(CGFloat)duration; 20 | 21 | @end 22 | -------------------------------------------------------------------------------- /MyOne/Pods/DKNightVersion/Classes/UIKit/UITabBar/UITabBar+NightVersion.m: -------------------------------------------------------------------------------- 1 | // 2 | // UITabBar+NightVersion.m 3 | // UITabBar+NightVersion 4 | // 5 | // Copyright (c) 2015 Draveness. All rights reserved. 6 | // 7 | // These files are generated by ruby script, if you want to modify code 8 | // in this file, you are supposed to update the ruby code, run it and 9 | // test it. And finally open a pull request. 10 | 11 | #import "UITabBar+NightVersion.h" 12 | #import "DKNightVersionManager.h" 13 | #import "DKNightVersionUtility.h" 14 | #import "UIView+NightVersion.h" 15 | 16 | #import "UINavigationBar+Animation.h" 17 | 18 | @implementation UITabBar (NightVersion) 19 | 20 | #pragma mark - ChangeColor 21 | 22 | - (void)changeColorWithDuration:(CGFloat)duration { 23 | if ([DKNightVersionUtility shouldChangeColor:self]) { 24 | 25 | [UIView animateWithDuration:duration animations:^{ 26 | [self setBackgroundColor:([DKNightVersionManager currentThemeVersion] == DKThemeVersionNight) ? self.nightBackgroundColor : self.normalBackgroundColor]; 27 | 28 | }]; 29 | } 30 | } 31 | 32 | - (void)changeColor { 33 | if ([DKNightVersionUtility shouldChangeColor:self]) { 34 | [self setBarTintColor:([DKNightVersionManager currentThemeVersion] == DKThemeVersionNight) ? self.nightBarTintColor : self.normalBarTintColor]; 35 | [self setBackgroundColor:([DKNightVersionManager currentThemeVersion] == DKThemeVersionNight) ? self.nightBackgroundColor : self.normalBackgroundColor]; 36 | 37 | } 38 | } 39 | 40 | @end 41 | -------------------------------------------------------------------------------- /MyOne/Pods/DKNightVersion/Classes/UIKit/UITableView/UITableView+NightVersion.h: -------------------------------------------------------------------------------- 1 | // 2 | // UITableView+NightVersion.h 3 | // UITableView+NightVersion 4 | // 5 | // Copyright (c) 2015 Draveness. All rights reserved. 6 | // 7 | // These files are generated by ruby script, if you want to modify code 8 | // in this file, you are supposed to update the ruby code, run it and 9 | // test it. And finally open a pull request. 10 | 11 | #import 12 | #import "UITableView+SeparatorColor.h" 13 | 14 | 15 | @interface UITableView (NightVersion) 16 | 17 | - (void)changeColor; 18 | 19 | - (void)changeColorWithDuration:(CGFloat)duration; 20 | 21 | @end 22 | -------------------------------------------------------------------------------- /MyOne/Pods/DKNightVersion/Classes/UIKit/UITableView/UITableView+NightVersion.m: -------------------------------------------------------------------------------- 1 | // 2 | // UITableView+NightVersion.m 3 | // UITableView+NightVersion 4 | // 5 | // Copyright (c) 2015 Draveness. All rights reserved. 6 | // 7 | // These files are generated by ruby script, if you want to modify code 8 | // in this file, you are supposed to update the ruby code, run it and 9 | // test it. And finally open a pull request. 10 | 11 | #import "UITableView+NightVersion.h" 12 | #import "DKNightVersionManager.h" 13 | #import "DKNightVersionUtility.h" 14 | #import "UIView+NightVersion.h" 15 | 16 | 17 | 18 | @implementation UITableView (NightVersion) 19 | 20 | #pragma mark - ChangeColor 21 | 22 | - (void)changeColorWithDuration:(CGFloat)duration { 23 | if ([DKNightVersionUtility shouldChangeColor:self]) { 24 | 25 | [UIView animateWithDuration:duration animations:^{ 26 | [self setSeparatorColor:([DKNightVersionManager currentThemeVersion] == DKThemeVersionNight) ? self.nightSeparatorColor : self.normalSeparatorColor]; 27 | [self setBackgroundColor:([DKNightVersionManager currentThemeVersion] == DKThemeVersionNight) ? self.nightBackgroundColor : self.normalBackgroundColor]; 28 | 29 | }]; 30 | } 31 | } 32 | 33 | - (void)changeColor { 34 | if ([DKNightVersionUtility shouldChangeColor:self]) { 35 | [self setSeparatorColor:([DKNightVersionManager currentThemeVersion] == DKThemeVersionNight) ? self.nightSeparatorColor : self.normalSeparatorColor]; 36 | [self setBackgroundColor:([DKNightVersionManager currentThemeVersion] == DKThemeVersionNight) ? self.nightBackgroundColor : self.normalBackgroundColor]; 37 | 38 | } 39 | } 40 | 41 | @end 42 | -------------------------------------------------------------------------------- /MyOne/Pods/DKNightVersion/Classes/UIKit/UITableView/UITableView+SeparatorColor.h: -------------------------------------------------------------------------------- 1 | // 2 | // UITableView+SeparatorColor.h 3 | // UITableView+SeparatorColor 4 | // 5 | // Copyright (c) 2015 Draveness. All rights reserved. 6 | // 7 | // These files are generated by ruby script, if you want to modify code 8 | // in this file, you are supposed to update the ruby code, run it and 9 | // test it. And finally open a pull request. 10 | 11 | #import 12 | 13 | @interface UITableView (SeparatorColor) 14 | 15 | /** 16 | * Set this property when switch to night version uitableview SeparatorColor turns to this color. 17 | */ 18 | @property (nonatomic, strong) UIColor *nightSeparatorColor; 19 | 20 | /** 21 | * UITableView SeparatorColor in normal version. 22 | */ 23 | @property (nonatomic, strong, readonly) UIColor *normalSeparatorColor; 24 | 25 | @end 26 | -------------------------------------------------------------------------------- /MyOne/Pods/DKNightVersion/Classes/UIKit/UIView/UIView+BackgroundColor.h: -------------------------------------------------------------------------------- 1 | // 2 | // UIView+BackgroundColor.h 3 | // UIView+BackgroundColor 4 | // 5 | // Copyright (c) 2015 Draveness. All rights reserved. 6 | // 7 | // These files are generated by ruby script, if you want to modify code 8 | // in this file, you are supposed to update the ruby code, run it and 9 | // test it. And finally open a pull request. 10 | 11 | #import 12 | 13 | @interface UIView (BackgroundColor) 14 | 15 | /** 16 | * Set this property when switch to night version uiview BackgroundColor turns to this color. 17 | */ 18 | @property (nonatomic, strong) UIColor *nightBackgroundColor; 19 | 20 | /** 21 | * UIView BackgroundColor in normal version. 22 | */ 23 | @property (nonatomic, strong, readonly) UIColor *normalBackgroundColor; 24 | 25 | @end 26 | -------------------------------------------------------------------------------- /MyOne/Pods/DKNightVersion/Classes/UIKit/UIView/UIView+NightVersion.h: -------------------------------------------------------------------------------- 1 | // 2 | // UIView+NightVersion.h 3 | // UIView+NightVersion 4 | // 5 | // Copyright (c) 2015 Draveness. All rights reserved. 6 | // 7 | // These files are generated by ruby script, if you want to modify code 8 | // in this file, you are supposed to update the ruby code, run it and 9 | // test it. And finally open a pull request. 10 | 11 | #import 12 | #import "UIView+BackgroundColor.h" 13 | 14 | 15 | @interface UIView (NightVersion) 16 | 17 | - (void)changeColor; 18 | 19 | - (void)changeColorWithDuration:(CGFloat)duration; 20 | 21 | @end 22 | -------------------------------------------------------------------------------- /MyOne/Pods/DKNightVersion/Classes/UIKit/UIView/UIView+NightVersion.m: -------------------------------------------------------------------------------- 1 | // 2 | // UIView+NightVersion.m 3 | // UIView+NightVersion 4 | // 5 | // Copyright (c) 2015 Draveness. All rights reserved. 6 | // 7 | // These files are generated by ruby script, if you want to modify code 8 | // in this file, you are supposed to update the ruby code, run it and 9 | // test it. And finally open a pull request. 10 | 11 | #import "UIView+NightVersion.h" 12 | #import "DKNightVersionManager.h" 13 | #import "DKNightVersionUtility.h" 14 | 15 | 16 | 17 | @implementation UIView (NightVersion) 18 | 19 | #pragma mark - ChangeColor 20 | 21 | - (void)changeColorWithDuration:(CGFloat)duration { 22 | if ([DKNightVersionUtility shouldChangeColor:self]) { 23 | 24 | [UIView animateWithDuration:duration animations:^{ 25 | [self setBackgroundColor:([DKNightVersionManager currentThemeVersion] == DKThemeVersionNight) ? self.nightBackgroundColor : self.normalBackgroundColor]; 26 | 27 | }]; 28 | } 29 | } 30 | 31 | - (void)changeColor { 32 | if ([DKNightVersionUtility shouldChangeColor:self]) { 33 | [self setBackgroundColor:([DKNightVersionManager currentThemeVersion] == DKThemeVersionNight) ? self.nightBackgroundColor : self.normalBackgroundColor]; 34 | 35 | } 36 | } 37 | 38 | @end 39 | -------------------------------------------------------------------------------- /MyOne/Pods/DKNightVersion/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gem 'colorize' 4 | gem 'rake' 5 | gem 'xcodeproj' 6 | -------------------------------------------------------------------------------- /MyOne/Pods/DKNightVersion/Gemfile.lock: -------------------------------------------------------------------------------- 1 | GEM 2 | remote: https://rubygems.org/ 3 | specs: 4 | activesupport (4.2.1) 5 | i18n (~> 0.7) 6 | json (~> 1.7, >= 1.7.7) 7 | minitest (~> 5.1) 8 | thread_safe (~> 0.3, >= 0.3.4) 9 | tzinfo (~> 1.1) 10 | colored (1.2) 11 | colorize (0.7.7) 12 | i18n (0.7.0) 13 | json (1.8.2) 14 | minitest (5.6.1) 15 | rake (10.4.2) 16 | thread_safe (0.3.5) 17 | tzinfo (1.2.2) 18 | thread_safe (~> 0.1) 19 | xcodeproj (0.24.1) 20 | activesupport (>= 3) 21 | colored (~> 1.2) 22 | 23 | PLATFORMS 24 | ruby 25 | 26 | DEPENDENCIES 27 | colorize 28 | rake 29 | xcodeproj 30 | -------------------------------------------------------------------------------- /MyOne/Pods/DKNightVersion/LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2015 Draveness 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | 23 | -------------------------------------------------------------------------------- /MyOne/Pods/DKNightVersion/Rakefile: -------------------------------------------------------------------------------- 1 | require 'colorize' 2 | 3 | require_relative 'generator/lib/generator' 4 | 5 | task :default do 6 | puts "[Parse] Parsing JSON".yellow 7 | table = parse_json('property.json') 8 | puts "[Parse] Add superclass relation".green 9 | add_superklass_relation(table) 10 | puts "[Parse] Fix method setter and getter".green 11 | handle_method(table) 12 | xcode_proj_file = find_xcodeproj('.') 13 | basename = File.basename(xcode_proj_file) 14 | production = basename.start_with?('Pod') 15 | puts "[Generate] Start to generates UIKit files".yellow 16 | path = if production then 'DKNightVersion' else '.' end 17 | group = objc_code_generator(table, path) 18 | json_file_path = File.join('generator', 'lib', 'generator', 'json', 'project.json') 19 | File.write json_file_path, group.to_json 20 | 21 | #python_file = File.join('generator', 'lib', 'generator', 'project', 'project.py') 22 | puts "[Link] Find pbxproj file path".yellow 23 | puts "[Link] pbxproj is at '#{xcode_proj_file}'".green 24 | puts "[Link] Linking to xcodeproj".yellow 25 | add_files_to_project(xcode_proj_file, json_file_path) 26 | 27 | puts "[DKNightVersion] has already generate all files for you!".green 28 | #puts 29 | #puts 30 | #puts " You are supposed to drag files just generated to your workspace".yellow 31 | #puts " If you don't know how to do that, goto https://github.com/Draveness/DKNightVersion and follow the tutorial" 32 | #puts 33 | end 34 | -------------------------------------------------------------------------------- /MyOne/Pods/DKNightVersion/generator/lib/generator.rb: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | 3 | require_relative 'generator/render' 4 | require_relative 'generator/parser' 5 | require_relative 'generator/xcodeproj' 6 | require_relative 'generator/project' 7 | 8 | -------------------------------------------------------------------------------- /MyOne/Pods/DKNightVersion/generator/lib/generator/json/method.json: -------------------------------------------------------------------------------- 1 | { 2 | "UIButton": 3 | { 4 | "titleColor": 5 | { 6 | "getter": "currentTitleColor", 7 | "setter": "setTitleColor:(UIColor*)titleColor forState:(UIControlState)state", 8 | "parameter": "UIControlStateNormal" 9 | } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /MyOne/Pods/DKNightVersion/generator/lib/generator/json/project.json: -------------------------------------------------------------------------------- 1 | {"UIView":["./Classes/UIKit/UIView/UIView+NightVersion.h","./Classes/UIKit/UIView/UIView+NightVersion.m","./Classes/UIKit/UIView/UIView+BackgroundColor.h","./Classes/UIKit/UIView/UIView+BackgroundColor.m"],"UILabel":["./Classes/UIKit/UILabel/UILabel+NightVersion.h","./Classes/UIKit/UILabel/UILabel+NightVersion.m","./Classes/UIKit/UILabel/UILabel+TextColor.h","./Classes/UIKit/UILabel/UILabel+TextColor.m"],"UINavigationBar":["./Classes/UIKit/UINavigationBar/UINavigationBar+NightVersion.h","./Classes/UIKit/UINavigationBar/UINavigationBar+NightVersion.m","./Classes/UIKit/UINavigationBar/UINavigationBar+BarTintColor.h","./Classes/UIKit/UINavigationBar/UINavigationBar+BarTintColor.m","./Classes/UIKit/UINavigationBar/UINavigationBar+TintColor.h","./Classes/UIKit/UINavigationBar/UINavigationBar+TintColor.m"],"UITabBar":["./Classes/UIKit/UITabBar/UITabBar+NightVersion.h","./Classes/UIKit/UITabBar/UITabBar+NightVersion.m","./Classes/UIKit/UITabBar/UITabBar+BarTintColor.h","./Classes/UIKit/UITabBar/UITabBar+BarTintColor.m"],"UIButton":["./Classes/UIKit/UIButton/UIButton+NightVersion.h","./Classes/UIKit/UIButton/UIButton+NightVersion.m","./Classes/UIKit/UIButton/UIButton+TitleColor.h","./Classes/UIKit/UIButton/UIButton+TitleColor.m"],"UIBarButtonItem":["./Classes/UIKit/UIBarButtonItem/UIBarButtonItem+NightVersion.h","./Classes/UIKit/UIBarButtonItem/UIBarButtonItem+NightVersion.m","./Classes/UIKit/UIBarButtonItem/UIBarButtonItem+TintColor.h","./Classes/UIKit/UIBarButtonItem/UIBarButtonItem+TintColor.m"],"UITableView":["./Classes/UIKit/UITableView/UITableView+NightVersion.h","./Classes/UIKit/UITableView/UITableView+NightVersion.m","./Classes/UIKit/UITableView/UITableView+SeparatorColor.h","./Classes/UIKit/UITableView/UITableView+SeparatorColor.m"]} -------------------------------------------------------------------------------- /MyOne/Pods/DKNightVersion/generator/lib/generator/json/superklass.json: -------------------------------------------------------------------------------- 1 | { 2 | "UIView": 3 | [ 4 | "UILabel", 5 | "UIControl", 6 | "UINavigationBar", 7 | "UITabBar", 8 | "UIScrollView", 9 | "UITableViewCell", 10 | "UIImageView", 11 | "UIProgressView" 12 | ], 13 | "UIControl": 14 | [ 15 | "UIButton", 16 | "UITextField", 17 | "UISwitch" 18 | ], 19 | "UIScrollView": 20 | [ 21 | "UITableView" 22 | ] 23 | } 24 | -------------------------------------------------------------------------------- /MyOne/Pods/DKNightVersion/generator/lib/generator/model/objc_class.rb: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | 3 | class ObjcClass 4 | attr_accessor :name, :properties, :superklass 5 | attr_reader :all_properties, :superklass_name 6 | 7 | #def initialize(name, superklass_name, properties = []) 8 | # @name = name 9 | # @superklass_name = superklass_name 10 | # @properties = properties 11 | #end 12 | def initialize(name, properties = []) 13 | @name = name 14 | @properties = properties 15 | end 16 | 17 | def nightversion_header_name 18 | name + '+NightVersion.h' 19 | end 20 | 21 | def nightversion_imp_name 22 | name + '+NightVersion.m' 23 | end 24 | 25 | def color_header_name(property) 26 | file_name(property) + '.h' 27 | end 28 | 29 | def color_imp_name(property) 30 | file_name(property) + '.m' 31 | end 32 | 33 | def all_properties 34 | p = properties.dup 35 | name = p.map { |property| property.name } 36 | k = superklass 37 | while k 38 | superklass.properties.each do |property| 39 | p << property if !name.find_index(property.name) 40 | end 41 | k = k.superklass 42 | name = p.map { |property| property.name } 43 | end 44 | p.uniq 45 | end 46 | 47 | def superklass_name 48 | if superklass 49 | superklass.name 50 | else 51 | nil 52 | end 53 | end 54 | 55 | 56 | def all_superklass_name 57 | k = [] 58 | return if !superklass_name 59 | s = superklass 60 | while s 61 | k << s.name 62 | s = s.superklass 63 | end 64 | k 65 | end 66 | 67 | private 68 | 69 | def file_name(property) 70 | "#{name}+#{property.cap_name}" 71 | end 72 | 73 | end 74 | -------------------------------------------------------------------------------- /MyOne/Pods/DKNightVersion/generator/lib/generator/model/objc_property.rb: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | 3 | class ObjcProperty 4 | attr_accessor :name, :type, :getter, :setter, :parameter 5 | 6 | def initialize args 7 | args.each do |k,v| 8 | instance_variable_set("@#{k}", v) unless v.nil? 9 | end 10 | @type ||= "UIColor *" 11 | @setter ||= "set#{cap_name}:(UIColor*)#{name}" 12 | @getter ||= "#{name}" 13 | end 14 | 15 | def cap_name 16 | @name[0].upcase + @name[1..-1] 17 | end 18 | 19 | def setter_selector_name 20 | setter.split().map { |s| (/.*:/).match(s).to_s }.join 21 | end 22 | 23 | def set_color_method(color) 24 | s = setter.split(' ').map { |str| (/.*:/).match(str).to_s } 25 | s.first.concat(color) 26 | s[1].concat(parameter) unless parameter.nil? 27 | s.join(' ') 28 | end 29 | 30 | end 31 | -------------------------------------------------------------------------------- /MyOne/Pods/DKNightVersion/generator/lib/generator/template/color.h.erb: -------------------------------------------------------------------------------- 1 | // 2 | // <%= klass.name %>+<%= property.cap_name %>.h 3 | // <%= klass.name %>+<%= property.cap_name %> 4 | // 5 | // Copyright (c) 2015 Draveness. All rights reserved. 6 | // 7 | // These files are generated by ruby script, if you want to modify code 8 | // in this file, you are supposed to update the ruby code, run it and 9 | // test it. And finally open a pull request. 10 | 11 | #import 12 | 13 | @interface <%= klass.name %> (<%= property.cap_name %>) 14 | 15 | /** 16 | * Set this property when switch to night version <%= klass.name.downcase %> <%= property.cap_name %> turns to this color. 17 | */ 18 | @property (nonatomic, strong) UIColor *night<%= property.cap_name %>; 19 | 20 | /** 21 | * <%= klass.name %> <%= property.cap_name %> in normal version. 22 | */ 23 | @property (nonatomic, strong, readonly) UIColor *normal<%= property.cap_name %>; 24 | 25 | @end 26 | -------------------------------------------------------------------------------- /MyOne/Pods/DKNightVersion/generator/lib/generator/template/nightversion.h.erb: -------------------------------------------------------------------------------- 1 | // 2 | // <%= klass.name %>+NightVersion.h 3 | // <%= klass.name %>+NightVersion 4 | // 5 | // Copyright (c) 2015 Draveness. All rights reserved. 6 | // 7 | // These files are generated by ruby script, if you want to modify code 8 | // in this file, you are supposed to update the ruby code, run it and 9 | // test it. And finally open a pull request. 10 | 11 | #import 12 | <% klass.properties.each do |property| %><%= "#import \"" + klass.name + "+#{property.cap_name}.h\"\n" %><% end %> 13 | 14 | @interface <%= klass.name %> (NightVersion) 15 | 16 | - (void)changeColor; 17 | 18 | - (void)changeColorWithDuration:(CGFloat)duration; 19 | 20 | @end 21 | -------------------------------------------------------------------------------- /MyOne/Pods/DKNightVersion/generator/lib/generator/xcodeproj.rb: -------------------------------------------------------------------------------- 1 | def find_xcodeproj(path) 2 | Dir.foreach(path) do |f| 3 | return File.join path, f if File.extname(f) == ".xcodeproj" 4 | end 5 | find_xcodeproj(File.join '..', path) 6 | end 7 | 8 | def find_pbxproj(path) 9 | xcodeproj = find_xcodeproj(path) 10 | Dir.foreach(xcodeproj) do |f| 11 | return File.join xcodeproj, f if File.extname(f) == ".pbxproj" 12 | end 13 | end 14 | -------------------------------------------------------------------------------- /MyOne/Pods/DKNightVersion/property.json: -------------------------------------------------------------------------------- 1 | { 2 | "UIView": 3 | [ 4 | "backgroundColor" 5 | ], 6 | "UILabel": 7 | [ 8 | "textColor" 9 | ], 10 | "UINavigationBar": 11 | [ 12 | "barTintColor", 13 | "tintColor" 14 | ], 15 | "UITabBar": 16 | [ 17 | "barTintColor" 18 | ], 19 | "UIButton": 20 | [ 21 | "titleColor" 22 | ], 23 | "UIBarButtonItem": 24 | [ 25 | "tintColor" 26 | ], 27 | "UITableView": 28 | [ 29 | "separatorColor" 30 | ] 31 | } 32 | -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Private/AFNetworking/AFHTTPRequestOperation.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFHTTPRequestOperation.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Private/AFNetworking/AFHTTPRequestOperationManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFHTTPRequestOperationManager.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Private/AFNetworking/AFHTTPSessionManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFHTTPSessionManager.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Private/AFNetworking/AFNetworkActivityIndicatorManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/AFNetworkActivityIndicatorManager.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Private/AFNetworking/AFNetworkReachabilityManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFNetworkReachabilityManager.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Private/AFNetworking/AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFNetworking.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Private/AFNetworking/AFSecurityPolicy.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFSecurityPolicy.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Private/AFNetworking/AFURLConnectionOperation.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLConnectionOperation.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Private/AFNetworking/AFURLRequestSerialization.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLRequestSerialization.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Private/AFNetworking/AFURLResponseSerialization.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLResponseSerialization.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Private/AFNetworking/AFURLSessionManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLSessionManager.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Private/AFNetworking/UIActivityIndicatorView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Private/AFNetworking/UIAlertView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIAlertView+AFNetworking.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Private/AFNetworking/UIButton+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Private/AFNetworking/UIImageView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIImageView+AFNetworking.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Private/AFNetworking/UIKit+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIKit+AFNetworking.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Private/AFNetworking/UIProgressView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIProgressView+AFNetworking.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Private/AFNetworking/UIRefreshControl+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIRefreshControl+AFNetworking.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Private/AFNetworking/UIWebView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIWebView+AFNetworking.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Private/DKNightVersion/DKNightVersion.h: -------------------------------------------------------------------------------- 1 | ../../../DKNightVersion/Classes/DKNightVersion.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Private/DKNightVersion/DKNightVersionManager.h: -------------------------------------------------------------------------------- 1 | ../../../DKNightVersion/Classes/Core/DKNightVersionManager.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Private/DKNightVersion/DKNightVersionUtility.h: -------------------------------------------------------------------------------- 1 | ../../../DKNightVersion/Classes/Helper/DKNightVersionUtility.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Private/DKNightVersion/UIBarButtonItem+NightVersion.h: -------------------------------------------------------------------------------- 1 | ../../../DKNightVersion/Classes/UIKit/UIBarButtonItem/UIBarButtonItem+NightVersion.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Private/DKNightVersion/UIBarButtonItem+TintColor.h: -------------------------------------------------------------------------------- 1 | ../../../DKNightVersion/Classes/UIKit/UIBarButtonItem/UIBarButtonItem+TintColor.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Private/DKNightVersion/UIButton+NightVersion.h: -------------------------------------------------------------------------------- 1 | ../../../DKNightVersion/Classes/UIKit/UIButton/UIButton+NightVersion.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Private/DKNightVersion/UIButton+TitleColor.h: -------------------------------------------------------------------------------- 1 | ../../../DKNightVersion/Classes/UIKit/UIButton/UIButton+TitleColor.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Private/DKNightVersion/UILabel+NightVersion.h: -------------------------------------------------------------------------------- 1 | ../../../DKNightVersion/Classes/UIKit/UILabel/UILabel+NightVersion.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Private/DKNightVersion/UILabel+TextColor.h: -------------------------------------------------------------------------------- 1 | ../../../DKNightVersion/Classes/UIKit/UILabel/UILabel+TextColor.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Private/DKNightVersion/UINavigationBar+Animation.h: -------------------------------------------------------------------------------- 1 | ../../../DKNightVersion/Classes/Helper/UINavigationBar+Animation.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Private/DKNightVersion/UINavigationBar+BarTintColor.h: -------------------------------------------------------------------------------- 1 | ../../../DKNightVersion/Classes/UIKit/UINavigationBar/UINavigationBar+BarTintColor.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Private/DKNightVersion/UINavigationBar+NightVersion.h: -------------------------------------------------------------------------------- 1 | ../../../DKNightVersion/Classes/UIKit/UINavigationBar/UINavigationBar+NightVersion.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Private/DKNightVersion/UINavigationBar+TintColor.h: -------------------------------------------------------------------------------- 1 | ../../../DKNightVersion/Classes/UIKit/UINavigationBar/UINavigationBar+TintColor.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Private/DKNightVersion/UITabBar+BarTintColor.h: -------------------------------------------------------------------------------- 1 | ../../../DKNightVersion/Classes/UIKit/UITabBar/UITabBar+BarTintColor.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Private/DKNightVersion/UITabBar+NightVersion.h: -------------------------------------------------------------------------------- 1 | ../../../DKNightVersion/Classes/UIKit/UITabBar/UITabBar+NightVersion.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Private/DKNightVersion/UITableView+NightVersion.h: -------------------------------------------------------------------------------- 1 | ../../../DKNightVersion/Classes/UIKit/UITableView/UITableView+NightVersion.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Private/DKNightVersion/UITableView+SeparatorColor.h: -------------------------------------------------------------------------------- 1 | ../../../DKNightVersion/Classes/UIKit/UITableView/UITableView+SeparatorColor.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Private/DKNightVersion/UIView+BackgroundColor.h: -------------------------------------------------------------------------------- 1 | ../../../DKNightVersion/Classes/UIKit/UIView/UIView+BackgroundColor.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Private/DKNightVersion/UIView+NightVersion.h: -------------------------------------------------------------------------------- 1 | ../../../DKNightVersion/Classes/UIKit/UIView/UIView+NightVersion.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Private/DKNightVersion/UIViewController+ChangeColor.h: -------------------------------------------------------------------------------- 1 | ../../../DKNightVersion/Classes/Controller/UIViewController+ChangeColor.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Private/MBProgressHUD/MBProgressHUD.h: -------------------------------------------------------------------------------- 1 | ../../../MBProgressHUD/MBProgressHUD.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Private/MJExtension/MJExtension.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/MJExtension.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Private/MJExtension/MJExtensionConst.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/MJExtensionConst.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Private/MJExtension/MJFoundation.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/MJFoundation.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Private/MJExtension/MJProperty.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/MJProperty.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Private/MJExtension/MJType.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/MJType.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Private/MJExtension/NSObject+MJCoding.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/NSObject+MJCoding.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Private/MJExtension/NSObject+MJKeyValue.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/NSObject+MJKeyValue.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Private/MJExtension/NSObject+MJProperty.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/NSObject+MJProperty.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Private/MJExtension/NSString+MJExtension.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/NSString+MJExtension.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Private/Masonry/MASCompositeConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASCompositeConstraint.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Private/Masonry/MASConstraint+Private.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraint+Private.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Private/Masonry/MASConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraint.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Private/Masonry/MASConstraintMaker.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraintMaker.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Private/Masonry/MASLayoutConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASLayoutConstraint.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Private/Masonry/MASUtilities.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASUtilities.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Private/Masonry/MASViewAttribute.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASViewAttribute.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Private/Masonry/MASViewConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASViewConstraint.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Private/Masonry/Masonry.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/Masonry.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Private/Masonry/NSArray+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSArray+MASAdditions.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Private/Masonry/NSArray+MASShorthandAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSArray+MASShorthandAdditions.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Private/Masonry/NSLayoutConstraint+MASDebugAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Private/Masonry/View+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/View+MASAdditions.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Private/Masonry/View+MASShorthandAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/View+MASShorthandAdditions.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Private/Masonry/ViewController+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/ViewController+MASAdditions.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Private/SDWebImage/NSData+ImageContentType.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/NSData+ImageContentType.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Private/SDWebImage/SDImageCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDImageCache.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Private/SDWebImage/SDWebImageCompat.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageCompat.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Private/SDWebImage/SDWebImageDecoder.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageDecoder.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Private/SDWebImage/SDWebImageDownloader.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageDownloader.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Private/SDWebImage/SDWebImageDownloaderOperation.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageDownloaderOperation.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Private/SDWebImage/SDWebImageManager.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageManager.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Private/SDWebImage/SDWebImageOperation.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageOperation.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Private/SDWebImage/SDWebImagePrefetcher.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImagePrefetcher.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Private/SDWebImage/UIButton+WebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIButton+WebCache.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Private/SDWebImage/UIImage+GIF.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImage+GIF.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Private/SDWebImage/UIImage+MultiFormat.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImage+MultiFormat.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Private/SDWebImage/UIImageView+HighlightedWebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImageView+HighlightedWebCache.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Private/SDWebImage/UIImageView+WebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImageView+WebCache.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Private/SDWebImage/UIView+WebCacheOperation.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIView+WebCacheOperation.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Private/iCarousel/iCarousel.h: -------------------------------------------------------------------------------- 1 | ../../../iCarousel/iCarousel/iCarousel.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Public/AFNetworking/AFHTTPRequestOperation.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFHTTPRequestOperation.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Public/AFNetworking/AFHTTPRequestOperationManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFHTTPRequestOperationManager.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Public/AFNetworking/AFHTTPSessionManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFHTTPSessionManager.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Public/AFNetworking/AFNetworkActivityIndicatorManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/AFNetworkActivityIndicatorManager.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Public/AFNetworking/AFNetworkReachabilityManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFNetworkReachabilityManager.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Public/AFNetworking/AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFNetworking.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Public/AFNetworking/AFSecurityPolicy.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFSecurityPolicy.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Public/AFNetworking/AFURLConnectionOperation.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLConnectionOperation.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Public/AFNetworking/AFURLRequestSerialization.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLRequestSerialization.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Public/AFNetworking/AFURLResponseSerialization.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLResponseSerialization.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Public/AFNetworking/AFURLSessionManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLSessionManager.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Public/AFNetworking/UIActivityIndicatorView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Public/AFNetworking/UIAlertView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIAlertView+AFNetworking.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Public/AFNetworking/UIButton+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Public/AFNetworking/UIImageView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIImageView+AFNetworking.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Public/AFNetworking/UIKit+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIKit+AFNetworking.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Public/AFNetworking/UIProgressView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIProgressView+AFNetworking.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Public/AFNetworking/UIRefreshControl+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIRefreshControl+AFNetworking.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Public/AFNetworking/UIWebView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIWebView+AFNetworking.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Public/DKNightVersion/DKNightVersion.h: -------------------------------------------------------------------------------- 1 | ../../../DKNightVersion/Classes/DKNightVersion.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Public/DKNightVersion/DKNightVersionManager.h: -------------------------------------------------------------------------------- 1 | ../../../DKNightVersion/Classes/Core/DKNightVersionManager.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Public/DKNightVersion/DKNightVersionUtility.h: -------------------------------------------------------------------------------- 1 | ../../../DKNightVersion/Classes/Helper/DKNightVersionUtility.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Public/DKNightVersion/UIBarButtonItem+NightVersion.h: -------------------------------------------------------------------------------- 1 | ../../../DKNightVersion/Classes/UIKit/UIBarButtonItem/UIBarButtonItem+NightVersion.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Public/DKNightVersion/UIBarButtonItem+TintColor.h: -------------------------------------------------------------------------------- 1 | ../../../DKNightVersion/Classes/UIKit/UIBarButtonItem/UIBarButtonItem+TintColor.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Public/DKNightVersion/UIButton+NightVersion.h: -------------------------------------------------------------------------------- 1 | ../../../DKNightVersion/Classes/UIKit/UIButton/UIButton+NightVersion.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Public/DKNightVersion/UIButton+TitleColor.h: -------------------------------------------------------------------------------- 1 | ../../../DKNightVersion/Classes/UIKit/UIButton/UIButton+TitleColor.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Public/DKNightVersion/UILabel+NightVersion.h: -------------------------------------------------------------------------------- 1 | ../../../DKNightVersion/Classes/UIKit/UILabel/UILabel+NightVersion.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Public/DKNightVersion/UILabel+TextColor.h: -------------------------------------------------------------------------------- 1 | ../../../DKNightVersion/Classes/UIKit/UILabel/UILabel+TextColor.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Public/DKNightVersion/UINavigationBar+Animation.h: -------------------------------------------------------------------------------- 1 | ../../../DKNightVersion/Classes/Helper/UINavigationBar+Animation.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Public/DKNightVersion/UINavigationBar+BarTintColor.h: -------------------------------------------------------------------------------- 1 | ../../../DKNightVersion/Classes/UIKit/UINavigationBar/UINavigationBar+BarTintColor.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Public/DKNightVersion/UINavigationBar+NightVersion.h: -------------------------------------------------------------------------------- 1 | ../../../DKNightVersion/Classes/UIKit/UINavigationBar/UINavigationBar+NightVersion.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Public/DKNightVersion/UINavigationBar+TintColor.h: -------------------------------------------------------------------------------- 1 | ../../../DKNightVersion/Classes/UIKit/UINavigationBar/UINavigationBar+TintColor.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Public/DKNightVersion/UITabBar+BarTintColor.h: -------------------------------------------------------------------------------- 1 | ../../../DKNightVersion/Classes/UIKit/UITabBar/UITabBar+BarTintColor.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Public/DKNightVersion/UITabBar+NightVersion.h: -------------------------------------------------------------------------------- 1 | ../../../DKNightVersion/Classes/UIKit/UITabBar/UITabBar+NightVersion.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Public/DKNightVersion/UITableView+NightVersion.h: -------------------------------------------------------------------------------- 1 | ../../../DKNightVersion/Classes/UIKit/UITableView/UITableView+NightVersion.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Public/DKNightVersion/UITableView+SeparatorColor.h: -------------------------------------------------------------------------------- 1 | ../../../DKNightVersion/Classes/UIKit/UITableView/UITableView+SeparatorColor.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Public/DKNightVersion/UIView+BackgroundColor.h: -------------------------------------------------------------------------------- 1 | ../../../DKNightVersion/Classes/UIKit/UIView/UIView+BackgroundColor.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Public/DKNightVersion/UIView+NightVersion.h: -------------------------------------------------------------------------------- 1 | ../../../DKNightVersion/Classes/UIKit/UIView/UIView+NightVersion.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Public/DKNightVersion/UIViewController+ChangeColor.h: -------------------------------------------------------------------------------- 1 | ../../../DKNightVersion/Classes/Controller/UIViewController+ChangeColor.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Public/MBProgressHUD/MBProgressHUD.h: -------------------------------------------------------------------------------- 1 | ../../../MBProgressHUD/MBProgressHUD.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Public/MJExtension/MJExtension.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/MJExtension.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Public/MJExtension/MJExtensionConst.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/MJExtensionConst.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Public/MJExtension/MJFoundation.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/MJFoundation.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Public/MJExtension/MJProperty.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/MJProperty.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Public/MJExtension/MJType.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/MJType.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Public/MJExtension/NSObject+MJCoding.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/NSObject+MJCoding.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Public/MJExtension/NSObject+MJKeyValue.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/NSObject+MJKeyValue.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Public/MJExtension/NSObject+MJProperty.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/NSObject+MJProperty.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Public/MJExtension/NSString+MJExtension.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/NSString+MJExtension.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Public/Masonry/MASCompositeConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASCompositeConstraint.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Public/Masonry/MASConstraint+Private.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraint+Private.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Public/Masonry/MASConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraint.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Public/Masonry/MASConstraintMaker.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraintMaker.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Public/Masonry/MASLayoutConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASLayoutConstraint.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Public/Masonry/MASUtilities.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASUtilities.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Public/Masonry/MASViewAttribute.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASViewAttribute.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Public/Masonry/MASViewConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASViewConstraint.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Public/Masonry/Masonry.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/Masonry.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Public/Masonry/NSArray+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSArray+MASAdditions.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Public/Masonry/NSArray+MASShorthandAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSArray+MASShorthandAdditions.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Public/Masonry/NSLayoutConstraint+MASDebugAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Public/Masonry/View+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/View+MASAdditions.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Public/Masonry/View+MASShorthandAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/View+MASShorthandAdditions.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Public/Masonry/ViewController+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/ViewController+MASAdditions.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Public/SDWebImage/NSData+ImageContentType.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/NSData+ImageContentType.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Public/SDWebImage/SDImageCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDImageCache.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Public/SDWebImage/SDWebImageCompat.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageCompat.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Public/SDWebImage/SDWebImageDecoder.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageDecoder.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Public/SDWebImage/SDWebImageDownloader.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageDownloader.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Public/SDWebImage/SDWebImageDownloaderOperation.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageDownloaderOperation.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Public/SDWebImage/SDWebImageManager.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageManager.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Public/SDWebImage/SDWebImageOperation.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageOperation.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Public/SDWebImage/SDWebImagePrefetcher.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImagePrefetcher.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Public/SDWebImage/UIButton+WebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIButton+WebCache.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Public/SDWebImage/UIImage+GIF.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImage+GIF.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Public/SDWebImage/UIImage+MultiFormat.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImage+MultiFormat.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Public/SDWebImage/UIImageView+HighlightedWebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImageView+HighlightedWebCache.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Public/SDWebImage/UIImageView+WebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImageView+WebCache.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Public/SDWebImage/UIView+WebCacheOperation.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIView+WebCacheOperation.h -------------------------------------------------------------------------------- /MyOne/Pods/Headers/Public/iCarousel/iCarousel.h: -------------------------------------------------------------------------------- 1 | ../../../iCarousel/iCarousel/iCarousel.h -------------------------------------------------------------------------------- /MyOne/Pods/MBProgressHUD/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2009-2015 Matej Bukovinski 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy 4 | of this software and associated documentation files (the "Software"), to deal 5 | in the Software without restriction, including without limitation the rights 6 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 7 | copies of the Software, and to permit persons to whom the Software is 8 | furnished to do so, subject to the following conditions: 9 | 10 | The above copyright notice and this permission notice shall be included in 11 | all copies or substantial portions of the Software. 12 | 13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 16 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 17 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 18 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 19 | THE SOFTWARE. -------------------------------------------------------------------------------- /MyOne/Pods/MJExtension/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2013-2014 MJExtension (https://github.com/CoderMJLee/MJExtension) 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy 4 | of this software and associated documentation files (the "Software"), to deal 5 | in the Software without restriction, including without limitation the rights 6 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 7 | copies of the Software, and to permit persons to whom the Software is 8 | furnished to do so, subject to the following conditions: 9 | 10 | The above copyright notice and this permission notice shall be included in 11 | all copies or substantial portions of the Software. 12 | 13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 16 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 17 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 18 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 19 | THE SOFTWARE. 20 | -------------------------------------------------------------------------------- /MyOne/Pods/MJExtension/MJExtension/MJExtension.h: -------------------------------------------------------------------------------- 1 | // 2 | // MJExtension.h 3 | // MJExtension 4 | // 5 | // Created by mj on 14-1-15. 6 | // Copyright (c) 2014年 小码哥. All rights reserved. 7 | // 代码地址:https://github.com/CoderMJLee/MJExtension 8 | // 代码地址:http://code4app.com/ios/%E5%AD%97%E5%85%B8-JSON-%E4%B8%8E%E6%A8%A1%E5%9E%8B%E7%9A%84%E8%BD%AC%E6%8D%A2/5339992a933bf062608b4c57 9 | 10 | #import "NSObject+MJCoding.h" 11 | #import "NSObject+MJProperty.h" 12 | #import "NSObject+MJKeyValue.h" 13 | #import "NSString+MJExtension.h" 14 | -------------------------------------------------------------------------------- /MyOne/Pods/MJExtension/MJExtension/MJExtensionConst.m: -------------------------------------------------------------------------------- 1 | #ifndef __MJExtensionConst__M__ 2 | #define __MJExtensionConst__M__ 3 | 4 | #import 5 | 6 | /** 7 | * 成员变量类型(属性类型) 8 | */ 9 | NSString *const MJTypeInt = @"i"; 10 | NSString *const MJTypeShort = @"s"; 11 | NSString *const MJTypeFloat = @"f"; 12 | NSString *const MJTypeDouble = @"d"; 13 | NSString *const MJTypeLong = @"q"; 14 | NSString *const MJTypeChar = @"c"; 15 | NSString *const MJTypeBOOL1 = @"c"; 16 | NSString *const MJTypeBOOL2 = @"b"; 17 | NSString *const MJTypePointer = @"*"; 18 | 19 | NSString *const MJTypeIvar = @"^{objc_ivar=}"; 20 | NSString *const MJTypeMethod = @"^{objc_method=}"; 21 | NSString *const MJTypeBlock = @"@?"; 22 | NSString *const MJTypeClass = @"#"; 23 | NSString *const MJTypeSEL = @":"; 24 | NSString *const MJTypeId = @"@"; 25 | 26 | #endif -------------------------------------------------------------------------------- /MyOne/Pods/MJExtension/MJExtension/MJFoundation.h: -------------------------------------------------------------------------------- 1 | // 2 | // MJFoundation.h 3 | // MJExtensionExample 4 | // 5 | // Created by MJ Lee on 14/7/16. 6 | // Copyright (c) 2014年 小码哥. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface MJFoundation : NSObject 12 | + (BOOL)isClassFromFoundation:(Class)c; 13 | @end 14 | -------------------------------------------------------------------------------- /MyOne/Pods/MJExtension/MJExtension/MJFoundation.m: -------------------------------------------------------------------------------- 1 | // 2 | // MJFoundation.m 3 | // MJExtensionExample 4 | // 5 | // Created by MJ Lee on 14/7/16. 6 | // Copyright (c) 2014年 小码哥. All rights reserved. 7 | // 8 | 9 | #import "MJFoundation.h" 10 | #import "MJExtensionConst.h" 11 | #import 12 | 13 | static NSSet *_foundationClasses; 14 | 15 | @implementation MJFoundation 16 | 17 | + (NSSet *)foundatonClasses 18 | { 19 | if (_foundationClasses == nil) { 20 | // 集合中没有NSObject,因为几乎所有的类都是继承自NSObject,具体是不是NSObject需要特殊判断 21 | _foundationClasses = [NSSet setWithObjects: 22 | [NSURL class], 23 | [NSDate class], 24 | [NSValue class], 25 | [NSData class], 26 | [NSArray class], 27 | [NSDictionary class], 28 | [NSString class], nil]; 29 | } 30 | return _foundationClasses; 31 | } 32 | 33 | + (BOOL)isClassFromFoundation:(Class)c 34 | { 35 | if (c == [NSObject class] || c == [NSManagedObject class]) return YES; 36 | 37 | __block BOOL result = NO; 38 | [[self foundatonClasses] enumerateObjectsUsingBlock:^(Class foundationClass, BOOL *stop) { 39 | if (c == foundationClass || [c isSubclassOfClass:foundationClass]) { 40 | result = YES; 41 | *stop = YES; 42 | } 43 | }]; 44 | return result; 45 | } 46 | @end 47 | -------------------------------------------------------------------------------- /MyOne/Pods/MJExtension/MJExtension/MJProperty.h: -------------------------------------------------------------------------------- 1 | // 2 | // MJProperty.h 3 | // MJExtensionExample 4 | // 5 | // Created by MJ Lee on 15/4/17. 6 | // Copyright (c) 2015年 小码哥. All rights reserved. 7 | // 包装一个成员属性 8 | 9 | #import 10 | #import 11 | #import "MJType.h" 12 | 13 | typedef enum { 14 | MJPropertyKeyTypeDictionary = 0, // 字典的key 15 | MJPropertyKeyTypeArray // 数组的key 16 | } MJPropertyKeyType; 17 | 18 | 19 | /** 20 | * 属性的key 21 | */ 22 | @interface MJPropertyKey : NSObject 23 | 24 | @property (copy, nonatomic) NSString *name; 25 | @property (assign, nonatomic) MJPropertyKeyType type; 26 | 27 | /** 28 | * 根据当前的key,也就是name,从object(字典或者数组)中取值 29 | */ 30 | - (id)valueInObject:(id)object; 31 | 32 | @end 33 | 34 | 35 | /** 36 | * 包装一个成员 37 | */ 38 | @interface MJProperty : NSObject 39 | 40 | /** 成员属性 */ 41 | @property (nonatomic, assign) objc_property_t property; 42 | /** 成员属性名 */ 43 | @property (nonatomic, readonly) NSString *name; 44 | 45 | /** 成员变量的类型 */ 46 | @property (nonatomic, readonly) MJType *type; 47 | /** 成员来源于哪个类(可能是父类) */ 48 | @property (nonatomic, assign) Class srcClass; 49 | 50 | 51 | /**** 同一个成员变量 - 父类和子类的行为可能不一致(key、keys、objectClassInArray) ****/ 52 | /** 对应着字典中的key */ 53 | - (void)setKey:(NSString *)key forClass:(Class)c; 54 | /** 对应着字典中的多级key */ 55 | - (NSArray *)propertyKeysFromClass:(Class)c; 56 | 57 | /** 模型数组中的模型类型 */ 58 | - (void)setObjectClassInArray:(Class)objectClass forClass:(Class)c; 59 | - (Class)objectClassInArrayFromClass:(Class)c; 60 | /**** 同一个成员变量 - 父类和子类的行为可能不一致(key、keys、objectClassInArray) ****/ 61 | 62 | /** 63 | * 设置成员变量的值 64 | */ 65 | - (void)setValue:(id)value forObject:(id)object; 66 | /** 67 | * 得到成员变量的值 68 | */ 69 | - (id)valueForObject:(id)object; 70 | 71 | /** 72 | * 初始化 73 | */ 74 | + (instancetype)cachedPropertyWithProperty:(objc_property_t)property; 75 | 76 | @end 77 | -------------------------------------------------------------------------------- /MyOne/Pods/MJExtension/MJExtension/MJType.h: -------------------------------------------------------------------------------- 1 | // 2 | // MJType.h 3 | // MJExtension 4 | // 5 | // Created by mj on 14-1-15. 6 | // Copyright (c) 2014年 小码哥. All rights reserved. 7 | // 包装一种类型 8 | 9 | #import 10 | /** 11 | * 包装一种类型 12 | */ 13 | @interface MJType : NSObject 14 | /** 类型标识符 */ 15 | @property (nonatomic, copy) NSString *code; 16 | 17 | /** 是否为id类型 */ 18 | @property (nonatomic, readonly, getter=isIdType) BOOL idType; 19 | 20 | /** 是否为基本数字类型:int、float等 */ 21 | @property (nonatomic, readonly, getter=isNumberType) BOOL numberType; 22 | 23 | /** 是否为BOOL类型 */ 24 | @property (nonatomic, readonly, getter=isBoolType) BOOL boolType; 25 | 26 | /** 对象类型(如果是基本数据类型,此值为nil) */ 27 | @property (nonatomic, readonly) Class typeClass; 28 | 29 | /** 类型是否来自于Foundation框架,比如NSString、NSArray */ 30 | @property (nonatomic, readonly, getter = isFromFoundation) BOOL fromFoundation; 31 | /** 类型是否不支持KVC */ 32 | @property (nonatomic, readonly, getter = isKVCDisabled) BOOL KVCDisabled; 33 | 34 | /** 35 | * 获得缓存的类型对象 36 | */ 37 | + (instancetype)cachedTypeWithCode:(NSString *)code; 38 | @end -------------------------------------------------------------------------------- /MyOne/Pods/MJExtension/MJExtension/NSObject+MJCoding.h: -------------------------------------------------------------------------------- 1 | // 2 | // NSObject+MJCoding.h 3 | // MJExtension 4 | // 5 | // Created by mj on 14-1-15. 6 | // Copyright (c) 2014年 小码哥. All rights reserved. 7 | // 8 | 9 | #import 10 | /** 11 | * Codeing协议 12 | */ 13 | @protocol MJCoding 14 | @optional 15 | /** 16 | * 这个数组中的属性名才会进行归档 17 | */ 18 | + (NSArray *)allowedCodingPropertyNames; 19 | /** 20 | * 这个数组中的属性名将会被忽略:不进行归档 21 | */ 22 | + (NSArray *)ignoredCodingPropertyNames; 23 | @end 24 | 25 | @interface NSObject (MJCoding) 26 | /** 27 | * 解码(从文件中解析对象) 28 | */ 29 | - (void)decode:(NSCoder *)decoder; 30 | /** 31 | * 编码(将对象写入文件中) 32 | */ 33 | - (void)encode:(NSCoder *)encoder; 34 | @end 35 | 36 | /** 37 | 归档的实现 38 | */ 39 | #define MJCodingImplementation \ 40 | - (id)initWithCoder:(NSCoder *)decoder \ 41 | { \ 42 | if (self = [super init]) { \ 43 | [self decode:decoder]; \ 44 | } \ 45 | return self; \ 46 | } \ 47 | \ 48 | - (void)encodeWithCoder:(NSCoder *)encoder \ 49 | { \ 50 | [self encode:encoder]; \ 51 | } 52 | 53 | #define MJExtensionCodingImplementation MJCodingImplementation -------------------------------------------------------------------------------- /MyOne/Pods/MJExtension/MJExtension/NSString+MJExtension.h: -------------------------------------------------------------------------------- 1 | // 2 | // NSString+MJExtension.h 3 | // MJExtensionExample 4 | // 5 | // Created by MJ Lee on 15/6/7. 6 | // Copyright (c) 2015年 小码哥. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface NSString (MJExtension) 12 | /** 13 | * 驼峰转下划线(loveYou -> love_you) 14 | */ 15 | - (NSString *)underlineFromCamel; 16 | /** 17 | * 下划线转驼峰(love_you -> loveYou) 18 | */ 19 | - (NSString *)camelFromUnderline; 20 | /** 21 | * 首字母变大写 22 | */ 23 | - (NSString *)firstCharUpper; 24 | /** 25 | * 首字母变小写 26 | */ 27 | - (NSString *)firstCharLower; 28 | 29 | - (BOOL)isPureInt; 30 | @end 31 | -------------------------------------------------------------------------------- /MyOne/Pods/Masonry/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2011-2012 Masonry Team - https://github.com/Masonry 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy 4 | of this software and associated documentation files (the "Software"), to deal 5 | in the Software without restriction, including without limitation the rights 6 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 7 | copies of the Software, and to permit persons to whom the Software is 8 | furnished to do so, subject to the following conditions: 9 | 10 | The above copyright notice and this permission notice shall be included in 11 | all copies or substantial portions of the Software. 12 | 13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 16 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 17 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 18 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 19 | THE SOFTWARE. -------------------------------------------------------------------------------- /MyOne/Pods/Masonry/Masonry/MASCompositeConstraint.h: -------------------------------------------------------------------------------- 1 | // 2 | // MASCompositeConstraint.h 3 | // Masonry 4 | // 5 | // Created by Jonas Budelmann on 21/07/13. 6 | // Copyright (c) 2013 cloudling. All rights reserved. 7 | // 8 | 9 | #import "MASConstraint.h" 10 | #import "MASUtilities.h" 11 | 12 | /** 13 | * A group of MASConstraint objects 14 | */ 15 | @interface MASCompositeConstraint : MASConstraint 16 | 17 | /** 18 | * Creates a composite with a predefined array of children 19 | * 20 | * @param children child MASConstraints 21 | * 22 | * @return a composite constraint 23 | */ 24 | - (id)initWithChildren:(NSArray *)children; 25 | 26 | @end 27 | -------------------------------------------------------------------------------- /MyOne/Pods/Masonry/Masonry/MASLayoutConstraint.h: -------------------------------------------------------------------------------- 1 | // 2 | // MASLayoutConstraint.h 3 | // Masonry 4 | // 5 | // Created by Jonas Budelmann on 3/08/13. 6 | // Copyright (c) 2013 Jonas Budelmann. All rights reserved. 7 | // 8 | 9 | #import "MASUtilities.h" 10 | 11 | /** 12 | * When you are debugging or printing the constraints attached to a view this subclass 13 | * makes it easier to identify which constraints have been created via Masonry 14 | */ 15 | @interface MASLayoutConstraint : NSLayoutConstraint 16 | 17 | /** 18 | * a key to associate with this constraint 19 | */ 20 | @property (nonatomic, strong) id mas_key; 21 | 22 | @end 23 | -------------------------------------------------------------------------------- /MyOne/Pods/Masonry/Masonry/MASLayoutConstraint.m: -------------------------------------------------------------------------------- 1 | // 2 | // MASLayoutConstraint.m 3 | // Masonry 4 | // 5 | // Created by Jonas Budelmann on 3/08/13. 6 | // Copyright (c) 2013 Jonas Budelmann. All rights reserved. 7 | // 8 | 9 | #import "MASLayoutConstraint.h" 10 | 11 | @implementation MASLayoutConstraint 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /MyOne/Pods/Masonry/Masonry/MASViewAttribute.h: -------------------------------------------------------------------------------- 1 | // 2 | // MASAttribute.h 3 | // Masonry 4 | // 5 | // Created by Jonas Budelmann on 21/07/13. 6 | // Copyright (c) 2013 cloudling. All rights reserved. 7 | // 8 | 9 | #import "MASUtilities.h" 10 | 11 | /** 12 | * An immutable tuple which stores the view and the related NSLayoutAttribute. 13 | * Describes part of either the left or right hand side of a constraint equation 14 | */ 15 | @interface MASViewAttribute : NSObject 16 | 17 | /** 18 | * The view which the reciever relates to. Can be nil if item is not a view. 19 | */ 20 | @property (nonatomic, weak, readonly) MAS_VIEW *view; 21 | 22 | /** 23 | * The item which the reciever relates to. 24 | */ 25 | @property (nonatomic, weak, readonly) id item; 26 | 27 | /** 28 | * The attribute which the reciever relates to 29 | */ 30 | @property (nonatomic, assign, readonly) NSLayoutAttribute layoutAttribute; 31 | 32 | /** 33 | * Convenience initializer. 34 | */ 35 | - (id)initWithView:(MAS_VIEW *)view layoutAttribute:(NSLayoutAttribute)layoutAttribute; 36 | 37 | /** 38 | * The designated initializer. 39 | */ 40 | - (id)initWithView:(MAS_VIEW *)view item:(id)item layoutAttribute:(NSLayoutAttribute)layoutAttribute; 41 | 42 | /** 43 | * Determine whether the layoutAttribute is a size attribute 44 | * 45 | * @return YES if layoutAttribute is equal to NSLayoutAttributeWidth or NSLayoutAttributeHeight 46 | */ 47 | - (BOOL)isSizeAttribute; 48 | 49 | @end 50 | -------------------------------------------------------------------------------- /MyOne/Pods/Masonry/Masonry/MASViewAttribute.m: -------------------------------------------------------------------------------- 1 | // 2 | // MASAttribute.m 3 | // Masonry 4 | // 5 | // Created by Jonas Budelmann on 21/07/13. 6 | // Copyright (c) 2013 cloudling. All rights reserved. 7 | // 8 | 9 | #import "MASViewAttribute.h" 10 | 11 | @implementation MASViewAttribute 12 | 13 | - (id)initWithView:(MAS_VIEW *)view layoutAttribute:(NSLayoutAttribute)layoutAttribute { 14 | self = [self initWithView:view item:view layoutAttribute:layoutAttribute]; 15 | return self; 16 | } 17 | 18 | - (id)initWithView:(MAS_VIEW *)view item:(id)item layoutAttribute:(NSLayoutAttribute)layoutAttribute { 19 | self = [super init]; 20 | if (!self) return nil; 21 | 22 | _view = view; 23 | _item = item; 24 | _layoutAttribute = layoutAttribute; 25 | 26 | return self; 27 | } 28 | 29 | - (BOOL)isSizeAttribute { 30 | return self.layoutAttribute == NSLayoutAttributeWidth 31 | || self.layoutAttribute == NSLayoutAttributeHeight; 32 | } 33 | 34 | - (BOOL)isEqual:(MASViewAttribute *)viewAttribute { 35 | if ([viewAttribute isKindOfClass:self.class]) { 36 | return self.view == viewAttribute.view 37 | && self.layoutAttribute == viewAttribute.layoutAttribute; 38 | } 39 | return [super isEqual:viewAttribute]; 40 | } 41 | 42 | - (NSUInteger)hash { 43 | return MAS_NSUINTROTATE([self.view hash], MAS_NSUINT_BIT / 2) ^ self.layoutAttribute; 44 | } 45 | 46 | @end 47 | -------------------------------------------------------------------------------- /MyOne/Pods/Masonry/Masonry/MASViewConstraint.h: -------------------------------------------------------------------------------- 1 | // 2 | // MASConstraint.h 3 | // Masonry 4 | // 5 | // Created by Jonas Budelmann on 20/07/13. 6 | // Copyright (c) 2013 cloudling. All rights reserved. 7 | // 8 | 9 | #import "MASViewAttribute.h" 10 | #import "MASConstraint.h" 11 | #import "MASLayoutConstraint.h" 12 | #import "MASUtilities.h" 13 | 14 | /** 15 | * A single constraint. 16 | * Contains the attributes neccessary for creating a NSLayoutConstraint and adding it to the appropriate view 17 | */ 18 | @interface MASViewConstraint : MASConstraint 19 | 20 | /** 21 | * First item/view and first attribute of the NSLayoutConstraint 22 | */ 23 | @property (nonatomic, strong, readonly) MASViewAttribute *firstViewAttribute; 24 | 25 | /** 26 | * Second item/view and second attribute of the NSLayoutConstraint 27 | */ 28 | @property (nonatomic, strong, readonly) MASViewAttribute *secondViewAttribute; 29 | 30 | /** 31 | * initialises the MASViewConstraint with the first part of the equation 32 | * 33 | * @param firstViewAttribute view.mas_left, view.mas_width etc. 34 | * 35 | * @return a new view constraint 36 | */ 37 | - (id)initWithFirstViewAttribute:(MASViewAttribute *)firstViewAttribute; 38 | 39 | /** 40 | * Returns all MASViewConstraints installed with this view as a first item. 41 | * 42 | * @param view A view to retrieve constraints for. 43 | * 44 | * @return An array of MASViewConstraints. 45 | */ 46 | + (NSArray *)installedConstraintsForView:(MAS_VIEW *)view; 47 | 48 | @end 49 | -------------------------------------------------------------------------------- /MyOne/Pods/Masonry/Masonry/Masonry.h: -------------------------------------------------------------------------------- 1 | // 2 | // Masonry.h 3 | // Masonry 4 | // 5 | // Created by Jonas Budelmann on 20/07/13. 6 | // Copyright (c) 2013 cloudling. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | //! Project version number for Masonry. 12 | FOUNDATION_EXPORT double MasonryVersionNumber; 13 | 14 | //! Project version string for Masonry. 15 | FOUNDATION_EXPORT const unsigned char MasonryVersionString[]; 16 | 17 | #import "MASUtilities.h" 18 | #import "View+MASAdditions.h" 19 | #import "View+MASShorthandAdditions.h" 20 | #import "ViewController+MASAdditions.h" 21 | #import "NSArray+MASAdditions.h" 22 | #import "NSArray+MASShorthandAdditions.h" 23 | #import "MASConstraint.h" 24 | #import "MASCompositeConstraint.h" 25 | #import "MASViewAttribute.h" 26 | #import "MASViewConstraint.h" 27 | #import "MASConstraintMaker.h" 28 | #import "MASLayoutConstraint.h" 29 | #import "NSLayoutConstraint+MASDebugAdditions.h" 30 | -------------------------------------------------------------------------------- /MyOne/Pods/Masonry/Masonry/NSArray+MASAdditions.m: -------------------------------------------------------------------------------- 1 | // 2 | // NSArray+MASAdditions.m 3 | // 4 | // 5 | // Created by Daniel Hammond on 11/26/13. 6 | // 7 | // 8 | 9 | #import "NSArray+MASAdditions.h" 10 | #import "View+MASAdditions.h" 11 | 12 | @implementation NSArray (MASAdditions) 13 | 14 | - (NSArray *)mas_makeConstraints:(void(^)(MASConstraintMaker *make))block { 15 | NSMutableArray *constraints = [NSMutableArray array]; 16 | for (MAS_VIEW *view in self) { 17 | NSAssert([view isKindOfClass:[MAS_VIEW class]], @"All objects in the array must be views"); 18 | [constraints addObjectsFromArray:[view mas_makeConstraints:block]]; 19 | } 20 | return constraints; 21 | } 22 | 23 | - (NSArray *)mas_updateConstraints:(void(^)(MASConstraintMaker *make))block { 24 | NSMutableArray *constraints = [NSMutableArray array]; 25 | for (MAS_VIEW *view in self) { 26 | NSAssert([view isKindOfClass:[MAS_VIEW class]], @"All objects in the array must be views"); 27 | [constraints addObjectsFromArray:[view mas_updateConstraints:block]]; 28 | } 29 | return constraints; 30 | } 31 | 32 | - (NSArray *)mas_remakeConstraints:(void(^)(MASConstraintMaker *make))block { 33 | NSMutableArray *constraints = [NSMutableArray array]; 34 | for (MAS_VIEW *view in self) { 35 | NSAssert([view isKindOfClass:[MAS_VIEW class]], @"All objects in the array must be views"); 36 | [constraints addObjectsFromArray:[view mas_remakeConstraints:block]]; 37 | } 38 | return constraints; 39 | } 40 | 41 | @end 42 | -------------------------------------------------------------------------------- /MyOne/Pods/Masonry/Masonry/NSArray+MASShorthandAdditions.h: -------------------------------------------------------------------------------- 1 | // 2 | // NSArray+MASShorthandAdditions.h 3 | // Masonry 4 | // 5 | // Created by Jonas Budelmann on 22/07/13. 6 | // Copyright (c) 2013 Jonas Budelmann. All rights reserved. 7 | // 8 | 9 | #import "NSArray+MASAdditions.h" 10 | 11 | #ifdef MAS_SHORTHAND 12 | 13 | /** 14 | * Shorthand array additions without the 'mas_' prefixes, 15 | * only enabled if MAS_SHORTHAND is defined 16 | */ 17 | @interface NSArray (MASShorthandAdditions) 18 | 19 | - (NSArray *)makeConstraints:(void(^)(MASConstraintMaker *make))block; 20 | - (NSArray *)updateConstraints:(void(^)(MASConstraintMaker *make))block; 21 | - (NSArray *)remakeConstraints:(void(^)(MASConstraintMaker *make))block; 22 | 23 | @end 24 | 25 | @implementation NSArray (MASShorthandAdditions) 26 | 27 | - (NSArray *)makeConstraints:(void(^)(MASConstraintMaker *))block { 28 | return [self mas_makeConstraints:block]; 29 | } 30 | 31 | - (NSArray *)updateConstraints:(void(^)(MASConstraintMaker *))block { 32 | return [self mas_updateConstraints:block]; 33 | } 34 | 35 | - (NSArray *)remakeConstraints:(void(^)(MASConstraintMaker *))block { 36 | return [self mas_remakeConstraints:block]; 37 | } 38 | 39 | @end 40 | 41 | #endif 42 | -------------------------------------------------------------------------------- /MyOne/Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.h: -------------------------------------------------------------------------------- 1 | // 2 | // NSLayoutConstraint+MASDebugAdditions.h 3 | // Masonry 4 | // 5 | // Created by Jonas Budelmann on 3/08/13. 6 | // Copyright (c) 2013 Jonas Budelmann. All rights reserved. 7 | // 8 | 9 | #import "MASUtilities.h" 10 | 11 | /** 12 | * makes debug and log output of NSLayoutConstraints more readable 13 | */ 14 | @interface NSLayoutConstraint (MASDebugAdditions) 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /MyOne/Pods/Masonry/Masonry/ViewController+MASAdditions.h: -------------------------------------------------------------------------------- 1 | // 2 | // UIViewController+MASAdditions.h 3 | // Masonry 4 | // 5 | // Created by Craig Siemens on 2015-06-23. 6 | // 7 | // 8 | 9 | #import "MASUtilities.h" 10 | #import "MASConstraintMaker.h" 11 | #import "MASViewAttribute.h" 12 | 13 | #ifdef MAS_VIEW_CONTROLLER 14 | 15 | @interface MAS_VIEW_CONTROLLER (MASAdditions) 16 | 17 | /** 18 | * following properties return a new MASViewAttribute with appropriate UILa 8youtGuide and NSLayoutAttribute 19 | */ 20 | @property (nonatomic, strong, readonly) MASViewAttribute *mas_topLayoutGuide; 21 | @property (nonatomic, strong, readonly) MASViewAttribute *mas_bottomLayoutGuide; 22 | 23 | @end 24 | 25 | #endif 26 | -------------------------------------------------------------------------------- /MyOne/Pods/Masonry/Masonry/ViewController+MASAdditions.m: -------------------------------------------------------------------------------- 1 | // 2 | // UIViewController+MASAdditions.m 3 | // Masonry 4 | // 5 | // Created by Craig Siemens on 2015-06-23. 6 | // 7 | // 8 | 9 | #import "ViewController+MASAdditions.h" 10 | 11 | #ifdef MAS_VIEW_CONTROLLER 12 | 13 | @implementation MAS_VIEW_CONTROLLER (MASAdditions) 14 | 15 | - (MASViewAttribute *)mas_topLayoutGuide { 16 | return [[MASViewAttribute alloc] initWithView:self.view item:self.topLayoutGuide layoutAttribute:NSLayoutAttributeBottom]; 17 | } 18 | 19 | - (MASViewAttribute *)mas_bottomLayoutGuide { 20 | return [[MASViewAttribute alloc] initWithView:self.view item:self.bottomLayoutGuide layoutAttribute:NSLayoutAttributeTop]; 21 | } 22 | 23 | @end 24 | 25 | #endif 26 | -------------------------------------------------------------------------------- /MyOne/Pods/SDWebImage/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2009 Olivier Poitrey 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy 4 | of this software and associated documentation files (the "Software"), to deal 5 | in the Software without restriction, including without limitation the rights 6 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 7 | copies of the Software, and to permit persons to whom the Software is furnished 8 | to do so, subject to the following conditions: 9 | 10 | The above copyright notice and this permission notice shall be included in all 11 | copies or substantial portions of the Software. 12 | 13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 16 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 17 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 18 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 19 | THE SOFTWARE. 20 | 21 | -------------------------------------------------------------------------------- /MyOne/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 | -------------------------------------------------------------------------------- /MyOne/Pods/SDWebImage/SDWebImage/NSData+ImageContentType.m: -------------------------------------------------------------------------------- 1 | // 2 | // Created by Fabrice Aneche on 06/01/14. 3 | // Copyright (c) 2014 Dailymotion. All rights reserved. 4 | // 5 | 6 | #import "NSData+ImageContentType.h" 7 | 8 | 9 | @implementation NSData (ImageContentType) 10 | 11 | + (NSString *)sd_contentTypeForImageData:(NSData *)data { 12 | uint8_t c; 13 | [data getBytes:&c length:1]; 14 | switch (c) { 15 | case 0xFF: 16 | return @"image/jpeg"; 17 | case 0x89: 18 | return @"image/png"; 19 | case 0x47: 20 | return @"image/gif"; 21 | case 0x49: 22 | case 0x4D: 23 | return @"image/tiff"; 24 | case 0x52: 25 | // R as RIFF for WEBP 26 | if ([data length] < 12) { 27 | return nil; 28 | } 29 | 30 | NSString *testString = [[NSString alloc] initWithData:[data subdataWithRange:NSMakeRange(0, 12)] encoding:NSASCIIStringEncoding]; 31 | if ([testString hasPrefix:@"RIFF"] && [testString hasSuffix:@"WEBP"]) { 32 | return @"image/webp"; 33 | } 34 | 35 | return nil; 36 | } 37 | return nil; 38 | } 39 | 40 | @end 41 | 42 | 43 | @implementation NSData (ImageContentTypeDeprecated) 44 | 45 | + (NSString *)contentTypeForImageData:(NSData *)data { 46 | return [self sd_contentTypeForImageData:data]; 47 | } 48 | 49 | @end 50 | -------------------------------------------------------------------------------- /MyOne/Pods/SDWebImage/SDWebImage/SDWebImageCompat.m: -------------------------------------------------------------------------------- 1 | // 2 | // SDWebImageCompat.m 3 | // SDWebImage 4 | // 5 | // Created by Olivier Poitrey on 11/12/12. 6 | // Copyright (c) 2012 Dailymotion. All rights reserved. 7 | // 8 | 9 | #import "SDWebImageCompat.h" 10 | 11 | #if !__has_feature(objc_arc) 12 | #error SDWebImage is ARC only. Either turn on ARC for the project or use -fobjc-arc flag 13 | #endif 14 | 15 | inline UIImage *SDScaledImageForKey(NSString *key, UIImage *image) { 16 | if (!image) { 17 | return nil; 18 | } 19 | 20 | if ([image.images count] > 0) { 21 | NSMutableArray *scaledImages = [NSMutableArray array]; 22 | 23 | for (UIImage *tempImage in image.images) { 24 | [scaledImages addObject:SDScaledImageForKey(key, tempImage)]; 25 | } 26 | 27 | return [UIImage animatedImageWithImages:scaledImages duration:image.duration]; 28 | } 29 | else { 30 | if ([[UIScreen mainScreen] respondsToSelector:@selector(scale)]) { 31 | CGFloat scale = 1.0; 32 | if (key.length >= 8) { 33 | NSRange range = [key rangeOfString:@"@2x."]; 34 | if (range.location != NSNotFound) { 35 | scale = 2.0; 36 | } 37 | 38 | range = [key rangeOfString:@"@3x."]; 39 | if (range.location != NSNotFound) { 40 | scale = 3.0; 41 | } 42 | } 43 | 44 | UIImage *scaledImage = [[UIImage alloc] initWithCGImage:image.CGImage scale:scale orientation:image.imageOrientation]; 45 | image = scaledImage; 46 | } 47 | return image; 48 | } 49 | } 50 | 51 | NSString *const SDWebImageErrorDomain = @"SDWebImageErrorDomain"; 52 | -------------------------------------------------------------------------------- /MyOne/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 | -------------------------------------------------------------------------------- /MyOne/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 | -------------------------------------------------------------------------------- /MyOne/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 | -------------------------------------------------------------------------------- /MyOne/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 | -------------------------------------------------------------------------------- /MyOne/Pods/SDWebImage/SDWebImage/UIView+WebCacheOperation.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 | #import "SDWebImageManager.h" 11 | 12 | @interface UIView (WebCacheOperation) 13 | 14 | /** 15 | * Set the image load operation (storage in a UIView based dictionary) 16 | * 17 | * @param operation the operation 18 | * @param key key for storing the operation 19 | */ 20 | - (void)sd_setImageLoadOperation:(id)operation forKey:(NSString *)key; 21 | 22 | /** 23 | * Cancel all operations for the current UIView and key 24 | * 25 | * @param key key for identifying the operations 26 | */ 27 | - (void)sd_cancelImageLoadOperationWithKey:(NSString *)key; 28 | 29 | /** 30 | * Just remove the operations corresponding to the current UIView and key without cancelling them 31 | * 32 | * @param key key for identifying the operations 33 | */ 34 | - (void)sd_removeImageLoadOperationWithKey:(NSString *)key; 35 | 36 | @end 37 | -------------------------------------------------------------------------------- /MyOne/Pods/Target Support Files/Pods-AFNetworking/Pods-AFNetworking-Private.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods-AFNetworking.xcconfig" 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/AFNetworking" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/AFNetworking" "${PODS_ROOT}/Headers/Public/DKNightVersion" "${PODS_ROOT}/Headers/Public/MBProgressHUD" "${PODS_ROOT}/Headers/Public/MJExtension" "${PODS_ROOT}/Headers/Public/Masonry" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/iCarousel" 4 | OTHER_LDFLAGS = ${PODS_AFNETWORKING_OTHER_LDFLAGS} -ObjC 5 | PODS_ROOT = ${SRCROOT} 6 | SKIP_INSTALL = YES -------------------------------------------------------------------------------- /MyOne/Pods/Target Support Files/Pods-AFNetworking/Pods-AFNetworking-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_AFNetworking : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_AFNetworking 5 | @end 6 | -------------------------------------------------------------------------------- /MyOne/Pods/Target Support Files/Pods-AFNetworking/Pods-AFNetworking-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | #import "Pods-environment.h" 6 | -------------------------------------------------------------------------------- /MyOne/Pods/Target Support Files/Pods-AFNetworking/Pods-AFNetworking.xcconfig: -------------------------------------------------------------------------------- 1 | PODS_AFNETWORKING_OTHER_LDFLAGS = -framework "CoreGraphics" -framework "MobileCoreServices" -framework "Security" -framework "SystemConfiguration" -------------------------------------------------------------------------------- /MyOne/Pods/Target Support Files/Pods-DKNightVersion/Pods-DKNightVersion-Private.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods-DKNightVersion.xcconfig" 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/DKNightVersion" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/AFNetworking" "${PODS_ROOT}/Headers/Public/DKNightVersion" "${PODS_ROOT}/Headers/Public/MBProgressHUD" "${PODS_ROOT}/Headers/Public/MJExtension" "${PODS_ROOT}/Headers/Public/Masonry" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/iCarousel" 4 | OTHER_LDFLAGS = -ObjC 5 | PODS_ROOT = ${SRCROOT} 6 | SKIP_INSTALL = YES -------------------------------------------------------------------------------- /MyOne/Pods/Target Support Files/Pods-DKNightVersion/Pods-DKNightVersion-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_DKNightVersion : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_DKNightVersion 5 | @end 6 | -------------------------------------------------------------------------------- /MyOne/Pods/Target Support Files/Pods-DKNightVersion/Pods-DKNightVersion-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | #import "Pods-environment.h" 6 | -------------------------------------------------------------------------------- /MyOne/Pods/Target Support Files/Pods-DKNightVersion/Pods-DKNightVersion.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilbn/MyOne-iOS/418d3ae9cd1ad15bf9301627a50ff75890d844de/MyOne/Pods/Target Support Files/Pods-DKNightVersion/Pods-DKNightVersion.xcconfig -------------------------------------------------------------------------------- /MyOne/Pods/Target Support Files/Pods-MBProgressHUD/Pods-MBProgressHUD-Private.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods-MBProgressHUD.xcconfig" 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/MBProgressHUD" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/AFNetworking" "${PODS_ROOT}/Headers/Public/DKNightVersion" "${PODS_ROOT}/Headers/Public/MBProgressHUD" "${PODS_ROOT}/Headers/Public/MJExtension" "${PODS_ROOT}/Headers/Public/Masonry" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/iCarousel" 4 | OTHER_LDFLAGS = ${PODS_MBPROGRESSHUD_OTHER_LDFLAGS} -ObjC 5 | PODS_ROOT = ${SRCROOT} 6 | SKIP_INSTALL = YES -------------------------------------------------------------------------------- /MyOne/Pods/Target Support Files/Pods-MBProgressHUD/Pods-MBProgressHUD-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_MBProgressHUD : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_MBProgressHUD 5 | @end 6 | -------------------------------------------------------------------------------- /MyOne/Pods/Target Support Files/Pods-MBProgressHUD/Pods-MBProgressHUD-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | #import "Pods-environment.h" 6 | -------------------------------------------------------------------------------- /MyOne/Pods/Target Support Files/Pods-MBProgressHUD/Pods-MBProgressHUD.xcconfig: -------------------------------------------------------------------------------- 1 | PODS_MBPROGRESSHUD_OTHER_LDFLAGS = -framework "CoreGraphics" -------------------------------------------------------------------------------- /MyOne/Pods/Target Support Files/Pods-MJExtension/Pods-MJExtension-Private.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods-MJExtension.xcconfig" 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/MJExtension" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/AFNetworking" "${PODS_ROOT}/Headers/Public/DKNightVersion" "${PODS_ROOT}/Headers/Public/MBProgressHUD" "${PODS_ROOT}/Headers/Public/MJExtension" "${PODS_ROOT}/Headers/Public/Masonry" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/iCarousel" 4 | OTHER_LDFLAGS = -ObjC 5 | PODS_ROOT = ${SRCROOT} 6 | SKIP_INSTALL = YES -------------------------------------------------------------------------------- /MyOne/Pods/Target Support Files/Pods-MJExtension/Pods-MJExtension-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_MJExtension : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_MJExtension 5 | @end 6 | -------------------------------------------------------------------------------- /MyOne/Pods/Target Support Files/Pods-MJExtension/Pods-MJExtension-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | #import "Pods-environment.h" 6 | -------------------------------------------------------------------------------- /MyOne/Pods/Target Support Files/Pods-MJExtension/Pods-MJExtension.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilbn/MyOne-iOS/418d3ae9cd1ad15bf9301627a50ff75890d844de/MyOne/Pods/Target Support Files/Pods-MJExtension/Pods-MJExtension.xcconfig -------------------------------------------------------------------------------- /MyOne/Pods/Target Support Files/Pods-Masonry/Pods-Masonry-Private.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods-Masonry.xcconfig" 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/Masonry" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/AFNetworking" "${PODS_ROOT}/Headers/Public/DKNightVersion" "${PODS_ROOT}/Headers/Public/MBProgressHUD" "${PODS_ROOT}/Headers/Public/MJExtension" "${PODS_ROOT}/Headers/Public/Masonry" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/iCarousel" 4 | OTHER_LDFLAGS = ${PODS_MASONRY_OTHER_LDFLAGS} -ObjC 5 | PODS_ROOT = ${SRCROOT} 6 | SKIP_INSTALL = YES -------------------------------------------------------------------------------- /MyOne/Pods/Target Support Files/Pods-Masonry/Pods-Masonry-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_Masonry : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_Masonry 5 | @end 6 | -------------------------------------------------------------------------------- /MyOne/Pods/Target Support Files/Pods-Masonry/Pods-Masonry-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | #import "Pods-environment.h" 6 | -------------------------------------------------------------------------------- /MyOne/Pods/Target Support Files/Pods-Masonry/Pods-Masonry.xcconfig: -------------------------------------------------------------------------------- 1 | PODS_MASONRY_OTHER_LDFLAGS = -framework "Foundation" -framework "UIKit" -------------------------------------------------------------------------------- /MyOne/Pods/Target Support Files/Pods-SDWebImage/Pods-SDWebImage-Private.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods-SDWebImage.xcconfig" 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/SDWebImage" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/AFNetworking" "${PODS_ROOT}/Headers/Public/DKNightVersion" "${PODS_ROOT}/Headers/Public/MBProgressHUD" "${PODS_ROOT}/Headers/Public/MJExtension" "${PODS_ROOT}/Headers/Public/Masonry" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/iCarousel" 4 | OTHER_LDFLAGS = ${PODS_SDWEBIMAGE_OTHER_LDFLAGS} -ObjC 5 | PODS_ROOT = ${SRCROOT} 6 | SKIP_INSTALL = YES -------------------------------------------------------------------------------- /MyOne/Pods/Target Support Files/Pods-SDWebImage/Pods-SDWebImage-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_SDWebImage : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_SDWebImage 5 | @end 6 | -------------------------------------------------------------------------------- /MyOne/Pods/Target Support Files/Pods-SDWebImage/Pods-SDWebImage-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | #import "Pods-environment.h" 6 | -------------------------------------------------------------------------------- /MyOne/Pods/Target Support Files/Pods-SDWebImage/Pods-SDWebImage.xcconfig: -------------------------------------------------------------------------------- 1 | PODS_SDWEBIMAGE_OTHER_LDFLAGS = -framework "ImageIO" -------------------------------------------------------------------------------- /MyOne/Pods/Target Support Files/Pods-iCarousel/Pods-iCarousel-Private.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods-iCarousel.xcconfig" 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/iCarousel" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/AFNetworking" "${PODS_ROOT}/Headers/Public/DKNightVersion" "${PODS_ROOT}/Headers/Public/MBProgressHUD" "${PODS_ROOT}/Headers/Public/MJExtension" "${PODS_ROOT}/Headers/Public/Masonry" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/iCarousel" 4 | OTHER_LDFLAGS = ${PODS_ICAROUSEL_OTHER_LDFLAGS} -ObjC 5 | PODS_ROOT = ${SRCROOT} 6 | SKIP_INSTALL = YES -------------------------------------------------------------------------------- /MyOne/Pods/Target Support Files/Pods-iCarousel/Pods-iCarousel-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_iCarousel : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_iCarousel 5 | @end 6 | -------------------------------------------------------------------------------- /MyOne/Pods/Target Support Files/Pods-iCarousel/Pods-iCarousel-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | #import "Pods-environment.h" 6 | -------------------------------------------------------------------------------- /MyOne/Pods/Target Support Files/Pods-iCarousel/Pods-iCarousel.xcconfig: -------------------------------------------------------------------------------- 1 | PODS_ICAROUSEL_OTHER_LDFLAGS = -framework "QuartzCore" -------------------------------------------------------------------------------- /MyOne/Pods/Target Support Files/Pods/Pods-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods : NSObject 3 | @end 4 | @implementation PodsDummy_Pods 5 | @end 6 | -------------------------------------------------------------------------------- /MyOne/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/AFNetworking" "${PODS_ROOT}/Headers/Public/DKNightVersion" "${PODS_ROOT}/Headers/Public/MBProgressHUD" "${PODS_ROOT}/Headers/Public/MJExtension" "${PODS_ROOT}/Headers/Public/Masonry" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/iCarousel" 3 | OTHER_CFLAGS = $(inherited) -isystem "${PODS_ROOT}/Headers/Public" -isystem "${PODS_ROOT}/Headers/Public/AFNetworking" -isystem "${PODS_ROOT}/Headers/Public/DKNightVersion" -isystem "${PODS_ROOT}/Headers/Public/MBProgressHUD" -isystem "${PODS_ROOT}/Headers/Public/MJExtension" -isystem "${PODS_ROOT}/Headers/Public/Masonry" -isystem "${PODS_ROOT}/Headers/Public/SDWebImage" -isystem "${PODS_ROOT}/Headers/Public/iCarousel" 4 | OTHER_LDFLAGS = $(inherited) -ObjC -l"Pods-AFNetworking" -l"Pods-DKNightVersion" -l"Pods-MBProgressHUD" -l"Pods-MJExtension" -l"Pods-Masonry" -l"Pods-SDWebImage" -l"Pods-iCarousel" -framework "CoreGraphics" -framework "Foundation" -framework "ImageIO" -framework "MobileCoreServices" -framework "QuartzCore" -framework "Security" -framework "SystemConfiguration" -framework "UIKit" 5 | OTHER_LIBTOOLFLAGS = $(OTHER_LDFLAGS) 6 | PODS_ROOT = ${SRCROOT}/Pods -------------------------------------------------------------------------------- /MyOne/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/AFNetworking" "${PODS_ROOT}/Headers/Public/DKNightVersion" "${PODS_ROOT}/Headers/Public/MBProgressHUD" "${PODS_ROOT}/Headers/Public/MJExtension" "${PODS_ROOT}/Headers/Public/Masonry" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/iCarousel" 3 | OTHER_CFLAGS = $(inherited) -isystem "${PODS_ROOT}/Headers/Public" -isystem "${PODS_ROOT}/Headers/Public/AFNetworking" -isystem "${PODS_ROOT}/Headers/Public/DKNightVersion" -isystem "${PODS_ROOT}/Headers/Public/MBProgressHUD" -isystem "${PODS_ROOT}/Headers/Public/MJExtension" -isystem "${PODS_ROOT}/Headers/Public/Masonry" -isystem "${PODS_ROOT}/Headers/Public/SDWebImage" -isystem "${PODS_ROOT}/Headers/Public/iCarousel" 4 | OTHER_LDFLAGS = $(inherited) -ObjC -l"Pods-AFNetworking" -l"Pods-DKNightVersion" -l"Pods-MBProgressHUD" -l"Pods-MJExtension" -l"Pods-Masonry" -l"Pods-SDWebImage" -l"Pods-iCarousel" -framework "CoreGraphics" -framework "Foundation" -framework "ImageIO" -framework "MobileCoreServices" -framework "QuartzCore" -framework "Security" -framework "SystemConfiguration" -framework "UIKit" 5 | OTHER_LIBTOOLFLAGS = $(OTHER_LDFLAGS) 6 | PODS_ROOT = ${SRCROOT}/Pods -------------------------------------------------------------------------------- /MyOne/Pods/iCarousel/LICENCE.md: -------------------------------------------------------------------------------- 1 | iCarousel 2 | 3 | Version 1.8.1, October 13th, 2014 4 | 5 | Copyright (C) 2011 Charcoal Design 6 | 7 | This software is provided 'as-is', without any express or implied 8 | warranty. In no event will the authors be held liable for any damages 9 | arising from the use of this software. 10 | 11 | Permission is granted to anyone to use this software for any purpose, 12 | including commercial applications, and to alter it and redistribute it 13 | freely, subject to the following restrictions: 14 | 15 | 1. The origin of this software must not be misrepresented; you must not 16 | claim that you wrote the original software. If you use this software 17 | in a product, an acknowledgment in the product documentation would be 18 | appreciated but is not required. 19 | 20 | 2. Altered source versions must be plainly marked as such, and must not be 21 | misrepresented as being the original software. 22 | 23 | 3. This notice may not be removed or altered from any source distribution. -------------------------------------------------------------------------------- /Screenshot/Home.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilbn/MyOne-iOS/418d3ae9cd1ad15bf9301627a50ff75890d844de/Screenshot/Home.gif -------------------------------------------------------------------------------- /Screenshot/Images/About.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilbn/MyOne-iOS/418d3ae9cd1ad15bf9301627a50ff75890d844de/Screenshot/Images/About.png -------------------------------------------------------------------------------- /Screenshot/Images/Home_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilbn/MyOne-iOS/418d3ae9cd1ad15bf9301627a50ff75890d844de/Screenshot/Images/Home_0.png -------------------------------------------------------------------------------- /Screenshot/Images/Home_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilbn/MyOne-iOS/418d3ae9cd1ad15bf9301627a50ff75890d844de/Screenshot/Images/Home_1.png -------------------------------------------------------------------------------- /Screenshot/Images/Personal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilbn/MyOne-iOS/418d3ae9cd1ad15bf9301627a50ff75890d844de/Screenshot/Images/Personal.png -------------------------------------------------------------------------------- /Screenshot/Images/Question_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilbn/MyOne-iOS/418d3ae9cd1ad15bf9301627a50ff75890d844de/Screenshot/Images/Question_0.png -------------------------------------------------------------------------------- /Screenshot/Images/Question_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilbn/MyOne-iOS/418d3ae9cd1ad15bf9301627a50ff75890d844de/Screenshot/Images/Question_1.png -------------------------------------------------------------------------------- /Screenshot/Images/Reading_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilbn/MyOne-iOS/418d3ae9cd1ad15bf9301627a50ff75890d844de/Screenshot/Images/Reading_0.png -------------------------------------------------------------------------------- /Screenshot/Images/Reading_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilbn/MyOne-iOS/418d3ae9cd1ad15bf9301627a50ff75890d844de/Screenshot/Images/Reading_1.png -------------------------------------------------------------------------------- /Screenshot/Images/Settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilbn/MyOne-iOS/418d3ae9cd1ad15bf9301627a50ff75890d844de/Screenshot/Images/Settings.png -------------------------------------------------------------------------------- /Screenshot/Images/Thing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilbn/MyOne-iOS/418d3ae9cd1ad15bf9301627a50ff75890d844de/Screenshot/Images/Thing.png -------------------------------------------------------------------------------- /Screenshot/NightMode/Night_Mode_Home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilbn/MyOne-iOS/418d3ae9cd1ad15bf9301627a50ff75890d844de/Screenshot/NightMode/Night_Mode_Home.png -------------------------------------------------------------------------------- /Screenshot/NightMode/Night_Mode_Personal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilbn/MyOne-iOS/418d3ae9cd1ad15bf9301627a50ff75890d844de/Screenshot/NightMode/Night_Mode_Personal.png -------------------------------------------------------------------------------- /Screenshot/NightMode/Night_Mode_Question.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilbn/MyOne-iOS/418d3ae9cd1ad15bf9301627a50ff75890d844de/Screenshot/NightMode/Night_Mode_Question.png -------------------------------------------------------------------------------- /Screenshot/NightMode/Night_Mode_Reading_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilbn/MyOne-iOS/418d3ae9cd1ad15bf9301627a50ff75890d844de/Screenshot/NightMode/Night_Mode_Reading_0.png -------------------------------------------------------------------------------- /Screenshot/NightMode/Night_Mode_Reading_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilbn/MyOne-iOS/418d3ae9cd1ad15bf9301627a50ff75890d844de/Screenshot/NightMode/Night_Mode_Reading_1.png -------------------------------------------------------------------------------- /Screenshot/NightMode/Night_Mode_Settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilbn/MyOne-iOS/418d3ae9cd1ad15bf9301627a50ff75890d844de/Screenshot/NightMode/Night_Mode_Settings.png -------------------------------------------------------------------------------- /Screenshot/NightMode/Night_Mode_Thing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilbn/MyOne-iOS/418d3ae9cd1ad15bf9301627a50ff75890d844de/Screenshot/NightMode/Night_Mode_Thing.png -------------------------------------------------------------------------------- /Screenshot/Personal.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilbn/MyOne-iOS/418d3ae9cd1ad15bf9301627a50ff75890d844de/Screenshot/Personal.gif -------------------------------------------------------------------------------- /Screenshot/Question.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilbn/MyOne-iOS/418d3ae9cd1ad15bf9301627a50ff75890d844de/Screenshot/Question.gif -------------------------------------------------------------------------------- /Screenshot/Reading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilbn/MyOne-iOS/418d3ae9cd1ad15bf9301627a50ff75890d844de/Screenshot/Reading.gif -------------------------------------------------------------------------------- /Screenshot/Thing.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilbn/MyOne-iOS/418d3ae9cd1ad15bf9301627a50ff75890d844de/Screenshot/Thing.gif --------------------------------------------------------------------------------