├── .DS_Store ├── FunnyProject.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── jinkehan.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ ├── Zinkham.xcuserdatad │ └── xcschemes │ │ ├── FunnyProject.xcscheme │ │ └── xcschememanagement.plist │ ├── jinkehan.xcuserdatad │ └── xcschemes │ │ ├── FunnyProject.xcscheme │ │ └── xcschememanagement.plist │ └── wenxiaopei.xcuserdatad │ └── xcschemes │ ├── FunnyProject.xcscheme │ └── xcschememanagement.plist ├── FunnyProject.xcworkspace ├── contents.xcworkspacedata ├── xcshareddata │ └── IDEWorkspaceChecks.plist └── xcuserdata │ ├── Zinkham.xcuserdatad │ ├── UserInterfaceState.xcuserstate │ └── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ ├── jinkehan.xcuserdatad │ ├── UserInterfaceState.xcuserstate │ └── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ └── wenxiaopei.xcuserdatad │ └── UserInterfaceState.xcuserstate ├── FunnyProject ├── .DS_Store ├── AFNetWork │ ├── AFNetworkClient.h │ ├── AFNetworkClient.m │ └── Urls.h ├── AppDelegate.h ├── AppDelegate.m ├── AppStoreManager.h ├── AppStoreManager.m ├── Assets.xcassets │ ├── .DS_Store │ └── Contents.json ├── Base.lproj │ └── .DS_Store ├── Category │ ├── .DS_Store │ ├── CoreData │ │ ├── NSFetchRequest │ │ │ ├── NSFetchRequest+Extensions.h │ │ │ └── NSFetchRequest+Extensions.m │ │ ├── NSManagedObject │ │ │ ├── NSManagedObject+DictionaryExport.h │ │ │ ├── NSManagedObject+DictionaryExport.m │ │ │ ├── NSManagedObject+Extensions.h │ │ │ └── NSManagedObject+Extensions.m │ │ ├── NSManagedObjectContext │ │ │ ├── NSManagedObjectContext+Extensions.h │ │ │ ├── NSManagedObjectContext+Extensions.m │ │ │ ├── NSManagedObjectContext+FetchRequestsConstructors.h │ │ │ ├── NSManagedObjectContext+FetchRequestsConstructors.m │ │ │ ├── NSManagedObjectContext+Fetching.h │ │ │ ├── NSManagedObjectContext+Fetching.m │ │ │ ├── NSManagedObjectContext+ObjectClear.h │ │ │ └── NSManagedObjectContext+ObjectClear.m │ │ └── NSPersistentStoreCoordinator │ │ │ ├── NSPersistentStoreCoordinator+Custom.h │ │ │ └── NSPersistentStoreCoordinator+Custom.m │ ├── CoreLocation │ │ ├── CLLocation │ │ │ ├── CLLocation+CH1903.h │ │ │ └── CLLocation+CH1903.m │ │ └── CLLocationManager │ │ │ ├── CLLocationManager+Blocks.h │ │ │ └── CLLocationManager+Blocks.m │ ├── DateTools │ │ ├── .DS_Store │ │ ├── DTConstants.h │ │ ├── DTConstants.m │ │ ├── DTError.h │ │ ├── DTError.m │ │ ├── DTTimePeriod.h │ │ ├── DTTimePeriod.m │ │ ├── DTTimePeriodChain.h │ │ ├── DTTimePeriodChain.m │ │ ├── DTTimePeriodCollection.h │ │ ├── DTTimePeriodCollection.m │ │ ├── DTTimePeriodGroup.h │ │ ├── DTTimePeriodGroup.m │ │ ├── DateTools.bundle │ │ │ ├── am.lproj │ │ │ │ └── DateTools.strings │ │ │ ├── ar.lproj │ │ │ │ └── DateTools.strings │ │ │ ├── bg.lproj │ │ │ │ └── DateTools.strings │ │ │ ├── ca.lproj │ │ │ │ └── DateTools.strings │ │ │ ├── cs.lproj │ │ │ │ └── DateTools.strings │ │ │ ├── cy.lproj │ │ │ │ └── DateTools.strings │ │ │ ├── da.lproj │ │ │ │ └── DateTools.strings │ │ │ ├── de.lproj │ │ │ │ └── DateTools.strings │ │ │ ├── en.lproj │ │ │ │ └── DateTools.strings │ │ │ ├── es.lproj │ │ │ │ └── DateTools.strings │ │ │ ├── eu.lproj │ │ │ │ └── DateTools.strings │ │ │ ├── fi.lproj │ │ │ │ └── DateTools.strings │ │ │ ├── fr.lproj │ │ │ │ └── DateTools.strings │ │ │ ├── gre.lproj │ │ │ │ └── DateTools.strings │ │ │ ├── gu.lproj │ │ │ │ └── DateTools.strings │ │ │ ├── he.lproj │ │ │ │ └── DateTools.strings │ │ │ ├── hi.lproj │ │ │ │ └── DateTools.strings │ │ │ ├── hr.lproj │ │ │ │ └── DateTools.strings │ │ │ ├── hu.lproj │ │ │ │ └── DateTools.strings │ │ │ ├── id.lproj │ │ │ │ └── DateTools.strings │ │ │ ├── is.lproj │ │ │ │ └── DateTools.strings │ │ │ ├── it.lproj │ │ │ │ └── DateTools.strings │ │ │ ├── ja.lproj │ │ │ │ └── DateTools.strings │ │ │ ├── ko.lproj │ │ │ │ └── DateTools.strings │ │ │ ├── lv.lproj │ │ │ │ └── DateTools.strings │ │ │ ├── ms.lproj │ │ │ │ └── DateTools.strings │ │ │ ├── nb.lproj │ │ │ │ └── DateTools.strings │ │ │ ├── nl.lproj │ │ │ │ └── DateTools.strings │ │ │ ├── pl.lproj │ │ │ │ └── DateTools.strings │ │ │ ├── pt-PT.lproj │ │ │ │ └── DateTools.strings │ │ │ ├── pt.lproj │ │ │ │ └── DateTools.strings │ │ │ ├── ro.lproj │ │ │ │ └── DateTools.strings │ │ │ ├── ru.lproj │ │ │ │ └── DateTools.strings │ │ │ ├── sl.lproj │ │ │ │ └── DateTools.strings │ │ │ ├── sv.lproj │ │ │ │ └── DateTools.strings │ │ │ ├── th.lproj │ │ │ │ └── DateTools.strings │ │ │ ├── tr.lproj │ │ │ │ └── DateTools.strings │ │ │ ├── uk.lproj │ │ │ │ └── DateTools.strings │ │ │ ├── vi.lproj │ │ │ │ └── DateTools.strings │ │ │ ├── zh-Hans.lproj │ │ │ │ └── DateTools.strings │ │ │ └── zh-Hant.lproj │ │ │ │ └── DateTools.strings │ │ ├── DateTools.h │ │ ├── NSDate+DateTools.h │ │ └── NSDate+DateTools.m │ ├── Foundation │ │ ├── NSArray │ │ │ ├── NSArray+Block.h │ │ │ ├── NSArray+Block.m │ │ │ ├── NSArray+SafeAccess.h │ │ │ └── NSArray+SafeAccess.m │ │ ├── NSBundle │ │ │ ├── NSBundle+AppIcon.h │ │ │ └── NSBundle+AppIcon.m │ │ ├── NSData │ │ │ ├── NSData+APNSToken.h │ │ │ ├── NSData+APNSToken.m │ │ │ ├── NSData+Base64.h │ │ │ ├── NSData+Base64.m │ │ │ ├── NSData+Encrypt.h │ │ │ ├── NSData+Encrypt.m │ │ │ ├── NSData+Gzip.h │ │ │ ├── NSData+Gzip.m │ │ │ ├── NSData+Hash.h │ │ │ ├── NSData+Hash.m │ │ │ ├── NSData+SDDataCache.h │ │ │ ├── NSData+SDDataCache.m │ │ │ ├── NSData+zlib.h │ │ │ └── NSData+zlib.m │ │ ├── NSDate │ │ │ ├── NSDate+CupertinoYankee.h │ │ │ ├── NSDate+CupertinoYankee.m │ │ │ ├── NSDate+Extension.h │ │ │ ├── NSDate+Extension.m │ │ │ ├── NSDate+Formatter.h │ │ │ ├── NSDate+Formatter.m │ │ │ ├── NSDate+InternetDateTime.h │ │ │ ├── NSDate+InternetDateTime.m │ │ │ ├── NSDate+Reporting.h │ │ │ ├── NSDate+Reporting.m │ │ │ ├── NSDate+TimeAgo.h │ │ │ ├── NSDate+TimeAgo.m │ │ │ ├── NSDate+Utilities.h │ │ │ └── NSDate+Utilities.m │ │ ├── NSDateFormatter │ │ │ ├── NSDateFormatter+Make.h │ │ │ └── NSDateFormatter+Make.m │ │ ├── NSDictionary │ │ │ ├── NSDictionary+Additions.h │ │ │ ├── NSDictionary+Additions.m │ │ │ ├── NSDictionary+Block.h │ │ │ ├── NSDictionary+Block.m │ │ │ ├── NSDictionary+JSONString.h │ │ │ ├── NSDictionary+JSONString.m │ │ │ ├── NSDictionary+Merge.h │ │ │ ├── NSDictionary+Merge.m │ │ │ ├── NSDictionary+SafeAccess.h │ │ │ ├── NSDictionary+SafeAccess.m │ │ │ ├── NSDictionary+URL.h │ │ │ ├── NSDictionary+URL.m │ │ │ ├── NSDictionary+XML.h │ │ │ └── NSDictionary+XML.m │ │ ├── NSException │ │ │ ├── NSException+Trace.h │ │ │ └── NSException+Trace.m │ │ ├── NSFileHandle │ │ │ ├── NSFileHandle+readLine.h │ │ │ └── NSFileHandle+readLine.m │ │ ├── NSFileManager │ │ │ ├── NSFileManager+Paths.h │ │ │ └── NSFileManager+Paths.m │ │ ├── NSHTTPCookieStorage │ │ │ ├── NSHTTPCookieStorage+FreezeDry.h │ │ │ └── NSHTTPCookieStorage+FreezeDry.m │ │ ├── NSIndexPath │ │ │ ├── NSIndexPath+Offset.h │ │ │ └── NSIndexPath+Offset.m │ │ ├── NSInvocation │ │ │ ├── NSInvocation+Bb.h │ │ │ ├── NSInvocation+Bb.m │ │ │ ├── NSInvocation+Block.h │ │ │ └── NSInvocation+Block.m │ │ ├── NSNotificationCenter │ │ │ ├── NSNotificationCenter+MainThread.h │ │ │ └── NSNotificationCenter+MainThread.m │ │ ├── NSNumber │ │ │ ├── NSDecimalNumber+CalculatingByString.h │ │ │ ├── NSDecimalNumber+CalculatingByString.m │ │ │ ├── NSDecimalNumber+Extensions.h │ │ │ ├── NSDecimalNumber+Extensions.m │ │ │ ├── NSNumber+CGFloat.h │ │ │ ├── NSNumber+CGFloat.m │ │ │ ├── NSNumber+RomanNumerals.h │ │ │ ├── NSNumber+RomanNumerals.m │ │ │ ├── NSNumber+Round.h │ │ │ └── NSNumber+Round.m │ │ ├── NSObject │ │ │ ├── NSObject+AddProperty.h │ │ │ ├── NSObject+AddProperty.m │ │ │ ├── NSObject+AppInfo.h │ │ │ ├── NSObject+AppInfo.m │ │ │ ├── NSObject+AssociatedObject.h │ │ │ ├── NSObject+AssociatedObject.m │ │ │ ├── NSObject+AutoCoding.h │ │ │ ├── NSObject+AutoCoding.m │ │ │ ├── NSObject+Blocks.h │ │ │ ├── NSObject+Blocks.m │ │ │ ├── NSObject+EasyCopy.h │ │ │ ├── NSObject+EasyCopy.m │ │ │ ├── NSObject+GCD.h │ │ │ ├── NSObject+GCD.m │ │ │ ├── NSObject+KVOBlocks.h │ │ │ ├── NSObject+KVOBlocks.m │ │ │ ├── NSObject+MKBlockTimer.h │ │ │ ├── NSObject+MKBlockTimer.m │ │ │ ├── NSObject+Reflection.h │ │ │ ├── NSObject+Reflection.m │ │ │ ├── NSObject+Runtime.h │ │ │ └── NSObject+Runtime.m │ │ ├── NSRunLoop │ │ │ ├── NSRunLoop+PerformBlock.h │ │ │ └── NSRunLoop+PerformBlock.m │ │ ├── NSSet │ │ │ ├── NSSet+Block.h │ │ │ └── NSSet+Block.m │ │ ├── NSString │ │ │ ├── NSMutableString+Ruby.h │ │ │ ├── NSMutableString+Ruby.m │ │ │ ├── NSString+Base64.h │ │ │ ├── NSString+Base64.m │ │ │ ├── NSString+Contains.h │ │ │ ├── NSString+Contains.m │ │ │ ├── NSString+DictionaryValue.h │ │ │ ├── NSString+DictionaryValue.m │ │ │ ├── NSString+Emoji.h │ │ │ ├── NSString+Emoji.m │ │ │ ├── NSString+Encrypt.h │ │ │ ├── NSString+Encrypt.m │ │ │ ├── NSString+Hash.h │ │ │ ├── NSString+Hash.m │ │ │ ├── NSString+MIME.h │ │ │ ├── NSString+MIME.m │ │ │ ├── NSString+Matcher.h │ │ │ ├── NSString+Matcher.m │ │ │ ├── NSString+Pinyin.h │ │ │ ├── NSString+Pinyin.m │ │ │ ├── NSString+RegexCategory.h │ │ │ ├── NSString+RegexCategory.m │ │ │ ├── NSString+RemoveEmoji.h │ │ │ ├── NSString+RemoveEmoji.m │ │ │ ├── NSString+Ruby.h │ │ │ ├── NSString+Ruby.m │ │ │ ├── NSString+Score.h │ │ │ ├── NSString+Score.m │ │ │ ├── NSString+Size.h │ │ │ ├── NSString+Size.m │ │ │ ├── NSString+Trims.h │ │ │ ├── NSString+Trims.m │ │ │ ├── NSString+UUID.h │ │ │ ├── NSString+UUID.m │ │ │ ├── NSString+UrlEncode.h │ │ │ ├── NSString+UrlEncode.m │ │ │ ├── NSString+XML.h │ │ │ └── NSString+XML.m │ │ ├── NSTimer │ │ │ ├── NSTimer+Addition.h │ │ │ ├── NSTimer+Addition.m │ │ │ ├── NSTimer+Blocks.h │ │ │ └── NSTimer+Blocks.m │ │ ├── NSURL │ │ │ ├── NSURL+Param.h │ │ │ ├── NSURL+Param.m │ │ │ ├── NSURL+QueryDictionary.h │ │ │ └── NSURL+QueryDictionary.m │ │ ├── NSURLConnection │ │ │ ├── NSURLConnection+SelfSigned.h │ │ │ └── NSURLConnection+SelfSigned.m │ │ ├── NSURLRequest │ │ │ ├── NSMutableURLRequest+Upload.h │ │ │ ├── NSMutableURLRequest+Upload.m │ │ │ ├── NSURLRequest+ParamsFromDictionary.h │ │ │ └── NSURLRequest+ParamsFromDictionary.m │ │ └── NSUserDefaults │ │ │ ├── NSUserDefaults+SafeAccess.h │ │ │ ├── NSUserDefaults+SafeAccess.m │ │ │ ├── NSUserDefaults+iCloudSync.h │ │ │ └── NSUserDefaults+iCloudSync.m │ ├── MapKit │ │ └── MKMapView │ │ │ ├── MKMapView+BetterMaps.h │ │ │ ├── MKMapView+BetterMaps.m │ │ │ ├── MKMapView+MoveLogo.h │ │ │ ├── MKMapView+MoveLogo.m │ │ │ ├── MKMapView+ZoomLevel.h │ │ │ └── MKMapView+ZoomLevel.m │ ├── QuartzCore │ │ ├── CAAnimation │ │ │ ├── CAAnimation+Blocks.h │ │ │ ├── CAAnimation+Blocks.m │ │ │ ├── CAAnimation+EasingEquations.h │ │ │ └── CAAnimation+EasingEquations.m │ │ ├── CALayer │ │ │ ├── CALayer+UIColor.h │ │ │ └── CALayer+UIColor.m │ │ ├── CAMediaTimingFunction │ │ │ ├── CAMediaTimingFunction+AdditionalEquations.h │ │ │ └── CAMediaTimingFunction+AdditionalEquations.m │ │ ├── CAShapeLayer │ │ │ ├── CAShapeLayer+UIBezierPath.h │ │ │ └── CAShapeLayer+UIBezierPath.m │ │ └── CATransaction │ │ │ ├── CATransaction+AnimateWithDuration.h │ │ │ └── CATransaction+AnimateWithDuration.m │ ├── UIKit │ │ ├── .DS_Store │ │ ├── UIAlertView │ │ │ ├── UIAlertView+Block.h │ │ │ └── UIAlertView+Block.m │ │ ├── UIApplication │ │ │ ├── UIApplication+ApplicationSize.h │ │ │ ├── UIApplication+ApplicationSize.m │ │ │ ├── UIApplication+KeyboardFrame.h │ │ │ ├── UIApplication+KeyboardFrame.m │ │ │ ├── UIApplication+NetworkActivityIndicator.h │ │ │ ├── UIApplication+NetworkActivityIndicator.m │ │ │ ├── UIApplication+Permissions.h │ │ │ └── UIApplication+Permissions.m │ │ ├── UIBarButtonItem │ │ │ ├── UIBarButtonItem+Action.h │ │ │ └── UIBarButtonItem+Action.m │ │ ├── UIBezierPath │ │ │ ├── UIBezierPath+BasicShapes.h │ │ │ ├── UIBezierPath+BasicShapes.m │ │ │ ├── UIBezierPath+Length.h │ │ │ ├── UIBezierPath+Length.m │ │ │ ├── UIBezierPath+LxThroughPointsBezier.h │ │ │ ├── UIBezierPath+LxThroughPointsBezier.m │ │ │ ├── UIBezierPath+SVG.h │ │ │ ├── UIBezierPath+SVG.m │ │ │ ├── UIBezierPath+Symbol.h │ │ │ └── UIBezierPath+Symbol.m │ │ ├── UIButton │ │ │ ├── UIButton+BackgroundColor.h │ │ │ ├── UIButton+BackgroundColor.m │ │ │ ├── UIButton+Block.h │ │ │ ├── UIButton+Block.m │ │ │ ├── UIButton+CountDown.h │ │ │ ├── UIButton+CountDown.m │ │ │ ├── UIButton+Indicator.h │ │ │ ├── UIButton+Indicator.m │ │ │ ├── UIButton+LXMImagePosition.h │ │ │ ├── UIButton+LXMImagePosition.m │ │ │ ├── UIButton+MiddleAligning.h │ │ │ ├── UIButton+MiddleAligning.m │ │ │ ├── UIButton+Submitting.h │ │ │ ├── UIButton+Submitting.m │ │ │ ├── UIButton+TouchAreaInsets.h │ │ │ └── UIButton+TouchAreaInsets.m │ │ ├── UICollectionView │ │ │ ├── UICollectionView+ARDynamicCacheHeightLayoutCell.h │ │ │ └── UICollectionView+ARDynamicCacheHeightLayoutCell.m │ │ ├── UIColor │ │ │ ├── UIColor+Gradient.h │ │ │ ├── UIColor+Gradient.m │ │ │ ├── UIColor+HEX.h │ │ │ ├── UIColor+HEX.m │ │ │ ├── UIColor+Modify.h │ │ │ ├── UIColor+Modify.m │ │ │ ├── UIColor+Random.h │ │ │ ├── UIColor+Random.m │ │ │ ├── UIColor+Web.h │ │ │ └── UIColor+Web.m │ │ ├── UIControl │ │ │ ├── UIControl+ActionBlocks.h │ │ │ ├── UIControl+ActionBlocks.m │ │ │ ├── UIControl+Block.h │ │ │ └── UIControl+Block.m │ │ ├── UIDevice │ │ │ ├── UIDevice+Hardware.h │ │ │ ├── UIDevice+Hardware.m │ │ │ ├── UIDevice+PasscodeStatus.h │ │ │ └── UIDevice+PasscodeStatus.m │ │ ├── UIFont │ │ │ ├── UIFont+DynamicFontControl.h │ │ │ ├── UIFont+DynamicFontControl.m │ │ │ ├── UIFont+WDCustomLoader.h │ │ │ ├── UIFont+WDCustomLoader.m │ │ │ ├── UIFont-TTF.h │ │ │ └── UIFont-TTF.m │ │ ├── UIImage │ │ │ ├── UIImage+Alpha.h │ │ │ ├── UIImage+Alpha.m │ │ │ ├── UIImage+BetterFace.h │ │ │ ├── UIImage+BetterFace.m │ │ │ ├── UIImage+Blur.h │ │ │ ├── UIImage+Blur.m │ │ │ ├── UIImage+Capture.h │ │ │ ├── UIImage+Capture.m │ │ │ ├── UIImage+Color.h │ │ │ ├── UIImage+Color.m │ │ │ ├── UIImage+FX.h │ │ │ ├── UIImage+FX.m │ │ │ ├── UIImage+FileName.h │ │ │ ├── UIImage+FileName.m │ │ │ ├── UIImage+GIF.h │ │ │ ├── UIImage+GIF.m │ │ │ ├── UIImage+Merge.h │ │ │ ├── UIImage+Merge.m │ │ │ ├── UIImage+Orientation.h │ │ │ ├── UIImage+Orientation.m │ │ │ ├── UIImage+PDF.h │ │ │ ├── UIImage+PDF.m │ │ │ ├── UIImage+RemoteSize.h │ │ │ ├── UIImage+RemoteSize.m │ │ │ ├── UIImage+Resize.h │ │ │ ├── UIImage+Resize.m │ │ │ ├── UIImage+RoundedCorner.h │ │ │ ├── UIImage+RoundedCorner.m │ │ │ ├── UIImage+SuperCompress.h │ │ │ ├── UIImage+SuperCompress.m │ │ │ ├── UIImage+Vector.h │ │ │ ├── UIImage+Vector.m │ │ │ ├── UIImage+animatedGIF.h │ │ │ ├── UIImage+animatedGIF.m │ │ │ ├── UIImage-Extensions.h │ │ │ └── UIImage-Extensions.m │ │ ├── UIImageView │ │ │ ├── UIImageView+Addition.h │ │ │ ├── UIImageView+Addition.m │ │ │ ├── UIImageView+BetterFace.h │ │ │ ├── UIImageView+BetterFace.m │ │ │ ├── UIImageView+FaceAwareFill.h │ │ │ ├── UIImageView+FaceAwareFill.m │ │ │ ├── UIImageView+GeometryConversion.h │ │ │ ├── UIImageView+GeometryConversion.m │ │ │ ├── UIImageView+Letters.h │ │ │ ├── UIImageView+Letters.m │ │ │ ├── UIImageView+Reflect.h │ │ │ └── UIImageView+Reflect.m │ │ ├── UILable │ │ │ ├── UILabel+AutoSize.h │ │ │ ├── UILabel+AutoSize.m │ │ │ ├── UILabel+SuggestSize.h │ │ │ └── UILabel+SuggestSize.m │ │ ├── UINavigationBar │ │ │ ├── UINavigationBar+Awesome.h │ │ │ ├── UINavigationBar+Awesome.m │ │ │ ├── UINavigationBar+CustomHeight.h │ │ │ └── UINavigationBar+CustomHeight.m │ │ ├── UINavigationController │ │ │ ├── UINavigationController+BATransitions.h │ │ │ ├── UINavigationController+BATransitions.m │ │ │ ├── UINavigationController+JZExtension.h │ │ │ ├── UINavigationController+JZExtension.m │ │ │ ├── UINavigationController+KeyboardFix.h │ │ │ ├── UINavigationController+KeyboardFix.m │ │ │ ├── UINavigationController+StackManager.h │ │ │ └── UINavigationController+StackManager.m │ │ ├── UINavigationItem │ │ │ ├── UINavigationItem+Loading.h │ │ │ ├── UINavigationItem+Loading.m │ │ │ ├── UINavigationItem+Lock.h │ │ │ ├── UINavigationItem+Lock.m │ │ │ ├── UINavigationItem+Margin.h │ │ │ └── UINavigationItem+Margin.m │ │ ├── UIPopoverController │ │ │ ├── UIPopoverController+iPhone.h │ │ │ └── UIPopoverController+iPhone.m │ │ ├── UIResponder │ │ │ ├── UIResponder+Chain.h │ │ │ ├── UIResponder+Chain.m │ │ │ ├── UIResponder+FirstResponder.h │ │ │ ├── UIResponder+FirstResponder.m │ │ │ ├── UIResponder+UIAdapt.h │ │ │ └── UIResponder+UIAdapt.m │ │ ├── UIScreen │ │ │ ├── UIScreen+Frame.h │ │ │ └── UIScreen+Frame.m │ │ ├── UIScrollView │ │ │ ├── UIScrollView+APParallaxHeader.h │ │ │ ├── UIScrollView+APParallaxHeader.m │ │ │ ├── UIScrollView+Addition.h │ │ │ ├── UIScrollView+Addition.m │ │ │ ├── UIScrollView+Pages.h │ │ │ └── UIScrollView+Pages.m │ │ ├── UISearchBar │ │ │ ├── UISearchBar+Blocks.h │ │ │ └── UISearchBar+Blocks.m │ │ ├── UISplitViewController │ │ │ ├── UISplitViewController+QuickAccess.h │ │ │ └── UISplitViewController+QuickAccess.m │ │ ├── UITableView │ │ │ ├── UITableView+iOS7Style.h │ │ │ ├── UITableView+iOS7Style.m │ │ │ └── UITableView-FDTemplateLayoutCell │ │ │ │ ├── UITableView+FDIndexPathHeightCache.h │ │ │ │ ├── UITableView+FDIndexPathHeightCache.m │ │ │ │ ├── UITableView+FDKeyedHeightCache.h │ │ │ │ ├── UITableView+FDKeyedHeightCache.m │ │ │ │ ├── UITableView+FDTemplateLayoutCell.h │ │ │ │ ├── UITableView+FDTemplateLayoutCell.m │ │ │ │ ├── UITableView+FDTemplateLayoutCellDebug.h │ │ │ │ └── UITableView+FDTemplateLayoutCellDebug.m │ │ ├── UITableViewCell │ │ │ ├── UITableViewCell+NIB.h │ │ │ ├── UITableViewCell+NIB.m │ │ │ ├── UITableViewCell+TS_delaysContentTouches.h │ │ │ └── UITableViewCell+TS_delaysContentTouches.m │ │ ├── UITextField │ │ │ ├── UITextField+Blocks.h │ │ │ ├── UITextField+Blocks.m │ │ │ ├── UITextField+History.h │ │ │ ├── UITextField+History.m │ │ │ ├── UITextField+Select.h │ │ │ ├── UITextField+Select.m │ │ │ ├── UITextField+Shake.h │ │ │ └── UITextField+Shake.m │ │ ├── UITextView │ │ │ ├── UITextView+PinchZoom.h │ │ │ ├── UITextView+PinchZoom.m │ │ │ ├── UITextView+PlaceHolder.h │ │ │ ├── UITextView+PlaceHolder.m │ │ │ ├── UITextView+Select.h │ │ │ └── UITextView+Select.m │ │ ├── UIView │ │ │ ├── UIView+Animation.h │ │ │ ├── UIView+Animation.m │ │ │ ├── UIView+BlockGesture.h │ │ │ ├── UIView+BlockGesture.m │ │ │ ├── UIView+Constraints.h │ │ │ ├── UIView+Constraints.m │ │ │ ├── UIView+CustomBorder.h │ │ │ ├── UIView+CustomBorder.m │ │ │ ├── UIView+Debug.h │ │ │ ├── UIView+Debug.m │ │ │ ├── UIView+FDCollapsibleConstraints.h │ │ │ ├── UIView+FDCollapsibleConstraints.m │ │ │ ├── UIView+Find.h │ │ │ ├── UIView+Find.m │ │ │ ├── UIView+Frame.h │ │ │ ├── UIView+Frame.m │ │ │ ├── UIView+Genie.h │ │ │ ├── UIView+Genie.m │ │ │ ├── UIView+GestureCallback.h │ │ │ ├── UIView+GestureCallback.m │ │ │ ├── UIView+Nib.h │ │ │ ├── UIView+Nib.m │ │ │ ├── UIView+Recursion.h │ │ │ ├── UIView+Recursion.m │ │ │ ├── UIView+Screenshot.h │ │ │ ├── UIView+Screenshot.m │ │ │ ├── UIView+Shake.h │ │ │ ├── UIView+Shake.m │ │ │ ├── UIView+Toast.h │ │ │ ├── UIView+Toast.m │ │ │ ├── UIView+ViewController.h │ │ │ ├── UIView+ViewController.m │ │ │ ├── UIView+Visuals.h │ │ │ ├── UIView+Visuals.m │ │ │ ├── UIView+draggable.h │ │ │ └── UIView+draggable.m │ │ ├── UIWebView │ │ │ ├── UIWebVIew+SwipeGesture.h │ │ │ ├── UIWebVIew+SwipeGesture.m │ │ │ ├── UIWebView+Alert.h │ │ │ ├── UIWebView+Alert.m │ │ │ ├── UIWebView+Blocks.h │ │ │ ├── UIWebView+Blocks.m │ │ │ ├── UIWebView+Canvas.h │ │ │ ├── UIWebView+Canvas.m │ │ │ ├── UIWebView+JS.h │ │ │ ├── UIWebView+JS.m │ │ │ ├── UIWebView+Load.m │ │ │ ├── UIWebView+MetaParser.h │ │ │ ├── UIWebView+MetaParser.m │ │ │ ├── UIWebView+Style.h │ │ │ ├── UIWebView+Style.m │ │ │ ├── UIWebView+TS_JavaScriptContext.h │ │ │ ├── UIWebView+TS_JavaScriptContext.m │ │ │ ├── UIWebView+load.h │ │ │ ├── WebView+Debug.h │ │ │ └── WebView+Debug.m │ │ └── UIWindow │ │ │ ├── UIWindow+Hierarchy.h │ │ │ └── UIWindow+Hierarchy.m │ └── ZHCustomNav │ │ ├── .DS_Store │ │ ├── NavigationInteractiveTransition.h │ │ ├── NavigationInteractiveTransition.m │ │ ├── UINavigationController+ZHCustomNav.h │ │ ├── UINavigationController+ZHCustomNav.m │ │ ├── ZHPopAnimation.h │ │ ├── ZHPopAnimation.m │ │ ├── ZHPushAnimation.h │ │ ├── ZHPushAnimation.m │ │ ├── nav_bg@2x.png │ │ ├── nav_button_back_h@2x.png │ │ └── nav_button_back_n@2x.png ├── File │ ├── .DS_Store │ ├── ArticleDetail.html │ ├── style.css │ ├── style_night.css │ ├── user_agreement.html │ └── user_agreement_night.html ├── IconFont │ ├── .DS_Store │ ├── demo.css │ ├── demo.html │ ├── iconfont.css │ ├── iconfont.eot │ ├── iconfont.svg │ ├── iconfont.ttf │ └── iconfont.woff ├── Images.xcassets │ ├── .DS_Store │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── Icon-152.png │ │ ├── Icon-167.png │ │ ├── Icon-29.png │ │ ├── Icon-29@2x-1.png │ │ ├── Icon-29@2x.png │ │ ├── Icon-29@3x-1.png │ │ ├── Icon-40.png │ │ ├── Icon-40@2x-1.png │ │ ├── Icon-40@2x.png │ │ ├── Icon-40@3x-1.png │ │ ├── Icon-40@3x.png │ │ ├── Icon-60@3x.png │ │ └── Icon-76.png │ ├── Contents.json │ └── LaunchImage.launchimage │ │ ├── 1242*2208.png │ │ ├── 320*480.png │ │ ├── 640*1136-1.png │ │ ├── 640*1136.png │ │ ├── 640*960-1.png │ │ ├── 640*960.png │ │ ├── 750*1334.png │ │ └── Contents.json ├── Images │ ├── .DS_Store │ ├── clound.jpg │ ├── user_icon_default@2x.png │ └── zhifubao.png ├── Info.plist ├── Libs │ ├── .DS_Store │ ├── CATCommon │ │ ├── .DS_Store │ │ ├── CATCommon.h │ │ └── CATCommon.m │ ├── DACircularProgress │ │ ├── DACircularProgressView.h │ │ ├── DACircularProgressView.m │ │ ├── DALabeledCircularProgressView.h │ │ └── DALabeledCircularProgressView.m │ ├── FLAnimatedImage-SDWebImage │ │ ├── .DS_Store │ │ ├── FLAnimatedImage │ │ │ ├── .DS_Store │ │ │ ├── FLAnimatedImage.h │ │ │ ├── FLAnimatedImage.m │ │ │ ├── FLAnimatedImageView.h │ │ │ └── FLAnimatedImageView.m │ │ └── SDWebImage │ │ │ ├── FLAnimatedImageView+WebCache.h │ │ │ ├── FLAnimatedImageView+WebCache.m │ │ │ ├── MKAnnotationView+WebCache.h │ │ │ ├── MKAnnotationView+WebCache.m │ │ │ ├── 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 │ │ │ ├── UIImage+WebP.h │ │ │ ├── UIImage+WebP.m │ │ │ ├── UIImageView+HighlightedWebCache.h │ │ │ ├── UIImageView+HighlightedWebCache.m │ │ │ ├── UIImageView+WebCache.h │ │ │ ├── UIImageView+WebCache.m │ │ │ ├── UIView+WebCacheOperation.h │ │ │ └── UIView+WebCacheOperation.m │ ├── JTSImageViewController │ │ ├── JTSAnimatedGIFUtility.h │ │ ├── JTSAnimatedGIFUtility.m │ │ ├── JTSImageInfo.h │ │ ├── JTSImageInfo.m │ │ ├── JTSImageViewController.h │ │ ├── JTSImageViewController.m │ │ ├── JTSSimpleImageDownloader.h │ │ ├── JTSSimpleImageDownloader.m │ │ ├── UIApplication+JTSImageViewController.h │ │ ├── UIApplication+JTSImageViewController.m │ │ ├── UIImage+JTSImageEffects.h │ │ └── UIImage+JTSImageEffects.m │ ├── LTAlertView │ │ ├── .DS_Store │ │ ├── LTAlertView.h │ │ └── LTAlertView.m │ ├── LongVideo │ │ ├── .DS_Store │ │ ├── MovieControllImg │ │ │ ├── .DS_Store │ │ │ ├── back@2x.png │ │ │ ├── back_s@2x.png │ │ │ ├── bottom_bar@2x.png │ │ │ ├── bullet_set_nor@2x.png │ │ │ ├── bullet_videotype_frame@2x.png │ │ │ ├── full_mode@2x.png │ │ │ ├── hideWord.png │ │ │ ├── hideWord_select.png │ │ │ ├── ic_media_ff@2x.png │ │ │ ├── ic_media_rew@2x.png │ │ │ ├── lock@2x.png │ │ │ ├── locked@2x.png │ │ │ ├── pause_btn@2x.png │ │ │ ├── play_btn@2x.png │ │ │ ├── play_next_btn@2x.png │ │ │ ├── play_next_btn_pressed@2x.png │ │ │ ├── showWord.png │ │ │ ├── showWord_select.png │ │ │ ├── slider@2x.png │ │ │ ├── slider_max@2x.png │ │ │ ├── slider_min@2x.png │ │ │ ├── slider_s@2x.png │ │ │ ├── top_bar@2x.png │ │ │ ├── video_download_finish@2x.png │ │ │ └── video_download_nor@2x.png │ │ ├── TVSliderView.h │ │ ├── TVSliderView.m │ │ ├── TvFastRewindView.h │ │ ├── TvFastRewindView.m │ │ ├── TvMovieControll.h │ │ ├── TvMovieControll.m │ │ ├── TvMovieFullController.h │ │ ├── TvMovieFullController.m │ │ ├── TvMovieView.h │ │ ├── TvMovieView.m │ │ ├── TvMovieWebController.h │ │ ├── TvMovieWebController.m │ │ ├── TvOrentionManager.h │ │ ├── TvOrentionManager.m │ │ ├── TvProgressView.h │ │ ├── TvProgressView.m │ │ ├── TvVideoAdView.h │ │ ├── TvVideoAdView.m │ │ ├── TvVideoMenuView.h │ │ └── TvVideoMenuView.m │ ├── MWPhotoBrowser │ │ ├── .DS_Store │ │ ├── Classes │ │ │ ├── MWCaptionView.h │ │ │ ├── MWCaptionView.m │ │ │ ├── MWCommon.h │ │ │ ├── MWGridCell.h │ │ │ ├── MWGridCell.m │ │ │ ├── MWGridViewController.h │ │ │ ├── MWGridViewController.m │ │ │ ├── MWPhoto.h │ │ │ ├── MWPhoto.m │ │ │ ├── MWPhotoBrowser.h │ │ │ ├── MWPhotoBrowser.m │ │ │ ├── MWPhotoBrowserPrivate.h │ │ │ ├── MWPhotoProtocol.h │ │ │ ├── MWTapDetectingImageView.h │ │ │ ├── MWTapDetectingImageView.m │ │ │ ├── MWTapDetectingView.h │ │ │ ├── MWTapDetectingView.m │ │ │ ├── MWZoomingScrollView.h │ │ │ ├── MWZoomingScrollView.m │ │ │ ├── UIImage+MWPhotoBrowser.h │ │ │ └── UIImage+MWPhotoBrowser.m │ │ └── Images │ │ │ ├── .DS_Store │ │ │ ├── ImageError.png │ │ │ ├── ImageError@2x.png │ │ │ ├── ImageError@3x.png │ │ │ ├── ImageSelectedOff.png │ │ │ ├── ImageSelectedOff@2x.png │ │ │ ├── ImageSelectedOff@3x.png │ │ │ ├── ImageSelectedOn.png │ │ │ ├── ImageSelectedOn@2x.png │ │ │ ├── ImageSelectedOn@3x.png │ │ │ ├── ImageSelectedSmallOff.png │ │ │ ├── ImageSelectedSmallOff@2x.png │ │ │ ├── ImageSelectedSmallOff@3x.png │ │ │ ├── ImageSelectedSmallOn.png │ │ │ ├── ImageSelectedSmallOn@2x.png │ │ │ ├── ImageSelectedSmallOn@3x.png │ │ │ ├── PlayButtonOverlayLarge.png │ │ │ ├── PlayButtonOverlayLarge@2x.png │ │ │ ├── PlayButtonOverlayLarge@3x.png │ │ │ ├── PlayButtonOverlayLargeTap.png │ │ │ ├── PlayButtonOverlayLargeTap@2x.png │ │ │ ├── PlayButtonOverlayLargeTap@3x.png │ │ │ ├── UIBarButtonItemArrowLeft.png │ │ │ ├── UIBarButtonItemArrowLeft@2x.png │ │ │ ├── UIBarButtonItemArrowLeft@3x.png │ │ │ ├── UIBarButtonItemArrowRight.png │ │ │ ├── UIBarButtonItemArrowRight@2x.png │ │ │ ├── UIBarButtonItemArrowRight@3x.png │ │ │ ├── UIBarButtonItemGrid.png │ │ │ ├── UIBarButtonItemGrid@2x.png │ │ │ ├── UIBarButtonItemGrid@3x.png │ │ │ ├── VideoOverlay.png │ │ │ ├── VideoOverlay@2x.png │ │ │ └── VideoOverlay@3x.png │ ├── SVWebViewController │ │ ├── .DS_Store │ │ ├── SVModalWebViewController.h │ │ ├── SVModalWebViewController.m │ │ ├── SVWebViewController.bundle │ │ │ ├── SVWebViewControllerBack.png │ │ │ ├── SVWebViewControllerBack@2x.png │ │ │ ├── SVWebViewControllerNext.png │ │ │ └── SVWebViewControllerNext@2x.png │ │ ├── SVWebViewController.h │ │ ├── SVWebViewController.m │ │ ├── UIActivities │ │ │ ├── Chrome │ │ │ │ ├── SVWebViewControllerActivityChrome-iPad.png │ │ │ │ ├── SVWebViewControllerActivityChrome-iPad@2x.png │ │ │ │ ├── SVWebViewControllerActivityChrome.h │ │ │ │ ├── SVWebViewControllerActivityChrome.m │ │ │ │ └── SVWebViewControllerActivityChrome@2x.png │ │ │ ├── SVWebViewControllerActivity.h │ │ │ ├── SVWebViewControllerActivity.m │ │ │ └── Safari │ │ │ │ ├── SVWebViewControllerActivitySafari-iPad.png │ │ │ │ ├── SVWebViewControllerActivitySafari-iPad@2x.png │ │ │ │ ├── SVWebViewControllerActivitySafari.h │ │ │ │ ├── SVWebViewControllerActivitySafari.m │ │ │ │ └── SVWebViewControllerActivitySafari@2x.png │ │ ├── da.lproj │ │ │ └── SVWebViewController.strings │ │ ├── de.lproj │ │ │ └── SVWebViewController.strings │ │ ├── en.lproj │ │ │ └── SVWebViewController.strings │ │ ├── es-ES.lproj │ │ │ └── SVWebViewController.strings │ │ ├── es.lproj │ │ │ └── SVWebViewController.strings │ │ ├── fr.lproj │ │ │ └── SVWebViewController.strings │ │ ├── ja.lproj │ │ │ └── SVWebViewController.strings │ │ ├── pt.lproj │ │ │ └── SVWebViewController.strings │ │ ├── zh-Hans.lproj │ │ │ └── SVWebViewController.strings │ │ └── zh-Hant.lproj │ │ │ └── SVWebViewController.strings │ ├── ShortVideo │ │ ├── .DS_Store │ │ ├── Class │ │ │ ├── .DS_Store │ │ │ ├── ZHShortPlayerView.h │ │ │ ├── ZHShortPlayerView.m │ │ │ ├── ZHShortVideoManager.h │ │ │ └── ZHShortVideoManager.m │ │ ├── Res │ │ │ ├── .DS_Store │ │ │ ├── data.plist │ │ │ ├── play_btn_icon@2x.png │ │ │ └── play_btn_icon@3x.png │ │ └── libIJKPlayer │ │ │ ├── .DS_Store │ │ │ ├── IJKAVMoviePlayerController.h │ │ │ ├── IJKAVMoviePlayerController.m │ │ │ ├── IJKAVPlayerLayerView.h │ │ │ ├── IJKAVPlayerLayerView.m │ │ │ ├── IJKAudioKit.h │ │ │ ├── IJKAudioKit.m │ │ │ ├── IJKDeviceModel.h │ │ │ ├── IJKDeviceModel.m │ │ │ ├── IJKKVOController.h │ │ │ ├── IJKKVOController.m │ │ │ ├── IJKMPMoviePlayerController.h │ │ │ ├── IJKMPMoviePlayerController.m │ │ │ ├── IJKMediaModule.h │ │ │ ├── IJKMediaModule.m │ │ │ ├── IJKMediaPlayback.h │ │ │ ├── IJKMediaPlayback.m │ │ │ ├── IJKMediaPlayer.h │ │ │ ├── IJKMediaUtils.h │ │ │ ├── IJKMediaUtils.m │ │ │ ├── IJKNotificationManager.h │ │ │ ├── IJKNotificationManager.m │ │ │ ├── NSString+IJKMedia.h │ │ │ ├── NSString+IJKMedia.m │ │ │ └── ijksdl_ios.h │ ├── ToastHelper │ │ ├── ToastHelper.h │ │ └── ToastHelper.m │ ├── YWFramework │ │ ├── .DS_Store │ │ ├── AmrCodecFMWK.framework │ │ │ ├── AmrCodecFMWK │ │ │ ├── Headers │ │ │ │ ├── amrCodec.h │ │ │ │ ├── interf_dec.h │ │ │ │ ├── interf_enc.h │ │ │ │ ├── interf_rom.h │ │ │ │ ├── rom_dec.h │ │ │ │ ├── rom_enc.h │ │ │ │ ├── sp_dec.h │ │ │ │ ├── sp_enc.h │ │ │ │ └── typedef.h │ │ │ └── Versions │ │ │ │ ├── A │ │ │ │ ├── AmrCodecFMWK │ │ │ │ └── Headers │ │ │ │ │ ├── amrCodec.h │ │ │ │ │ ├── interf_dec.h │ │ │ │ │ ├── interf_enc.h │ │ │ │ │ ├── interf_rom.h │ │ │ │ │ ├── rom_dec.h │ │ │ │ │ ├── rom_enc.h │ │ │ │ │ ├── sp_dec.h │ │ │ │ │ ├── sp_enc.h │ │ │ │ │ └── typedef.h │ │ │ │ └── Current │ │ │ │ ├── AmrCodecFMWK │ │ │ │ └── Headers │ │ │ │ ├── amrCodec.h │ │ │ │ ├── interf_dec.h │ │ │ │ ├── interf_enc.h │ │ │ │ ├── interf_rom.h │ │ │ │ ├── rom_dec.h │ │ │ │ ├── rom_enc.h │ │ │ │ ├── sp_dec.h │ │ │ │ ├── sp_enc.h │ │ │ │ └── typedef.h │ │ ├── SecurityGuardSDK.framework │ │ │ ├── Headers │ │ │ ├── Resources │ │ │ ├── SecurityGuardSDK │ │ │ └── Versions │ │ │ │ ├── A │ │ │ │ ├── Headers │ │ │ │ │ ├── JAQ │ │ │ │ │ │ ├── SecurityCipher.h │ │ │ │ │ │ ├── SecuritySignature.h │ │ │ │ │ │ └── SecurityStorage.h │ │ │ │ │ └── Open │ │ │ │ │ │ ├── OpenAtlasEncrypt │ │ │ │ │ │ └── IOpenAtlasEncryptComponent.h │ │ │ │ │ │ ├── OpenDataCollection │ │ │ │ │ │ └── IOpenDataCollectionComponent.h │ │ │ │ │ │ ├── OpenDynamicDataEncrypt │ │ │ │ │ │ └── IOpenDynamicDataEncryptComponent.h │ │ │ │ │ │ ├── OpenDynamicDataStore │ │ │ │ │ │ └── IOpenDynamicDataStoreComponent.h │ │ │ │ │ │ ├── OpenOpenSDK │ │ │ │ │ │ └── IOpenOpenSDKComponent.h │ │ │ │ │ │ ├── OpenSecureSignature │ │ │ │ │ │ ├── IOpenSecureSignatureComponent.h │ │ │ │ │ │ └── OpenSecureSignatureDefine.h │ │ │ │ │ │ ├── OpenSecurityGuardManager.h │ │ │ │ │ │ ├── OpenSecurityGuardParamContext.h │ │ │ │ │ │ ├── OpenStaticDataEncrypt │ │ │ │ │ │ ├── IOpenStaticDataEncryptComponent.h │ │ │ │ │ │ └── OpenStaticDataEncryptDefine.h │ │ │ │ │ │ ├── OpenStaticDataStore │ │ │ │ │ │ ├── IOpenStaticDataStoreComponent.h │ │ │ │ │ │ └── OpenStaticDataStoreDefine.h │ │ │ │ │ │ ├── OpenStaticKeyEncrypt │ │ │ │ │ │ ├── IOpenStaticKeyEncryptComponent.h │ │ │ │ │ │ └── OpenStaticKeyEncryptDefine.h │ │ │ │ │ │ └── OpenUMID │ │ │ │ │ │ └── IOpenUMIDComponent.h │ │ │ │ ├── Resources │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── en.lproj │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ ├── SecurityGuardSDK │ │ │ │ └── SecurityGuardSDK00000000.file-list │ │ │ │ └── Current │ │ ├── UTDID.framework │ │ │ ├── Headers │ │ │ ├── Resources │ │ │ ├── UTDID │ │ │ └── Versions │ │ │ │ ├── A │ │ │ │ ├── Headers │ │ │ │ │ ├── AidProtocol.h │ │ │ │ │ └── UTDevice.h │ │ │ │ ├── Resources │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── en.lproj │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ └── UTDID │ │ │ │ └── Current │ │ ├── UTMini.framework │ │ │ ├── Headers │ │ │ ├── Resources │ │ │ ├── UTMini │ │ │ └── Versions │ │ │ │ ├── A │ │ │ │ ├── Headers │ │ │ │ │ ├── UTAnalytics.h │ │ │ │ │ ├── UTBaseRequestAuthentication.h │ │ │ │ │ ├── UTCustomHitBuilder.h │ │ │ │ │ ├── UTHitBuilder.h │ │ │ │ │ ├── UTHybridHelper.h │ │ │ │ │ ├── UTICrashCaughtListener.h │ │ │ │ │ ├── UTIRequestAuthentication.h │ │ │ │ │ ├── UTMCLogFieldsSchema.h │ │ │ │ │ ├── UTMCTeamWork.h │ │ │ │ │ ├── UTOirginalCustomHitBuilder.h │ │ │ │ │ ├── UTPageHitBuilder.h │ │ │ │ │ ├── UTPlugin.h │ │ │ │ │ ├── UTSecuritySDKRequestAuthentication.h │ │ │ │ │ ├── UTTeamWork.h │ │ │ │ │ └── UTTracker.h │ │ │ │ ├── Resources │ │ │ │ │ └── Info.plist │ │ │ │ └── UTMini │ │ │ │ └── Current │ │ ├── WQConnectorBundle.framework │ │ │ ├── Headers │ │ │ ├── Resources │ │ │ ├── Versions │ │ │ │ ├── A │ │ │ │ │ ├── Headers │ │ │ │ │ │ ├── WQAction.h │ │ │ │ │ │ ├── WQActionItem.h │ │ │ │ │ │ ├── WQAuth.h │ │ │ │ │ │ ├── WQCall.h │ │ │ │ │ │ ├── WQCommand.h │ │ │ │ │ │ ├── WQConnector.h │ │ │ │ │ │ ├── WQConstants.h │ │ │ │ │ │ ├── WQEAppClient.h │ │ │ │ │ │ ├── WQEAppEntity.h │ │ │ │ │ │ ├── WQEventCallback.h │ │ │ │ │ │ ├── WQHandler.h │ │ │ │ │ │ ├── WQHandlerResult.h │ │ │ │ │ │ ├── WQLog.h │ │ │ │ │ │ ├── WQPermission.h │ │ │ │ │ │ ├── WQPluginConstants.h │ │ │ │ │ │ ├── WQProxyHandler.h │ │ │ │ │ │ ├── WQSeqenceHandler.h │ │ │ │ │ │ └── WQUtil.h │ │ │ │ │ └── WQConnectorBundle │ │ │ │ └── Current │ │ │ └── WQConnectorBundle │ │ ├── YWFeedbackAudioExtentionFMWK.framework │ │ │ ├── Headers │ │ │ ├── Resources │ │ │ ├── Versions │ │ │ │ ├── A │ │ │ │ │ ├── Headers │ │ │ │ │ │ ├── AudioNotification.h │ │ │ │ │ │ ├── SoundRecorder.h │ │ │ │ │ │ ├── YWAudioPlayer.h │ │ │ │ │ │ ├── YWAudioService.h │ │ │ │ │ │ └── YWFeedbackAudioExtention.h │ │ │ │ │ └── YWFeedbackAudioExtentionFMWK │ │ │ │ └── Current │ │ │ └── YWFeedbackAudioExtentionFMWK │ │ ├── YWFeedbackFMWK.framework │ │ │ ├── Headers │ │ │ ├── Resources │ │ │ ├── Versions │ │ │ │ ├── A │ │ │ │ │ ├── Headers │ │ │ │ │ │ ├── YWFeedbackKit.h │ │ │ │ │ │ └── YWFeedbackViewController.h │ │ │ │ │ └── YWFeedbackFMWK │ │ │ │ └── Current │ │ │ └── YWFeedbackFMWK │ │ ├── YWHybridWebViewFMWK.framework │ │ │ ├── Headers │ │ │ │ ├── WQBridgeConfig.h │ │ │ │ ├── YWBaseBridgeService.h │ │ │ │ ├── YWHybridConnector.h │ │ │ │ ├── YWHybridEngine.h │ │ │ │ └── YWHybridWebView.h │ │ │ ├── Versions │ │ │ │ ├── A │ │ │ │ │ ├── Headers │ │ │ │ │ │ ├── WQBridgeConfig.h │ │ │ │ │ │ ├── YWBaseBridgeService.h │ │ │ │ │ │ ├── YWHybridConnector.h │ │ │ │ │ │ ├── YWHybridEngine.h │ │ │ │ │ │ └── YWHybridWebView.h │ │ │ │ │ └── YWHybridWebViewFMWK │ │ │ │ └── Current │ │ │ │ │ ├── Headers │ │ │ │ │ ├── WQBridgeConfig.h │ │ │ │ │ ├── YWBaseBridgeService.h │ │ │ │ │ ├── YWHybridConnector.h │ │ │ │ │ ├── YWHybridEngine.h │ │ │ │ │ └── YWHybridWebView.h │ │ │ │ │ └── YWHybridWebViewFMWK │ │ │ └── YWHybridWebViewFMWK │ │ └── yw_1222.jpg │ ├── ZHURLImageSize │ │ ├── .DS_Store │ │ ├── ZHURLImageSize.h │ │ └── ZHURLImageSize.m │ └── umeng_ios_social_sdk_5.2.1_arm64_custom │ │ ├── UMSocial_Sdk_5.2.1 │ │ ├── Header │ │ │ ├── UMSocial.h │ │ │ ├── UMSocialAccountManager.h │ │ │ ├── UMSocialBar.h │ │ │ ├── UMSocialConfig.h │ │ │ ├── UMSocialControllerService.h │ │ │ ├── UMSocialControllerServiceComment.h │ │ │ ├── UMSocialData.h │ │ │ ├── UMSocialDataService.h │ │ │ ├── UMSocialSnsData.h │ │ │ ├── UMSocialSnsPlatformManager.h │ │ │ └── UMSocialSnsService.h │ │ ├── SocialSDKXib │ │ │ ├── UMSCommentDetailController.xib │ │ │ ├── UMSCommentInputController.xib │ │ │ ├── UMSCommentInputControlleriPad.xib │ │ │ ├── UMSLoginViewController.xib │ │ │ ├── UMSShareListController.xib │ │ │ ├── UMShareEditViewController.xib │ │ │ ├── UMShareEditViewControlleriPad.xib │ │ │ └── UMSnsAccountViewController.xib │ │ ├── UMSocialSDKResourcesNew.bundle │ │ │ ├── Buttons │ │ │ │ ├── UMS_Check.png │ │ │ │ ├── UMS_Check@2x.png │ │ │ │ ├── UMS_No_Location.png │ │ │ │ ├── UMS_No_Location@2x.png │ │ │ │ ├── UMS_User-Avatar-Placeholder@2x.png │ │ │ │ ├── UMS_User_profile_default@2x.png │ │ │ │ ├── UMS_account_login@2x.png │ │ │ │ ├── UMS_add_friend_off.png │ │ │ │ ├── UMS_add_friend_off@2x.png │ │ │ │ ├── UMS_add_friend_on.png │ │ │ │ ├── UMS_add_friend_on@2x.png │ │ │ │ ├── UMS_comment_input@2x.png │ │ │ │ ├── UMS_comment_view_cell.png │ │ │ │ ├── UMS_comment_view_cell_white@2x.png │ │ │ │ ├── UMS_delete_image_button_normal.png │ │ │ │ ├── UMS_delete_image_button_normal@2x.png │ │ │ │ ├── UMS_find@2x.png │ │ │ │ ├── UMS_follow_off@2x.png │ │ │ │ ├── UMS_follow_on@2x.png │ │ │ │ ├── UMS_nav_bar_bg_white@2x.png │ │ │ │ ├── UMS_nav_button_back.png │ │ │ │ ├── UMS_nav_button_back@2x.png │ │ │ │ ├── UMS_nav_button_close.png │ │ │ │ ├── UMS_nav_button_close@2x.png │ │ │ │ ├── UMS_nav_button_refresh.png │ │ │ │ ├── UMS_nav_button_refresh@2x.png │ │ │ │ ├── UMS_nav_button_send.png │ │ │ │ ├── UMS_nav_button_send@2x.png │ │ │ │ ├── UMS_oauth_off.png │ │ │ │ ├── UMS_oauth_off@2x.png │ │ │ │ ├── UMS_oauth_on.png │ │ │ │ ├── UMS_oauth_on@2x.png │ │ │ │ ├── UMS_place_map.png │ │ │ │ ├── UMS_place_map@2x.png │ │ │ │ ├── UMS_place_off.png │ │ │ │ ├── UMS_place_off@2x.png │ │ │ │ ├── UMS_place_tap.png │ │ │ │ ├── UMS_place_tap@2x.png │ │ │ │ ├── UMS_shake__share_button@2x.png │ │ │ │ ├── UMS_shake_close.png │ │ │ │ ├── UMS_shake_close@2x.png │ │ │ │ ├── UMS_shake_close_tap.png │ │ │ │ ├── UMS_shake_close_tap@2x.png │ │ │ │ ├── UMS_share_change_account.png │ │ │ │ ├── UMS_share_change_account@2x.png │ │ │ │ ├── UMS_share_change_account_bg@2x.png │ │ │ │ ├── UMS_share_change_account_tap.png │ │ │ │ ├── UMS_share_change_account_tap@2x.png │ │ │ │ ├── UMS_share_change_to_account@2x.png │ │ │ │ ├── UMS_share_change_to_account_tap@2x.png │ │ │ │ ├── UMS_share_oauth@2x.png │ │ │ │ ├── UMS_umeng_share_at.png │ │ │ │ ├── UMS_umeng_share_at@2x.png │ │ │ │ ├── UMS_umeng_share_atSel.png │ │ │ │ ├── UMS_umeng_share_atSel@2x.png │ │ │ │ ├── UMS_umeng_share_at_tap.png │ │ │ │ ├── UMS_umeng_share_toolbarBg.png │ │ │ │ ├── UMS_umeng_share_toolbarBg@2x.png │ │ │ │ ├── UMS_url_image.png │ │ │ │ ├── UMS_url_image@2x.png │ │ │ │ ├── UMS_url_music.png │ │ │ │ ├── UMS_url_music@2x.png │ │ │ │ ├── UMS_url_video.png │ │ │ │ └── UMS_url_video@2x.png │ │ │ ├── EGO │ │ │ │ ├── blackArrow.png │ │ │ │ ├── blackArrow@2x.png │ │ │ │ ├── blueArrow.png │ │ │ │ ├── blueArrow@2x.png │ │ │ │ ├── grayArrow.png │ │ │ │ ├── grayArrow@2x.png │ │ │ │ ├── whiteArrow.png │ │ │ │ └── whiteArrow@2x.png │ │ │ ├── OtherTheme │ │ │ │ ├── UMS_actionsheet_panel@2x.png │ │ │ │ ├── UMS_nav_back_button_normal.png │ │ │ │ ├── UMS_nav_back_button_normal@2x.png │ │ │ │ ├── UMS_nav_back_button_tap.png │ │ │ │ ├── UMS_nav_back_button_tap@2x.png │ │ │ │ ├── UMS_nav_bar_bg_black.png │ │ │ │ ├── UMS_nav_bar_bg_black@2x.png │ │ │ │ ├── UMS_nav_button_normal.png │ │ │ │ ├── UMS_nav_button_normal@2x.png │ │ │ │ ├── UMS_nav_button_tap.png │ │ │ │ └── UMS_nav_button_tap@2x.png │ │ │ ├── SnsPlatform │ │ │ │ ├── UMS_alipay_icon.png │ │ │ │ ├── UMS_alipay_icon@2x.png │ │ │ │ ├── UMS_alipay_off.png │ │ │ │ ├── UMS_alipay_off@2x.png │ │ │ │ ├── UMS_alipay_on@2x.png │ │ │ │ ├── UMS_alipay_session_icon.png │ │ │ │ ├── UMS_alipay_session_icon@2x.png │ │ │ │ ├── UMS_douban_icon.png │ │ │ │ ├── UMS_douban_icon@2x.png │ │ │ │ ├── UMS_douban_off.png │ │ │ │ ├── UMS_douban_off@2x.png │ │ │ │ ├── UMS_douban_on.png │ │ │ │ ├── UMS_douban_on@2x.png │ │ │ │ ├── UMS_email_icon.png │ │ │ │ ├── UMS_email_icon@2x.png │ │ │ │ ├── UMS_email_off.png │ │ │ │ ├── UMS_email_off@2x.png │ │ │ │ ├── UMS_email_on@2x.png │ │ │ │ ├── UMS_facebook_icon.png │ │ │ │ ├── UMS_facebook_icon@2x.png │ │ │ │ ├── UMS_facebook_off.png │ │ │ │ ├── UMS_facebook_off@2x.png │ │ │ │ ├── UMS_facebook_on.png │ │ │ │ ├── UMS_facebook_on@2x.png │ │ │ │ ├── UMS_flickr_icon@2x.png │ │ │ │ ├── UMS_instagram.png │ │ │ │ ├── UMS_instagram@2x.png │ │ │ │ ├── UMS_laiwang_session@2x.png │ │ │ │ ├── UMS_laiwang_timeline@2x.png │ │ │ │ ├── UMS_line_icon@2x.png │ │ │ │ ├── UMS_pinterest_icon@2x.png │ │ │ │ ├── UMS_qq_icon.png │ │ │ │ ├── UMS_qq_icon@2x.png │ │ │ │ ├── UMS_qq_off.png │ │ │ │ ├── UMS_qq_off@2x.png │ │ │ │ ├── UMS_qq_on.png │ │ │ │ ├── UMS_qq_on@2x.png │ │ │ │ ├── UMS_qzone_icon.png │ │ │ │ ├── UMS_qzone_icon@2x.png │ │ │ │ ├── UMS_qzone_off.png │ │ │ │ ├── UMS_qzone_off@2x.png │ │ │ │ ├── UMS_qzone_on.png │ │ │ │ ├── UMS_qzone_on@2x.png │ │ │ │ ├── UMS_renren_icon.png │ │ │ │ ├── UMS_renren_icon@2x.png │ │ │ │ ├── UMS_renren_off.png │ │ │ │ ├── UMS_renren_off@2x.png │ │ │ │ ├── UMS_renren_on.png │ │ │ │ ├── UMS_renren_on@2x.png │ │ │ │ ├── UMS_sina_icon.png │ │ │ │ ├── UMS_sina_icon@2x.png │ │ │ │ ├── UMS_sina_off.png │ │ │ │ ├── UMS_sina_off@2x.png │ │ │ │ ├── UMS_sina_on.png │ │ │ │ ├── UMS_sina_on@2x.png │ │ │ │ ├── UMS_sms_icon.png │ │ │ │ ├── UMS_sms_icon@2x.png │ │ │ │ ├── UMS_sms_off.png │ │ │ │ ├── UMS_sms_off@2x.png │ │ │ │ ├── UMS_sms_on@2x.png │ │ │ │ ├── UMS_tencent_icon.png │ │ │ │ ├── UMS_tencent_icon@2x.png │ │ │ │ ├── UMS_tencent_off.png │ │ │ │ ├── UMS_tencent_off@2x.png │ │ │ │ ├── UMS_tencent_on.png │ │ │ │ ├── UMS_tencent_on@2x.png │ │ │ │ ├── UMS_tumblr_icon@2x.png │ │ │ │ ├── UMS_twitter_icon.png │ │ │ │ ├── UMS_twitter_icon@2x.png │ │ │ │ ├── UMS_twitter_off.png │ │ │ │ ├── UMS_twitter_off@2x.png │ │ │ │ ├── UMS_twitter_on.png │ │ │ │ ├── UMS_twitter_on@2x.png │ │ │ │ ├── UMS_wechat_favorite_icon.png │ │ │ │ ├── UMS_wechat_favorite_icon@2x.png │ │ │ │ ├── UMS_wechat_icon.png │ │ │ │ ├── UMS_wechat_icon@2x.png │ │ │ │ ├── UMS_wechat_off.png │ │ │ │ ├── UMS_wechat_off@2x.png │ │ │ │ ├── UMS_wechat_on@2x.png │ │ │ │ ├── UMS_wechat_session_icon.png │ │ │ │ ├── UMS_wechat_session_icon@2x.png │ │ │ │ ├── UMS_wechat_timeline_icon.png │ │ │ │ ├── UMS_wechat_timeline_icon@2x.png │ │ │ │ ├── UMS_wechat_timeline_off.png │ │ │ │ ├── UMS_wechat_timeline_off@2x.png │ │ │ │ ├── UMS_wechat_timeline_on.png │ │ │ │ ├── UMS_wechat_timeline_on@2x.png │ │ │ │ ├── UMS_whatsapp_icon@2x.png │ │ │ │ ├── UMS_yixin_session@2x.png │ │ │ │ └── UMS_yixin_timeline@2x.png │ │ │ ├── SocialSDKBar │ │ │ │ ├── UMS_account_normal_white.png │ │ │ │ ├── UMS_account_normal_white@2x.png │ │ │ │ ├── UMS_account_tap_white.png │ │ │ │ ├── UMS_account_tap_white@2x.png │ │ │ │ ├── UMS_comment_normal_white.png │ │ │ │ ├── UMS_comment_normal_white@2x.png │ │ │ │ ├── UMS_comment_tap_white.png │ │ │ │ ├── UMS_comment_tap_white@2x.png │ │ │ │ ├── UMS_like_off_white.png │ │ │ │ ├── UMS_like_off_white@2x.png │ │ │ │ ├── UMS_like_on_white.png │ │ │ │ ├── UMS_like_on_white@2x.png │ │ │ │ ├── UMS_share_normal_white.png │ │ │ │ ├── UMS_share_normal_white@2x.png │ │ │ │ ├── UMS_share_tap_white.png │ │ │ │ └── UMS_share_tap_white@2x.png │ │ │ └── Sound │ │ │ │ └── shake_sound.mp3 │ │ ├── en.lproj │ │ │ └── UMSocialLocalizable.strings │ │ ├── libUMSocial_Sdk_5.2.1.a │ │ └── zh-Hans.lproj │ │ │ └── UMSocialLocalizable.strings │ │ ├── UMSocial_Sdk_Extra_Frameworks │ │ ├── SinaSSO │ │ │ ├── UMSocialSinaSSOHandler.h │ │ │ ├── WBHttpRequest+WeiboGame.h │ │ │ ├── WBHttpRequest+WeiboShare.h │ │ │ ├── WBHttpRequest+WeiboToken.h │ │ │ ├── WBHttpRequest+WeiboUser.h │ │ │ ├── WBHttpRequest.h │ │ │ ├── WBSDKBasicButton.h │ │ │ ├── WBSDKCommentButton.h │ │ │ ├── WBSDKRelationshipButton.h │ │ │ ├── WeiboSDK+Statistics.h │ │ │ ├── WeiboSDK.bundle │ │ │ │ ├── images │ │ │ │ │ ├── alert_error_icon@2x.png │ │ │ │ │ ├── alert_success_icon@2x.png │ │ │ │ │ ├── close.png │ │ │ │ │ ├── close@2x.png │ │ │ │ │ ├── common_button_big_blue@2x.png │ │ │ │ │ ├── common_button_big_blue_disable@2x.png │ │ │ │ │ ├── common_button_big_blue_highlighted@2x.png │ │ │ │ │ ├── common_button_white.png │ │ │ │ │ ├── common_button_white@2x.png │ │ │ │ │ ├── common_button_white_highlighted.png │ │ │ │ │ ├── common_button_white_highlighted@2x.png │ │ │ │ │ ├── common_icon_arrow@2x.png │ │ │ │ │ ├── compose_keyboardbutton_background.png │ │ │ │ │ ├── compose_keyboardbutton_background@2x.png │ │ │ │ │ ├── compose_toolbar_background.png │ │ │ │ │ ├── compose_toolbar_background@2x.png │ │ │ │ │ ├── empty_failed.png │ │ │ │ │ ├── empty_failed@2x.png │ │ │ │ │ ├── login_background@2x.png │ │ │ │ │ ├── login_country_background@2x.png │ │ │ │ │ ├── login_country_background_highlighted@2x.png │ │ │ │ │ ├── navigationbar_background.png │ │ │ │ │ ├── navigationbar_background@2x.png │ │ │ │ │ ├── navigationbar_background_os7.png │ │ │ │ │ ├── navigationbar_background_os7@2x.png │ │ │ │ │ ├── progresshud_background@2x.png │ │ │ │ │ ├── sdk_weibo_logo.png │ │ │ │ │ ├── sdk_weibo_logo@2x.png │ │ │ │ │ ├── sdk_weibo_logo@3x.png │ │ │ │ │ ├── timeline_relationship_icon_addattention.png │ │ │ │ │ ├── timeline_relationship_icon_addattention@2x.png │ │ │ │ │ ├── timeline_relationship_icon_addattention@3x.png │ │ │ │ │ ├── timeline_relationship_icon_attention.png │ │ │ │ │ ├── timeline_relationship_icon_attention@2x.png │ │ │ │ │ ├── timeline_relationship_icon_attention@3x.png │ │ │ │ │ ├── verify_code_button@2x.png │ │ │ │ │ ├── verify_code_button@3x.png │ │ │ │ │ ├── verify_code_button_highlighted@2x.png │ │ │ │ │ └── verify_code_button_highlighted@3x.png │ │ │ │ └── others │ │ │ │ │ ├── countryList │ │ │ │ │ └── mfp.cer │ │ │ ├── WeiboSDK.h │ │ │ ├── WeiboUser.h │ │ │ ├── libSocialSinaSSO.a │ │ │ └── libWeiboSDK.a │ │ ├── TencentOpenAPI │ │ │ ├── .DS_Store │ │ │ ├── TencentOpenAPI.framework │ │ │ │ ├── Headers │ │ │ │ │ ├── QQApiInterface.h │ │ │ │ │ ├── QQApiInterfaceObject.h │ │ │ │ │ ├── TencentApiInterface.h │ │ │ │ │ ├── TencentMessageObject.h │ │ │ │ │ ├── TencentOAuth.h │ │ │ │ │ ├── TencentOAuthObject.h │ │ │ │ │ └── sdkdef.h │ │ │ │ ├── Resources │ │ │ │ │ └── ios_open_sdk_3.1.0.3_iphone │ │ │ │ └── TencentOpenAPI │ │ │ ├── TencentOpenApi_IOS_Bundle.bundle │ │ │ │ ├── error.png │ │ │ │ ├── local.html │ │ │ │ ├── qqicon.png │ │ │ │ └── success.png │ │ │ ├── UMSocialQQHandler.h │ │ │ └── libSocialQQ.a │ │ └── Wechat │ │ │ ├── .DS_Store │ │ │ ├── README.txt │ │ │ ├── UMSocialWechatHandler.h │ │ │ ├── WXApi.h │ │ │ ├── WXApiObject.h │ │ │ ├── WechatAuthSDK.h │ │ │ ├── libSocialWechat.a │ │ │ └── libWeChatSDK.a │ │ └── UMSocial_Sdk_Instructions │ │ ├── .DS_Store │ │ ├── iOS-social-analytics-releasenote.html │ │ ├── iOS-social-releasenote.html │ │ ├── ios-social-sdk-comment-detail.html │ │ ├── ios-social-sdk-comment-quick.html │ │ ├── ios-social-sdk-like.html │ │ ├── ios-social-sdk-login-detail.html │ │ ├── ios-social-sdk-login-quick.html │ │ ├── ios-social-sdk-shake.html │ │ ├── ios-social-sdk-share-detail.html │ │ ├── ios-social-sdk-share-quick.html │ │ ├── ios-social-sdk-socialbar.html │ │ └── markdown.css ├── Macro.h ├── Models │ ├── .DS_Store │ ├── ArticleCommentModel.h │ ├── ArticleCommentModel.m │ ├── ArticleDetailModel.h │ ├── ArticleDetailModel.m │ ├── ArticleModel.h │ ├── ArticleModel.m │ ├── Funny.xcdatamodeld │ │ ├── Entities │ │ │ ├── ArticleModel_CoreData+CoreDataProperties.h │ │ │ ├── ArticleModel_CoreData+CoreDataProperties.m │ │ │ ├── ArticleModel_CoreData.h │ │ │ ├── ArticleModel_CoreData.m │ │ │ ├── ArticleModel_Read_CoreData+CoreDataProperties.h │ │ │ ├── ArticleModel_Read_CoreData+CoreDataProperties.m │ │ │ ├── ArticleModel_Read_CoreData.h │ │ │ ├── ArticleModel_Read_CoreData.m │ │ │ ├── BoardPictureModel_CoreData+CoreDataProperties.h │ │ │ ├── BoardPictureModel_CoreData+CoreDataProperties.m │ │ │ ├── BoardPictureModel_CoreData.h │ │ │ ├── BoardPictureModel_CoreData.m │ │ │ ├── CoreData.h │ │ │ ├── JokeModel_CoreData+CoreDataProperties.h │ │ │ ├── JokeModel_CoreData+CoreDataProperties.m │ │ │ ├── JokeModel_CoreData.h │ │ │ ├── JokeModel_CoreData.m │ │ │ ├── SisterPictureModel_CoreData+CoreDataProperties.h │ │ │ ├── SisterPictureModel_CoreData+CoreDataProperties.m │ │ │ ├── SisterPictureModel_CoreData.h │ │ │ ├── SisterPictureModel_CoreData.m │ │ │ ├── VideoModel_CoreData+CoreDataProperties.h │ │ │ ├── VideoModel_CoreData+CoreDataProperties.m │ │ │ ├── VideoModel_CoreData.h │ │ │ └── VideoModel_CoreData.m │ │ └── Funny.xcdatamodel │ │ │ └── contents │ ├── JokeModel.h │ ├── JokeModel.m │ ├── Models.h │ ├── PicCommentMode.m │ ├── PicCommentModel.h │ ├── PictureModel.h │ ├── PictureModel.m │ ├── PictureSourceModel.h │ ├── PictureSourceModel.m │ ├── VideoModel.h │ └── VideoModel.m ├── PrefixHeader.pch ├── ViewController │ ├── .DS_Store │ ├── AgreementController.h │ ├── AgreementController.m │ ├── ArticleCell.h │ ├── ArticleCell.m │ ├── ArticleController.h │ ├── ArticleController.m │ ├── ArticleDetailController.h │ ├── ArticleDetailController.m │ ├── ArticleDetailView.h │ ├── ArticleDetailView.m │ ├── ArticlePagerController.h │ ├── ArticlePagerController.m │ ├── AuthorController.h │ ├── AuthorController.m │ ├── CenterController.h │ ├── CenterController.m │ ├── CommentBarView.h │ ├── CommentBarView.m │ ├── CommentCell.h │ ├── CommentCell.m │ ├── DonationController.h │ ├── DonationController.m │ ├── FavController.h │ ├── FavController.m │ ├── FavMenuSortController.h │ ├── FavMenuSortController.m │ ├── Images │ │ ├── .DS_Store │ │ ├── QQ@2x.png │ │ ├── QQZone@2x.png │ │ ├── QQZone_click@2x.png │ │ ├── QQ_click@2x.png │ │ ├── copyLink@2x.png │ │ ├── copyLink_click@2x.png │ │ ├── download@2x.png │ │ ├── download_click@2x.png │ │ ├── favorite@2x.png │ │ ├── favorite_click@2x.png │ │ ├── favorited@2x.png │ │ ├── favorited_click@2x.png │ │ ├── report@2x.png │ │ ├── report_Click@2x.png │ │ ├── share_pengyou@2x.png │ │ ├── share_pengyou_click@2x.png │ │ ├── sinaWeibo@2x.png │ │ ├── sinaWeibo_click@2x.png │ │ ├── weixin@2x.png │ │ └── weixin_click@2x.png │ ├── JokeCell.h │ ├── JokeCell.m │ ├── JokeController.h │ ├── JokeController.m │ ├── JokeDetailController.h │ ├── JokeDetailController.m │ ├── JokeDetailView.h │ ├── JokeDetailView.m │ ├── JokePagerController.h │ ├── JokePagerController.m │ ├── LeftCell.h │ ├── LeftCell.m │ ├── LeftController.h │ ├── LeftController.m │ ├── LeftMenuSortController.h │ ├── LeftMenuSortController.m │ ├── PictureCell.h │ ├── PictureCell.m │ ├── PictureController.h │ ├── PictureController.m │ ├── PictureDetailController.h │ ├── PictureDetailController.m │ ├── PictureDetailView.h │ ├── PictureDetailView.m │ ├── PicturePagerController.h │ ├── PicturePagerController.m │ ├── SettingCell.h │ ├── SettingCell.m │ ├── SettingController.h │ ├── SettingController.m │ ├── SettingManager.h │ ├── SettingManager.m │ ├── ShareView.h │ ├── ShareView.m │ ├── ThemeColor.txt │ ├── ThemeManager.h │ ├── UserManager.h │ ├── UserManager.m │ ├── VideoCell.h │ ├── VideoCell.m │ ├── VideoController.h │ ├── VideoController.m │ ├── VideoPagerController.h │ ├── VideoPagerController.m │ ├── ZHPagerController.h │ ├── ZHPagerController.m │ ├── ZHPagerHeaderView.h │ ├── ZHPagerHeaderView.m │ ├── ZHPagerLongView.h │ ├── ZHPagerLongView.m │ ├── ZHPagerView.h │ └── ZHPagerView.m ├── ViewModels │ ├── ArticleCommentViewModel.h │ ├── ArticleCommentViewModel.m │ ├── ArticleDetailViewModel.h │ ├── ArticleDetailViewModel.m │ ├── ArticleViewModel.h │ ├── ArticleViewModel.m │ ├── JokeViewModel.h │ ├── JokeViewModel.m │ ├── NetReturnValue.h │ ├── NetReturnValue.m │ ├── PicCommentViewModel.h │ ├── PicCommentViewModel.m │ ├── PictureViewModel.h │ ├── PictureViewModel.m │ ├── VideoViewModel.h │ ├── VideoViewModel.m │ ├── ViewBaseModel.h │ ├── ViewBaseModel.m │ └── ViewModels.h └── main.m ├── FunnyProjectTests ├── Info.plist └── ViewModelTests.m ├── FunnyProjectUITests ├── FunnyProjectUITests.m └── Info.plist ├── Podfile ├── Podfile.lock ├── Pods ├── .DS_Store ├── AFNetworking │ ├── AFNetworking │ │ ├── AFHTTPSessionManager.h │ │ ├── AFHTTPSessionManager.m │ │ ├── AFNetworkReachabilityManager.h │ │ ├── AFNetworkReachabilityManager.m │ │ ├── AFNetworking.h │ │ ├── AFSecurityPolicy.h │ │ ├── AFSecurityPolicy.m │ │ ├── AFURLRequestSerialization.h │ │ ├── AFURLRequestSerialization.m │ │ ├── AFURLResponseSerialization.h │ │ ├── AFURLResponseSerialization.m │ │ ├── AFURLSessionManager.h │ │ └── AFURLSessionManager.m │ ├── LICENSE │ ├── README.md │ └── UIKit+AFNetworking │ │ ├── AFAutoPurgingImageCache.h │ │ ├── AFAutoPurgingImageCache.m │ │ ├── AFImageDownloader.h │ │ ├── AFImageDownloader.m │ │ ├── AFNetworkActivityIndicatorManager.h │ │ ├── AFNetworkActivityIndicatorManager.m │ │ ├── UIActivityIndicatorView+AFNetworking.h │ │ ├── UIActivityIndicatorView+AFNetworking.m │ │ ├── UIButton+AFNetworking.h │ │ ├── UIButton+AFNetworking.m │ │ ├── UIImage+AFNetworking.h │ │ ├── UIImageView+AFNetworking.h │ │ ├── UIImageView+AFNetworking.m │ │ ├── UIKit+AFNetworking.h │ │ ├── UIProgressView+AFNetworking.h │ │ ├── UIProgressView+AFNetworking.m │ │ ├── UIRefreshControl+AFNetworking.h │ │ ├── UIRefreshControl+AFNetworking.m │ │ ├── UIWebView+AFNetworking.h │ │ └── UIWebView+AFNetworking.m ├── ActionSheetPicker-3.0 │ ├── LICENSE │ ├── Pickers │ │ ├── AbstractActionSheetPicker.h │ │ ├── AbstractActionSheetPicker.m │ │ ├── ActionSheetCustomPicker.h │ │ ├── ActionSheetCustomPicker.m │ │ ├── ActionSheetCustomPickerDelegate.h │ │ ├── ActionSheetDatePicker.h │ │ ├── ActionSheetDatePicker.m │ │ ├── ActionSheetDistancePicker.h │ │ ├── ActionSheetDistancePicker.m │ │ ├── ActionSheetLocalePicker.h │ │ ├── ActionSheetLocalePicker.m │ │ ├── ActionSheetMultipleStringPicker.h │ │ ├── ActionSheetMultipleStringPicker.m │ │ ├── ActionSheetPicker.h │ │ ├── ActionSheetStringPicker.h │ │ ├── ActionSheetStringPicker.m │ │ ├── DistancePickerView.h │ │ ├── DistancePickerView.m │ │ ├── SWActionSheet.h │ │ └── SWActionSheet.m │ └── README.md ├── DKNightVersion │ ├── DKNightVersion │ │ ├── ColorTable │ │ │ ├── DKColorTable.h │ │ │ ├── DKColorTable.m │ │ │ └── DKColorTable.txt │ │ ├── Core │ │ │ ├── DKColor.h │ │ │ ├── DKColor.m │ │ │ ├── DKImage.h │ │ │ ├── DKImage.m │ │ │ ├── DKNightVersionManager.h │ │ │ ├── DKNightVersionManager.m │ │ │ ├── NSObject+Night.h │ │ │ └── NSObject+Night.m │ │ ├── CoreAnimation │ │ │ ├── CALayer+Night.h │ │ │ ├── CALayer+Night.m │ │ │ └── CoreAnimation+Night.h │ │ ├── DKNightVersion.h │ │ ├── DeallocBlockExecutor │ │ │ ├── DKDeallocBlockExecutor.h │ │ │ ├── DKDeallocBlockExecutor.m │ │ │ ├── NSObject+DeallocBlock.h │ │ │ └── NSObject+DeallocBlock.m │ │ ├── Manual │ │ │ ├── UIButton+Night.h │ │ │ ├── UIButton+Night.m │ │ │ ├── UIImageView+Night.h │ │ │ ├── UIImageView+Night.m │ │ │ ├── UINavigationBar+Animation.h │ │ │ ├── UINavigationBar+Animation.m │ │ │ ├── UISearchBar+Keyboard.h │ │ │ ├── UISearchBar+Keyboard.m │ │ │ ├── UITextField+Keyboard.h │ │ │ ├── UITextField+Keyboard.m │ │ │ ├── UITextView+Keyboard.h │ │ │ └── UITextView+Keyboard.m │ │ ├── UIKit │ │ │ ├── UIBarButtonItem+Night.h │ │ │ ├── UIBarButtonItem+Night.m │ │ │ ├── UIControl+Night.h │ │ │ ├── UIControl+Night.m │ │ │ ├── UILabel+Night.h │ │ │ ├── UILabel+Night.m │ │ │ ├── UINavigationBar+Night.h │ │ │ ├── UINavigationBar+Night.m │ │ │ ├── UIPageControl+Night.h │ │ │ ├── UIPageControl+Night.m │ │ │ ├── UIProgressView+Night.h │ │ │ ├── UIProgressView+Night.m │ │ │ ├── UISearchBar+Night.h │ │ │ ├── UISearchBar+Night.m │ │ │ ├── UISlider+Night.h │ │ │ ├── UISlider+Night.m │ │ │ ├── UISwitch+Night.h │ │ │ ├── UISwitch+Night.m │ │ │ ├── UITabBar+Night.h │ │ │ ├── UITabBar+Night.m │ │ │ ├── UITableView+Night.h │ │ │ ├── UITableView+Night.m │ │ │ ├── UITextField+Night.h │ │ │ ├── UITextField+Night.m │ │ │ ├── UITextView+Night.h │ │ │ ├── UITextView+Night.m │ │ │ ├── UIToolbar+Night.h │ │ │ ├── UIToolbar+Night.m │ │ │ ├── UIView+Night.h │ │ │ └── UIView+Night.m │ │ └── extobjc │ │ │ ├── EXTKeyPathCoding.h │ │ │ └── metamacros.h │ ├── LICENSE │ └── README.md ├── DZNEmptyDataSet │ ├── LICENSE │ ├── README.md │ └── Source │ │ ├── UIScrollView+EmptyDataSet.h │ │ └── UIScrollView+EmptyDataSet.m ├── EAIntroView │ ├── EAIntroView │ │ ├── EAIntroPage.h │ │ ├── EAIntroPage.m │ │ ├── EAIntroView.h │ │ └── EAIntroView.m │ ├── LICENSE │ └── README.md ├── EARestrictedScrollView │ ├── EARestrictedScrollView │ │ ├── EARestrictedScrollView.h │ │ └── EARestrictedScrollView.m │ ├── LICENSE │ └── README.md ├── FMDB │ ├── LICENSE.txt │ ├── README.markdown │ └── src │ │ └── fmdb │ │ ├── FMDB.h │ │ ├── FMDatabase.h │ │ ├── FMDatabase.m │ │ ├── FMDatabaseAdditions.h │ │ ├── FMDatabaseAdditions.m │ │ ├── FMDatabasePool.h │ │ ├── FMDatabasePool.m │ │ ├── FMDatabaseQueue.h │ │ ├── FMDatabaseQueue.m │ │ ├── FMResultSet.h │ │ └── FMResultSet.m ├── Headers │ ├── Private │ │ ├── AFNetworking │ │ │ ├── AFAutoPurgingImageCache.h │ │ │ ├── AFHTTPSessionManager.h │ │ │ ├── AFImageDownloader.h │ │ │ ├── AFNetworkActivityIndicatorManager.h │ │ │ ├── AFNetworkReachabilityManager.h │ │ │ ├── AFNetworking.h │ │ │ ├── AFSecurityPolicy.h │ │ │ ├── AFURLRequestSerialization.h │ │ │ ├── AFURLResponseSerialization.h │ │ │ ├── AFURLSessionManager.h │ │ │ ├── UIActivityIndicatorView+AFNetworking.h │ │ │ ├── UIButton+AFNetworking.h │ │ │ ├── UIImage+AFNetworking.h │ │ │ ├── UIImageView+AFNetworking.h │ │ │ ├── UIKit+AFNetworking.h │ │ │ ├── UIProgressView+AFNetworking.h │ │ │ ├── UIRefreshControl+AFNetworking.h │ │ │ └── UIWebView+AFNetworking.h │ │ ├── ActionSheetPicker-3.0 │ │ │ ├── AbstractActionSheetPicker.h │ │ │ ├── ActionSheetCustomPicker.h │ │ │ ├── ActionSheetCustomPickerDelegate.h │ │ │ ├── ActionSheetDatePicker.h │ │ │ ├── ActionSheetDistancePicker.h │ │ │ ├── ActionSheetLocalePicker.h │ │ │ ├── ActionSheetMultipleStringPicker.h │ │ │ ├── ActionSheetPicker.h │ │ │ ├── ActionSheetStringPicker.h │ │ │ ├── DistancePickerView.h │ │ │ └── SWActionSheet.h │ │ ├── DKNightVersion │ │ │ ├── CALayer+Night.h │ │ │ ├── CoreAnimation+Night.h │ │ │ ├── DKColor.h │ │ │ ├── DKColorTable.h │ │ │ ├── DKDeallocBlockExecutor.h │ │ │ ├── DKImage.h │ │ │ ├── DKNightVersion.h │ │ │ ├── DKNightVersionManager.h │ │ │ ├── EXTKeyPathCoding.h │ │ │ ├── NSObject+DeallocBlock.h │ │ │ ├── NSObject+Night.h │ │ │ ├── UIBarButtonItem+Night.h │ │ │ ├── UIButton+Night.h │ │ │ ├── UIControl+Night.h │ │ │ ├── UIImageView+Night.h │ │ │ ├── UILabel+Night.h │ │ │ ├── UINavigationBar+Animation.h │ │ │ ├── UINavigationBar+Night.h │ │ │ ├── UIPageControl+Night.h │ │ │ ├── UIProgressView+Night.h │ │ │ ├── UISearchBar+Keyboard.h │ │ │ ├── UISearchBar+Night.h │ │ │ ├── UISlider+Night.h │ │ │ ├── UISwitch+Night.h │ │ │ ├── UITabBar+Night.h │ │ │ ├── UITableView+Night.h │ │ │ ├── UITextField+Keyboard.h │ │ │ ├── UITextField+Night.h │ │ │ ├── UITextView+Keyboard.h │ │ │ ├── UITextView+Night.h │ │ │ ├── UIToolbar+Night.h │ │ │ ├── UIView+Night.h │ │ │ └── metamacros.h │ │ ├── DZNEmptyDataSet │ │ │ └── UIScrollView+EmptyDataSet.h │ │ ├── EAIntroView │ │ │ ├── EAIntroPage.h │ │ │ └── EAIntroView.h │ │ ├── EARestrictedScrollView │ │ │ └── EARestrictedScrollView.h │ │ ├── FMDB │ │ │ ├── FMDB.h │ │ │ ├── FMDatabase.h │ │ │ ├── FMDatabaseAdditions.h │ │ │ ├── FMDatabasePool.h │ │ │ ├── FMDatabaseQueue.h │ │ │ └── FMResultSet.h │ │ ├── IQKeyboardManager │ │ │ ├── IQBarButtonItem.h │ │ │ ├── IQKeyboardManager.h │ │ │ ├── IQKeyboardManagerConstants.h │ │ │ ├── IQKeyboardManagerConstantsInternal.h │ │ │ ├── IQKeyboardReturnKeyHandler.h │ │ │ ├── IQNSArray+Sort.h │ │ │ ├── IQTextView.h │ │ │ ├── IQTitleBarButtonItem.h │ │ │ ├── IQToolbar.h │ │ │ ├── IQUIScrollView+Additions.h │ │ │ ├── IQUITextFieldView+Additions.h │ │ │ ├── IQUIView+Hierarchy.h │ │ │ ├── IQUIView+IQKeyboardToolbar.h │ │ │ ├── IQUIViewController+Additions.h │ │ │ ├── IQUIWindow+Hierarchy.h │ │ │ └── KeyboardManager.h │ │ ├── JSONModel │ │ │ ├── JSONAPI.h │ │ │ ├── JSONHTTPClient.h │ │ │ ├── JSONKeyMapper.h │ │ │ ├── JSONModel+networking.h │ │ │ ├── JSONModel.h │ │ │ ├── JSONModelArray.h │ │ │ ├── JSONModelClassProperty.h │ │ │ ├── JSONModelError.h │ │ │ ├── JSONModelLib.h │ │ │ ├── JSONValueTransformer.h │ │ │ └── NSArray+JSONModel.h │ │ ├── MBProgressHUD │ │ │ └── MBProgressHUD.h │ │ ├── MJRefresh │ │ │ ├── MJRefresh.h │ │ │ ├── MJRefreshAutoFooter.h │ │ │ ├── MJRefreshAutoGifFooter.h │ │ │ ├── MJRefreshAutoNormalFooter.h │ │ │ ├── MJRefreshAutoStateFooter.h │ │ │ ├── MJRefreshBackFooter.h │ │ │ ├── MJRefreshBackGifFooter.h │ │ │ ├── MJRefreshBackNormalFooter.h │ │ │ ├── MJRefreshBackStateFooter.h │ │ │ ├── MJRefreshComponent.h │ │ │ ├── MJRefreshConst.h │ │ │ ├── MJRefreshFooter.h │ │ │ ├── MJRefreshGifHeader.h │ │ │ ├── MJRefreshHeader.h │ │ │ ├── MJRefreshNormalHeader.h │ │ │ ├── MJRefreshStateHeader.h │ │ │ ├── UIScrollView+MJExtension.h │ │ │ ├── UIScrollView+MJRefresh.h │ │ │ └── UIView+MJExtension.h │ │ ├── MRProgress │ │ │ ├── MRActivityIndicatorView.h │ │ │ ├── MRBlurView.h │ │ │ ├── MRCircularProgressView.h │ │ │ ├── MRIconView.h │ │ │ ├── MRNavigationBarProgressView.h │ │ │ ├── MRProgress.h │ │ │ ├── MRProgressHelper.h │ │ │ ├── MRProgressOverlayView.h │ │ │ ├── MRProgressView.h │ │ │ ├── MRStopButton.h │ │ │ ├── MRStopableView.h │ │ │ └── UIImage+MRImageEffects.h │ │ ├── MagicalRecord │ │ │ └── MagicalRecord │ │ │ │ ├── MagicalImportFunctions.h │ │ │ │ ├── MagicalRecord+Actions.h │ │ │ │ ├── MagicalRecord+ErrorHandling.h │ │ │ │ ├── MagicalRecord+Options.h │ │ │ │ ├── MagicalRecord+Setup.h │ │ │ │ ├── MagicalRecord+ShorthandMethods.h │ │ │ │ ├── MagicalRecord+iCloud.h │ │ │ │ ├── MagicalRecord.h │ │ │ │ ├── MagicalRecordDeprecationMacros.h │ │ │ │ ├── MagicalRecordInternal.h │ │ │ │ ├── MagicalRecordLogging.h │ │ │ │ ├── MagicalRecordXcode7CompatibilityMacros.h │ │ │ │ ├── NSAttributeDescription+MagicalDataImport.h │ │ │ │ ├── NSEntityDescription+MagicalDataImport.h │ │ │ │ ├── NSManagedObject+MagicalAggregation.h │ │ │ │ ├── NSManagedObject+MagicalDataImport.h │ │ │ │ ├── NSManagedObject+MagicalFinders.h │ │ │ │ ├── NSManagedObject+MagicalRecord.h │ │ │ │ ├── NSManagedObject+MagicalRequests.h │ │ │ │ ├── NSManagedObjectContext+MagicalChainSave.h │ │ │ │ ├── NSManagedObjectContext+MagicalObserving.h │ │ │ │ ├── NSManagedObjectContext+MagicalRecord.h │ │ │ │ ├── NSManagedObjectContext+MagicalSaves.h │ │ │ │ ├── NSManagedObjectContext+MagicalThreading.h │ │ │ │ ├── NSManagedObjectModel+MagicalRecord.h │ │ │ │ ├── NSNumber+MagicalDataImport.h │ │ │ │ ├── NSObject+MagicalDataImport.h │ │ │ │ ├── NSPersistentStore+MagicalRecord.h │ │ │ │ ├── NSPersistentStoreCoordinator+MagicalRecord.h │ │ │ │ ├── NSRelationshipDescription+MagicalDataImport.h │ │ │ │ └── NSString+MagicalDataImport.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 │ │ ├── NJKWebViewProgress │ │ │ ├── NJKWebViewProgress.h │ │ │ └── NJKWebViewProgressView.h │ │ ├── PopMenu │ │ │ ├── GlowImageView.h │ │ │ ├── MenuButton.h │ │ │ ├── MenuItem.h │ │ │ └── PopMenu.h │ │ ├── PureLayout │ │ │ ├── ALView+PureLayout.h │ │ │ ├── NSArray+PureLayout.h │ │ │ ├── NSLayoutConstraint+PureLayout.h │ │ │ ├── PureLayout+Internal.h │ │ │ ├── PureLayout.h │ │ │ └── PureLayoutDefines.h │ │ ├── QBPopupMenu │ │ │ ├── QBPlasticPopupMenu.h │ │ │ ├── QBPopupMenu.h │ │ │ ├── QBPopupMenuItem.h │ │ │ ├── QBPopupMenuItemView.h │ │ │ ├── QBPopupMenuOverlayView.h │ │ │ └── QBPopupMenuPagenatorView.h │ │ ├── RDVTabBarController │ │ │ ├── RDVTabBar.h │ │ │ ├── RDVTabBarController.h │ │ │ └── RDVTabBarItem.h │ │ ├── TTTAttributedLabel │ │ │ └── TTTAttributedLabel.h │ │ ├── ViewDeck │ │ │ ├── IISideController.h │ │ │ ├── IIViewDeckController.h │ │ │ ├── IIWrapController.h │ │ │ └── ViewDeck.h │ │ ├── XHRealTimeBlur │ │ │ └── XHRealTimeBlur.h │ │ ├── ZipArchive │ │ │ ├── ZipArchive.h │ │ │ ├── crypt.h │ │ │ ├── ioapi.h │ │ │ ├── mztools.h │ │ │ ├── unzip.h │ │ │ └── zip.h │ │ ├── iRate │ │ │ └── iRate.h │ │ └── pop │ │ │ ├── FloatConversion.h │ │ │ ├── POP.h │ │ │ ├── POPAction.h │ │ │ ├── POPAnimatableProperty.h │ │ │ ├── POPAnimation.h │ │ │ ├── POPAnimationEvent.h │ │ │ ├── POPAnimationEventInternal.h │ │ │ ├── POPAnimationExtras.h │ │ │ ├── POPAnimationInternal.h │ │ │ ├── POPAnimationPrivate.h │ │ │ ├── POPAnimationRuntime.h │ │ │ ├── POPAnimationTracer.h │ │ │ ├── POPAnimationTracerInternal.h │ │ │ ├── POPAnimator.h │ │ │ ├── POPAnimatorPrivate.h │ │ │ ├── POPBasicAnimation.h │ │ │ ├── POPBasicAnimationInternal.h │ │ │ ├── POPCGUtils.h │ │ │ ├── POPCustomAnimation.h │ │ │ ├── POPDecayAnimation.h │ │ │ ├── POPDecayAnimationInternal.h │ │ │ ├── POPDefines.h │ │ │ ├── POPGeometry.h │ │ │ ├── POPLayerExtras.h │ │ │ ├── POPMath.h │ │ │ ├── POPPropertyAnimation.h │ │ │ ├── POPPropertyAnimationInternal.h │ │ │ ├── POPSpringAnimation.h │ │ │ ├── POPSpringAnimationInternal.h │ │ │ ├── POPSpringSolver.h │ │ │ ├── POPVector.h │ │ │ ├── TransformationMatrix.h │ │ │ └── UnitBezier.h │ └── Public │ │ ├── AFNetworking │ │ ├── AFAutoPurgingImageCache.h │ │ ├── AFHTTPSessionManager.h │ │ ├── AFImageDownloader.h │ │ ├── AFNetworkActivityIndicatorManager.h │ │ ├── AFNetworkReachabilityManager.h │ │ ├── AFNetworking.h │ │ ├── AFSecurityPolicy.h │ │ ├── AFURLRequestSerialization.h │ │ ├── AFURLResponseSerialization.h │ │ ├── AFURLSessionManager.h │ │ ├── UIActivityIndicatorView+AFNetworking.h │ │ ├── UIButton+AFNetworking.h │ │ ├── UIImage+AFNetworking.h │ │ ├── UIImageView+AFNetworking.h │ │ ├── UIKit+AFNetworking.h │ │ ├── UIProgressView+AFNetworking.h │ │ ├── UIRefreshControl+AFNetworking.h │ │ └── UIWebView+AFNetworking.h │ │ ├── ActionSheetPicker-3.0 │ │ ├── AbstractActionSheetPicker.h │ │ ├── ActionSheetCustomPicker.h │ │ ├── ActionSheetCustomPickerDelegate.h │ │ ├── ActionSheetDatePicker.h │ │ ├── ActionSheetDistancePicker.h │ │ ├── ActionSheetLocalePicker.h │ │ ├── ActionSheetMultipleStringPicker.h │ │ ├── ActionSheetPicker.h │ │ ├── ActionSheetStringPicker.h │ │ ├── DistancePickerView.h │ │ └── SWActionSheet.h │ │ ├── DKNightVersion │ │ ├── CALayer+Night.h │ │ ├── CoreAnimation+Night.h │ │ ├── DKColor.h │ │ ├── DKColorTable.h │ │ ├── DKDeallocBlockExecutor.h │ │ ├── DKImage.h │ │ ├── DKNightVersion.h │ │ ├── DKNightVersionManager.h │ │ ├── EXTKeyPathCoding.h │ │ ├── NSObject+DeallocBlock.h │ │ ├── NSObject+Night.h │ │ ├── UIBarButtonItem+Night.h │ │ ├── UIButton+Night.h │ │ ├── UIControl+Night.h │ │ ├── UIImageView+Night.h │ │ ├── UILabel+Night.h │ │ ├── UINavigationBar+Animation.h │ │ ├── UINavigationBar+Night.h │ │ ├── UIPageControl+Night.h │ │ ├── UIProgressView+Night.h │ │ ├── UISearchBar+Keyboard.h │ │ ├── UISearchBar+Night.h │ │ ├── UISlider+Night.h │ │ ├── UISwitch+Night.h │ │ ├── UITabBar+Night.h │ │ ├── UITableView+Night.h │ │ ├── UITextField+Keyboard.h │ │ ├── UITextField+Night.h │ │ ├── UITextView+Keyboard.h │ │ ├── UITextView+Night.h │ │ ├── UIToolbar+Night.h │ │ ├── UIView+Night.h │ │ └── metamacros.h │ │ ├── DZNEmptyDataSet │ │ └── UIScrollView+EmptyDataSet.h │ │ ├── EAIntroView │ │ ├── EAIntroPage.h │ │ └── EAIntroView.h │ │ ├── EARestrictedScrollView │ │ └── EARestrictedScrollView.h │ │ ├── FMDB │ │ ├── FMDB.h │ │ ├── FMDatabase.h │ │ ├── FMDatabaseAdditions.h │ │ ├── FMDatabasePool.h │ │ ├── FMDatabaseQueue.h │ │ └── FMResultSet.h │ │ ├── IQKeyboardManager │ │ ├── IQBarButtonItem.h │ │ ├── IQKeyboardManager.h │ │ ├── IQKeyboardManagerConstants.h │ │ ├── IQKeyboardManagerConstantsInternal.h │ │ ├── IQKeyboardReturnKeyHandler.h │ │ ├── IQNSArray+Sort.h │ │ ├── IQTextView.h │ │ ├── IQTitleBarButtonItem.h │ │ ├── IQToolbar.h │ │ ├── IQUIScrollView+Additions.h │ │ ├── IQUITextFieldView+Additions.h │ │ ├── IQUIView+Hierarchy.h │ │ ├── IQUIView+IQKeyboardToolbar.h │ │ ├── IQUIViewController+Additions.h │ │ ├── IQUIWindow+Hierarchy.h │ │ └── KeyboardManager.h │ │ ├── JSONModel │ │ ├── JSONAPI.h │ │ ├── JSONHTTPClient.h │ │ ├── JSONKeyMapper.h │ │ ├── JSONModel+networking.h │ │ ├── JSONModel.h │ │ ├── JSONModelArray.h │ │ ├── JSONModelClassProperty.h │ │ ├── JSONModelError.h │ │ ├── JSONModelLib.h │ │ ├── JSONValueTransformer.h │ │ └── NSArray+JSONModel.h │ │ ├── MBProgressHUD │ │ └── MBProgressHUD.h │ │ ├── MJRefresh │ │ ├── MJRefresh.h │ │ ├── MJRefreshAutoFooter.h │ │ ├── MJRefreshAutoGifFooter.h │ │ ├── MJRefreshAutoNormalFooter.h │ │ ├── MJRefreshAutoStateFooter.h │ │ ├── MJRefreshBackFooter.h │ │ ├── MJRefreshBackGifFooter.h │ │ ├── MJRefreshBackNormalFooter.h │ │ ├── MJRefreshBackStateFooter.h │ │ ├── MJRefreshComponent.h │ │ ├── MJRefreshConst.h │ │ ├── MJRefreshFooter.h │ │ ├── MJRefreshGifHeader.h │ │ ├── MJRefreshHeader.h │ │ ├── MJRefreshNormalHeader.h │ │ ├── MJRefreshStateHeader.h │ │ ├── UIScrollView+MJExtension.h │ │ ├── UIScrollView+MJRefresh.h │ │ └── UIView+MJExtension.h │ │ ├── MRProgress │ │ ├── MRActivityIndicatorView.h │ │ ├── MRBlurView.h │ │ ├── MRCircularProgressView.h │ │ ├── MRIconView.h │ │ ├── MRNavigationBarProgressView.h │ │ ├── MRProgress.h │ │ ├── MRProgressHelper.h │ │ ├── MRProgressOverlayView.h │ │ ├── MRProgressView.h │ │ ├── MRStopButton.h │ │ ├── MRStopableView.h │ │ └── UIImage+MRImageEffects.h │ │ ├── MagicalRecord │ │ └── MagicalRecord │ │ │ ├── MagicalImportFunctions.h │ │ │ ├── MagicalRecord+Actions.h │ │ │ ├── MagicalRecord+ErrorHandling.h │ │ │ ├── MagicalRecord+Options.h │ │ │ ├── MagicalRecord+Setup.h │ │ │ ├── MagicalRecord+ShorthandMethods.h │ │ │ ├── MagicalRecord+iCloud.h │ │ │ ├── MagicalRecord.h │ │ │ ├── MagicalRecordDeprecationMacros.h │ │ │ ├── MagicalRecordInternal.h │ │ │ ├── MagicalRecordLogging.h │ │ │ ├── MagicalRecordXcode7CompatibilityMacros.h │ │ │ ├── NSAttributeDescription+MagicalDataImport.h │ │ │ ├── NSEntityDescription+MagicalDataImport.h │ │ │ ├── NSManagedObject+MagicalAggregation.h │ │ │ ├── NSManagedObject+MagicalDataImport.h │ │ │ ├── NSManagedObject+MagicalFinders.h │ │ │ ├── NSManagedObject+MagicalRecord.h │ │ │ ├── NSManagedObject+MagicalRequests.h │ │ │ ├── NSManagedObjectContext+MagicalChainSave.h │ │ │ ├── NSManagedObjectContext+MagicalObserving.h │ │ │ ├── NSManagedObjectContext+MagicalRecord.h │ │ │ ├── NSManagedObjectContext+MagicalSaves.h │ │ │ ├── NSManagedObjectContext+MagicalThreading.h │ │ │ ├── NSManagedObjectModel+MagicalRecord.h │ │ │ ├── NSNumber+MagicalDataImport.h │ │ │ ├── NSObject+MagicalDataImport.h │ │ │ ├── NSPersistentStore+MagicalRecord.h │ │ │ ├── NSPersistentStoreCoordinator+MagicalRecord.h │ │ │ ├── NSRelationshipDescription+MagicalDataImport.h │ │ │ └── NSString+MagicalDataImport.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 │ │ ├── NJKWebViewProgress │ │ ├── NJKWebViewProgress.h │ │ └── NJKWebViewProgressView.h │ │ ├── PopMenu │ │ ├── GlowImageView.h │ │ ├── MenuButton.h │ │ ├── MenuItem.h │ │ └── PopMenu.h │ │ ├── PureLayout │ │ ├── ALView+PureLayout.h │ │ ├── NSArray+PureLayout.h │ │ ├── NSLayoutConstraint+PureLayout.h │ │ ├── PureLayout+Internal.h │ │ ├── PureLayout.h │ │ └── PureLayoutDefines.h │ │ ├── QBPopupMenu │ │ ├── QBPlasticPopupMenu.h │ │ ├── QBPopupMenu.h │ │ ├── QBPopupMenuItem.h │ │ ├── QBPopupMenuItemView.h │ │ ├── QBPopupMenuOverlayView.h │ │ └── QBPopupMenuPagenatorView.h │ │ ├── RDVTabBarController │ │ ├── RDVTabBar.h │ │ ├── RDVTabBarController.h │ │ └── RDVTabBarItem.h │ │ ├── TTTAttributedLabel │ │ └── TTTAttributedLabel.h │ │ ├── ViewDeck │ │ ├── IISideController.h │ │ ├── IIViewDeckController.h │ │ ├── IIWrapController.h │ │ └── ViewDeck.h │ │ ├── XHRealTimeBlur │ │ └── XHRealTimeBlur.h │ │ ├── ZipArchive │ │ └── ZipArchive.h │ │ ├── iRate │ │ └── iRate.h │ │ └── pop │ │ ├── POP.h │ │ ├── POPAnimatableProperty.h │ │ ├── POPAnimation.h │ │ ├── POPAnimationEvent.h │ │ ├── POPAnimationExtras.h │ │ ├── POPAnimationTracer.h │ │ ├── POPAnimator.h │ │ ├── POPBasicAnimation.h │ │ ├── POPCustomAnimation.h │ │ ├── POPDecayAnimation.h │ │ ├── POPDefines.h │ │ ├── POPGeometry.h │ │ ├── POPLayerExtras.h │ │ ├── POPPropertyAnimation.h │ │ └── POPSpringAnimation.h ├── IQKeyboardManager │ ├── IQKeyBoardManager │ │ ├── Categories │ │ │ ├── IQNSArray+Sort.h │ │ │ ├── IQNSArray+Sort.m │ │ │ ├── IQUIScrollView+Additions.h │ │ │ ├── IQUIScrollView+Additions.m │ │ │ ├── IQUITextFieldView+Additions.h │ │ │ ├── IQUITextFieldView+Additions.m │ │ │ ├── IQUIView+Hierarchy.h │ │ │ ├── IQUIView+Hierarchy.m │ │ │ ├── IQUIViewController+Additions.h │ │ │ ├── IQUIViewController+Additions.m │ │ │ ├── IQUIWindow+Hierarchy.h │ │ │ └── IQUIWindow+Hierarchy.m │ │ ├── Constants │ │ │ ├── IQKeyboardManagerConstants.h │ │ │ └── IQKeyboardManagerConstantsInternal.h │ │ ├── IQKeyboardManager.h │ │ ├── IQKeyboardManager.m │ │ ├── IQKeyboardReturnKeyHandler.h │ │ ├── IQKeyboardReturnKeyHandler.m │ │ ├── IQTextView │ │ │ ├── IQTextView.h │ │ │ └── IQTextView.m │ │ ├── IQToolbar │ │ │ ├── IQBarButtonItem.h │ │ │ ├── IQBarButtonItem.m │ │ │ ├── IQTitleBarButtonItem.h │ │ │ ├── IQTitleBarButtonItem.m │ │ │ ├── IQToolbar.h │ │ │ ├── IQToolbar.m │ │ │ ├── IQUIView+IQKeyboardToolbar.h │ │ │ └── IQUIView+IQKeyboardToolbar.m │ │ ├── KeyboardManager.h │ │ └── Resources │ │ │ └── IQKeyboardManager.bundle │ │ │ ├── IQButtonBarArrowLeft.png │ │ │ ├── IQButtonBarArrowLeft@2x.png │ │ │ ├── IQButtonBarArrowLeft@3x.png │ │ │ ├── IQButtonBarArrowRight.png │ │ │ ├── IQButtonBarArrowRight@2x.png │ │ │ ├── IQButtonBarArrowRight@3x.png │ │ │ ├── de.lproj │ │ │ └── IQKeyboardManager.strings │ │ │ ├── en.lproj │ │ │ └── IQKeyboardManager.strings │ │ │ ├── es.lproj │ │ │ └── IQKeyboardManager.strings │ │ │ ├── fr.lproj │ │ │ └── IQKeyboardManager.strings │ │ │ ├── zh-Hans │ │ │ └── IQKeyboardManager.strings │ │ │ └── zh-Hant │ │ │ └── IQKeyboardManager.strings │ ├── LICENSE.md │ └── README.md ├── JSONModel │ ├── JSONModel │ │ ├── JSONModel │ │ │ ├── JSONModel.h │ │ │ ├── JSONModel.m │ │ │ ├── JSONModelArray.h │ │ │ ├── JSONModelArray.m │ │ │ ├── JSONModelClassProperty.h │ │ │ ├── JSONModelClassProperty.m │ │ │ ├── JSONModelError.h │ │ │ └── JSONModelError.m │ │ ├── JSONModelCategories │ │ │ ├── NSArray+JSONModel.h │ │ │ └── NSArray+JSONModel.m │ │ ├── JSONModelLib.h │ │ ├── JSONModelNetworking │ │ │ ├── JSONAPI.h │ │ │ ├── JSONAPI.m │ │ │ ├── JSONHTTPClient.h │ │ │ ├── JSONHTTPClient.m │ │ │ ├── JSONModel+networking.h │ │ │ └── JSONModel+networking.m │ │ └── JSONModelTransformations │ │ │ ├── JSONKeyMapper.h │ │ │ ├── JSONKeyMapper.m │ │ │ ├── JSONValueTransformer.h │ │ │ └── JSONValueTransformer.m │ ├── LICENSE_jsonmodel.txt │ └── README.md ├── MBProgressHUD │ ├── LICENSE │ ├── MBProgressHUD.h │ ├── MBProgressHUD.m │ └── README.mdown ├── MJRefresh │ ├── LICENSE │ ├── MJRefresh │ │ ├── Base │ │ │ ├── MJRefreshAutoFooter.h │ │ │ ├── MJRefreshAutoFooter.m │ │ │ ├── MJRefreshBackFooter.h │ │ │ ├── MJRefreshBackFooter.m │ │ │ ├── MJRefreshComponent.h │ │ │ ├── MJRefreshComponent.m │ │ │ ├── MJRefreshFooter.h │ │ │ ├── MJRefreshFooter.m │ │ │ ├── MJRefreshHeader.h │ │ │ └── MJRefreshHeader.m │ │ ├── Custom │ │ │ ├── Footer │ │ │ │ ├── Auto │ │ │ │ │ ├── MJRefreshAutoGifFooter.h │ │ │ │ │ ├── MJRefreshAutoGifFooter.m │ │ │ │ │ ├── MJRefreshAutoNormalFooter.h │ │ │ │ │ ├── MJRefreshAutoNormalFooter.m │ │ │ │ │ ├── MJRefreshAutoStateFooter.h │ │ │ │ │ └── MJRefreshAutoStateFooter.m │ │ │ │ └── Back │ │ │ │ │ ├── MJRefreshBackGifFooter.h │ │ │ │ │ ├── MJRefreshBackGifFooter.m │ │ │ │ │ ├── MJRefreshBackNormalFooter.h │ │ │ │ │ ├── MJRefreshBackNormalFooter.m │ │ │ │ │ ├── MJRefreshBackStateFooter.h │ │ │ │ │ └── MJRefreshBackStateFooter.m │ │ │ └── Header │ │ │ │ ├── MJRefreshGifHeader.h │ │ │ │ ├── MJRefreshGifHeader.m │ │ │ │ ├── MJRefreshNormalHeader.h │ │ │ │ ├── MJRefreshNormalHeader.m │ │ │ │ ├── MJRefreshStateHeader.h │ │ │ │ └── MJRefreshStateHeader.m │ │ ├── MJRefresh.bundle │ │ │ └── arrow@2x.png │ │ ├── MJRefresh.h │ │ ├── MJRefreshConst.h │ │ ├── MJRefreshConst.m │ │ ├── UIScrollView+MJExtension.h │ │ ├── UIScrollView+MJExtension.m │ │ ├── UIScrollView+MJRefresh.h │ │ ├── UIScrollView+MJRefresh.m │ │ ├── UIView+MJExtension.h │ │ └── UIView+MJExtension.m │ └── README.md ├── MRProgress │ ├── LICENSE │ ├── README.md │ └── src │ │ ├── Blur │ │ ├── MRBlurView.h │ │ ├── MRBlurView.m │ │ ├── UIImage+MRImageEffects.h │ │ └── UIImage+MRImageEffects.m │ │ ├── Components │ │ ├── MRActivityIndicatorView.h │ │ ├── MRActivityIndicatorView.m │ │ ├── MRCircularProgressView.h │ │ ├── MRCircularProgressView.m │ │ ├── MRIconView.h │ │ ├── MRIconView.m │ │ ├── MRNavigationBarProgressView.h │ │ ├── MRNavigationBarProgressView.m │ │ ├── MRProgressOverlayView.h │ │ ├── MRProgressOverlayView.m │ │ ├── MRProgressView.h │ │ ├── MRProgressView.m │ │ ├── MRStopButton.h │ │ ├── MRStopButton.m │ │ └── MRStopableView.h │ │ ├── MRProgress.h │ │ └── Utils │ │ └── MRProgressHelper.h ├── MagicalRecord │ ├── LICENSE │ ├── MagicalRecord │ │ ├── Categories │ │ │ ├── DataImport │ │ │ │ ├── MagicalImportFunctions.h │ │ │ │ ├── MagicalImportFunctions.m │ │ │ │ ├── NSAttributeDescription+MagicalDataImport.h │ │ │ │ ├── NSAttributeDescription+MagicalDataImport.m │ │ │ │ ├── NSEntityDescription+MagicalDataImport.h │ │ │ │ ├── NSEntityDescription+MagicalDataImport.m │ │ │ │ ├── NSNumber+MagicalDataImport.h │ │ │ │ ├── NSNumber+MagicalDataImport.m │ │ │ │ ├── NSObject+MagicalDataImport.h │ │ │ │ ├── NSObject+MagicalDataImport.m │ │ │ │ ├── NSRelationshipDescription+MagicalDataImport.h │ │ │ │ ├── NSRelationshipDescription+MagicalDataImport.m │ │ │ │ ├── NSString+MagicalDataImport.h │ │ │ │ └── NSString+MagicalDataImport.m │ │ │ ├── NSManagedObject │ │ │ │ ├── NSManagedObject+MagicalAggregation.h │ │ │ │ ├── NSManagedObject+MagicalAggregation.m │ │ │ │ ├── NSManagedObject+MagicalDataImport.h │ │ │ │ ├── NSManagedObject+MagicalDataImport.m │ │ │ │ ├── NSManagedObject+MagicalFinders.h │ │ │ │ ├── NSManagedObject+MagicalFinders.m │ │ │ │ ├── NSManagedObject+MagicalRecord.h │ │ │ │ ├── NSManagedObject+MagicalRecord.m │ │ │ │ ├── NSManagedObject+MagicalRequests.h │ │ │ │ └── NSManagedObject+MagicalRequests.m │ │ │ ├── NSManagedObjectContext │ │ │ │ ├── NSManagedObjectContext+MagicalChainSave.h │ │ │ │ ├── NSManagedObjectContext+MagicalChainSave.m │ │ │ │ ├── NSManagedObjectContext+MagicalObserving.h │ │ │ │ ├── NSManagedObjectContext+MagicalObserving.m │ │ │ │ ├── NSManagedObjectContext+MagicalRecord.h │ │ │ │ ├── NSManagedObjectContext+MagicalRecord.m │ │ │ │ ├── NSManagedObjectContext+MagicalSaves.h │ │ │ │ ├── NSManagedObjectContext+MagicalSaves.m │ │ │ │ ├── NSManagedObjectContext+MagicalThreading.h │ │ │ │ └── NSManagedObjectContext+MagicalThreading.m │ │ │ ├── NSManagedObjectModel+MagicalRecord.h │ │ │ ├── NSManagedObjectModel+MagicalRecord.m │ │ │ ├── NSPersistentStore+MagicalRecord.h │ │ │ ├── NSPersistentStore+MagicalRecord.m │ │ │ ├── NSPersistentStoreCoordinator+MagicalRecord.h │ │ │ └── NSPersistentStoreCoordinator+MagicalRecord.m │ │ ├── Core │ │ │ ├── MagicalRecord+Actions.h │ │ │ ├── MagicalRecord+Actions.m │ │ │ ├── MagicalRecord+ErrorHandling.h │ │ │ ├── MagicalRecord+ErrorHandling.m │ │ │ ├── MagicalRecord+Options.h │ │ │ ├── MagicalRecord+Options.m │ │ │ ├── MagicalRecord+Setup.h │ │ │ ├── MagicalRecord+Setup.m │ │ │ ├── MagicalRecord+ShorthandMethods.h │ │ │ ├── MagicalRecord+ShorthandMethods.m │ │ │ ├── MagicalRecord+iCloud.h │ │ │ ├── MagicalRecord+iCloud.m │ │ │ ├── MagicalRecordDeprecationMacros.h │ │ │ ├── MagicalRecordInternal.h │ │ │ ├── MagicalRecordInternal.m │ │ │ ├── MagicalRecordLogging.h │ │ │ └── MagicalRecordXcode7CompatibilityMacros.h │ │ └── MagicalRecord.h │ └── 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 ├── NJKWebViewProgress │ ├── LICENSE │ ├── NJKWebViewProgress │ │ ├── NJKWebViewProgress.h │ │ ├── NJKWebViewProgress.m │ │ ├── NJKWebViewProgressView.h │ │ └── NJKWebViewProgressView.m │ └── README.md ├── Pods.xcodeproj │ ├── project.pbxproj │ └── xcuserdata │ │ ├── Zinkham.xcuserdatad │ │ └── xcschemes │ │ │ ├── AFNetworking.xcscheme │ │ │ ├── ActionSheetPicker-3.0.xcscheme │ │ │ ├── DKNightVersion.xcscheme │ │ │ ├── DZNEmptyDataSet.xcscheme │ │ │ ├── EAIntroView.xcscheme │ │ │ ├── EARestrictedScrollView.xcscheme │ │ │ ├── FMDB.xcscheme │ │ │ ├── IQKeyboardManager.xcscheme │ │ │ ├── JSONModel.xcscheme │ │ │ ├── MBProgressHUD.xcscheme │ │ │ ├── MJRefresh.xcscheme │ │ │ ├── MRProgress.xcscheme │ │ │ ├── MagicalRecord.xcscheme │ │ │ ├── Masonry.xcscheme │ │ │ ├── NJKWebViewProgress.xcscheme │ │ │ ├── Pods-FunnyProject.xcscheme │ │ │ ├── Pods-FunnyProjectTests.xcscheme │ │ │ ├── PopMenu.xcscheme │ │ │ ├── PureLayout.xcscheme │ │ │ ├── QBPopupMenu.xcscheme │ │ │ ├── RDVTabBarController.xcscheme │ │ │ ├── TTTAttributedLabel.xcscheme │ │ │ ├── ViewDeck.xcscheme │ │ │ ├── XHRealTimeBlur.xcscheme │ │ │ ├── ZipArchive.xcscheme │ │ │ ├── iRate.xcscheme │ │ │ ├── pop.xcscheme │ │ │ └── xcschememanagement.plist │ │ ├── jinkehan.xcuserdatad │ │ └── xcschemes │ │ │ ├── AFNetworking.xcscheme │ │ │ ├── ActionSheetPicker-3.0.xcscheme │ │ │ ├── DKNightVersion.xcscheme │ │ │ ├── DZNEmptyDataSet.xcscheme │ │ │ ├── EAIntroView.xcscheme │ │ │ ├── EARestrictedScrollView.xcscheme │ │ │ ├── FMDB.xcscheme │ │ │ ├── IQKeyboardManager.xcscheme │ │ │ ├── JSONModel.xcscheme │ │ │ ├── MBProgressHUD.xcscheme │ │ │ ├── MJRefresh.xcscheme │ │ │ ├── MRProgress.xcscheme │ │ │ ├── MagicalRecord.xcscheme │ │ │ ├── Masonry.xcscheme │ │ │ ├── NJKWebViewProgress.xcscheme │ │ │ ├── Pods-FunnyProject.xcscheme │ │ │ ├── Pods-FunnyProjectTests.xcscheme │ │ │ ├── PopMenu.xcscheme │ │ │ ├── PureLayout.xcscheme │ │ │ ├── QBPopupMenu.xcscheme │ │ │ ├── RDVTabBarController.xcscheme │ │ │ ├── TTTAttributedLabel.xcscheme │ │ │ ├── ViewDeck.xcscheme │ │ │ ├── XHRealTimeBlur.xcscheme │ │ │ ├── ZipArchive.xcscheme │ │ │ ├── iRate.xcscheme │ │ │ ├── pop.xcscheme │ │ │ └── xcschememanagement.plist │ │ └── wenxiaopei.xcuserdatad │ │ └── xcschemes │ │ ├── AFNetworking.xcscheme │ │ ├── ActionSheetPicker-3.0.xcscheme │ │ ├── DKNightVersion.xcscheme │ │ ├── DZNEmptyDataSet.xcscheme │ │ ├── EAIntroView.xcscheme │ │ ├── EARestrictedScrollView.xcscheme │ │ ├── FMDB.xcscheme │ │ ├── IQKeyboardManager.xcscheme │ │ ├── JSONModel.xcscheme │ │ ├── MBProgressHUD.xcscheme │ │ ├── MJRefresh.xcscheme │ │ ├── MRProgress.xcscheme │ │ ├── MagicalRecord.xcscheme │ │ ├── Masonry.xcscheme │ │ ├── NJKWebViewProgress.xcscheme │ │ ├── Pods-FunnyProject.xcscheme │ │ ├── Pods-FunnyProjectTests.xcscheme │ │ ├── PopMenu.xcscheme │ │ ├── PureLayout.xcscheme │ │ ├── QBPopupMenu.xcscheme │ │ ├── RDVTabBarController.xcscheme │ │ ├── TTTAttributedLabel.xcscheme │ │ ├── ViewDeck.xcscheme │ │ ├── XHRealTimeBlur.xcscheme │ │ ├── ZipArchive.xcscheme │ │ ├── iRate.xcscheme │ │ ├── pop.xcscheme │ │ └── xcschememanagement.plist ├── PopMenu │ ├── LICENSE │ ├── PopMenu │ │ ├── GlowImageView.h │ │ ├── GlowImageView.m │ │ ├── MenuButton.h │ │ ├── MenuButton.m │ │ ├── MenuItem.h │ │ ├── MenuItem.m │ │ ├── PopMenu.h │ │ └── PopMenu.m │ └── README.md ├── PureLayout │ ├── LICENSE │ ├── PureLayout │ │ └── PureLayout │ │ │ ├── ALView+PureLayout.h │ │ │ ├── ALView+PureLayout.m │ │ │ ├── NSArray+PureLayout.h │ │ │ ├── NSArray+PureLayout.m │ │ │ ├── NSLayoutConstraint+PureLayout.h │ │ │ ├── NSLayoutConstraint+PureLayout.m │ │ │ ├── PureLayout+Internal.h │ │ │ ├── PureLayout.h │ │ │ └── PureLayoutDefines.h │ └── README.md ├── QBPopupMenu │ ├── LICENSE.txt │ ├── QBPopupMenu │ │ ├── QBPlasticPopupMenu.h │ │ ├── QBPlasticPopupMenu.m │ │ ├── QBPopupMenu.h │ │ ├── QBPopupMenu.m │ │ ├── QBPopupMenuItem.h │ │ ├── QBPopupMenuItem.m │ │ ├── QBPopupMenuItemView.h │ │ ├── QBPopupMenuItemView.m │ │ ├── QBPopupMenuOverlayView.h │ │ ├── QBPopupMenuOverlayView.m │ │ ├── QBPopupMenuPagenatorView.h │ │ └── QBPopupMenuPagenatorView.m │ └── README.md ├── RDVTabBarController │ ├── LICENSE │ ├── RDVTabBarController │ │ ├── RDVTabBar.h │ │ ├── RDVTabBar.m │ │ ├── RDVTabBarController.h │ │ ├── RDVTabBarController.m │ │ ├── RDVTabBarItem.h │ │ └── RDVTabBarItem.m │ └── README.md ├── TTTAttributedLabel │ ├── LICENSE │ ├── README.md │ └── TTTAttributedLabel │ │ ├── TTTAttributedLabel.h │ │ └── TTTAttributedLabel.m ├── Target Support Files │ ├── AFNetworking │ │ ├── AFNetworking-dummy.m │ │ ├── AFNetworking-prefix.pch │ │ └── AFNetworking.xcconfig │ ├── ActionSheetPicker-3.0 │ │ ├── ActionSheetPicker-3.0-dummy.m │ │ ├── ActionSheetPicker-3.0-prefix.pch │ │ └── ActionSheetPicker-3.0.xcconfig │ ├── DKNightVersion │ │ ├── DKNightVersion-dummy.m │ │ ├── DKNightVersion-prefix.pch │ │ └── DKNightVersion.xcconfig │ ├── DZNEmptyDataSet │ │ ├── DZNEmptyDataSet-dummy.m │ │ ├── DZNEmptyDataSet-prefix.pch │ │ └── DZNEmptyDataSet.xcconfig │ ├── EAIntroView │ │ ├── EAIntroView-dummy.m │ │ ├── EAIntroView-prefix.pch │ │ └── EAIntroView.xcconfig │ ├── EARestrictedScrollView │ │ ├── EARestrictedScrollView-dummy.m │ │ ├── EARestrictedScrollView-prefix.pch │ │ └── EARestrictedScrollView.xcconfig │ ├── FMDB │ │ ├── FMDB-dummy.m │ │ ├── FMDB-prefix.pch │ │ └── FMDB.xcconfig │ ├── IQKeyboardManager │ │ ├── IQKeyboardManager-dummy.m │ │ ├── IQKeyboardManager-prefix.pch │ │ └── IQKeyboardManager.xcconfig │ ├── JSONModel │ │ ├── JSONModel-dummy.m │ │ ├── JSONModel-prefix.pch │ │ └── JSONModel.xcconfig │ ├── MBProgressHUD │ │ ├── MBProgressHUD-dummy.m │ │ ├── MBProgressHUD-prefix.pch │ │ └── MBProgressHUD.xcconfig │ ├── MJRefresh │ │ ├── MJRefresh-dummy.m │ │ ├── MJRefresh-prefix.pch │ │ └── MJRefresh.xcconfig │ ├── MRProgress │ │ ├── MRProgress-dummy.m │ │ ├── MRProgress-prefix.pch │ │ └── MRProgress.xcconfig │ ├── MagicalRecord │ │ ├── MagicalRecord-dummy.m │ │ ├── MagicalRecord-prefix.pch │ │ └── MagicalRecord.xcconfig │ ├── Masonry │ │ ├── Masonry-dummy.m │ │ ├── Masonry-prefix.pch │ │ └── Masonry.xcconfig │ ├── NJKWebViewProgress │ │ ├── NJKWebViewProgress-dummy.m │ │ ├── NJKWebViewProgress-prefix.pch │ │ └── NJKWebViewProgress.xcconfig │ ├── Pods-FunnyProject │ │ ├── Pods-FunnyProject-acknowledgements.markdown │ │ ├── Pods-FunnyProject-acknowledgements.plist │ │ ├── Pods-FunnyProject-dummy.m │ │ ├── Pods-FunnyProject-frameworks.sh │ │ ├── Pods-FunnyProject-resources.sh │ │ ├── Pods-FunnyProject.debug.xcconfig │ │ └── Pods-FunnyProject.release.xcconfig │ ├── Pods-FunnyProjectTests │ │ ├── Pods-FunnyProjectTests-acknowledgements.markdown │ │ ├── Pods-FunnyProjectTests-acknowledgements.plist │ │ ├── Pods-FunnyProjectTests-dummy.m │ │ ├── Pods-FunnyProjectTests-frameworks.sh │ │ ├── Pods-FunnyProjectTests-resources.sh │ │ ├── Pods-FunnyProjectTests.debug.xcconfig │ │ └── Pods-FunnyProjectTests.release.xcconfig │ ├── PopMenu │ │ ├── PopMenu-dummy.m │ │ ├── PopMenu-prefix.pch │ │ └── PopMenu.xcconfig │ ├── PureLayout │ │ ├── PureLayout-dummy.m │ │ ├── PureLayout-prefix.pch │ │ └── PureLayout.xcconfig │ ├── QBPopupMenu │ │ ├── QBPopupMenu-dummy.m │ │ ├── QBPopupMenu-prefix.pch │ │ └── QBPopupMenu.xcconfig │ ├── RDVTabBarController │ │ ├── RDVTabBarController-dummy.m │ │ ├── RDVTabBarController-prefix.pch │ │ └── RDVTabBarController.xcconfig │ ├── TTTAttributedLabel │ │ ├── TTTAttributedLabel-dummy.m │ │ ├── TTTAttributedLabel-prefix.pch │ │ └── TTTAttributedLabel.xcconfig │ ├── ViewDeck │ │ ├── ViewDeck-dummy.m │ │ ├── ViewDeck-prefix.pch │ │ └── ViewDeck.xcconfig │ ├── XHRealTimeBlur │ │ ├── XHRealTimeBlur-dummy.m │ │ ├── XHRealTimeBlur-prefix.pch │ │ └── XHRealTimeBlur.xcconfig │ ├── ZipArchive │ │ ├── ZipArchive-dummy.m │ │ ├── ZipArchive-prefix.pch │ │ └── ZipArchive.xcconfig │ ├── iRate │ │ ├── iRate-dummy.m │ │ ├── iRate-prefix.pch │ │ └── iRate.xcconfig │ └── pop │ │ ├── pop-dummy.m │ │ ├── pop-prefix.pch │ │ └── pop.xcconfig ├── ViewDeck │ ├── README.md │ └── ViewDeck │ │ ├── IISideController.h │ │ ├── IISideController.m │ │ ├── IIViewDeckController.h │ │ ├── IIViewDeckController.m │ │ ├── IIWrapController.h │ │ ├── IIWrapController.m │ │ └── ViewDeck.h ├── XHRealTimeBlur │ ├── LICENSE │ ├── README.md │ └── XHRealTimeBlur │ │ ├── XHRealTimeBlur.h │ │ └── XHRealTimeBlur.m ├── ZipArchive │ ├── LICENSE │ ├── README.md │ ├── ZipArchive.h │ ├── ZipArchive.m │ └── minizip │ │ ├── crypt.h │ │ ├── ioapi.c │ │ ├── ioapi.h │ │ ├── mztools.c │ │ ├── mztools.h │ │ ├── unzip.c │ │ ├── unzip.h │ │ ├── zip.c │ │ └── zip.h ├── iRate │ ├── LICENCE.md │ ├── README.md │ └── iRate │ │ ├── iRate.bundle │ │ ├── ar.lproj │ │ │ └── Localizable.strings │ │ ├── bn.lproj │ │ │ └── Localizable.strings │ │ ├── cs.lproj │ │ │ └── Localizable.strings │ │ ├── da.lproj │ │ │ └── Localizable.strings │ │ ├── de-AT.lproj │ │ │ └── Localizable.strings │ │ ├── de.lproj │ │ │ └── Localizable.strings │ │ ├── el.lproj │ │ │ └── Localizable.strings │ │ ├── en.lproj │ │ │ └── Localizable.strings │ │ ├── es.lproj │ │ │ └── Localizable.strings │ │ ├── fa.lproj │ │ │ └── Localizable.strings │ │ ├── fr.lproj │ │ │ └── Localizable.strings │ │ ├── he.lproj │ │ │ └── Localizable.strings │ │ ├── hi.lproj │ │ │ └── Localizable.strings │ │ ├── id.lproj │ │ │ └── Localizable.strings │ │ ├── it.lproj │ │ │ └── Localizable.strings │ │ ├── ja.lproj │ │ │ └── Localizable.strings │ │ ├── ko.lproj │ │ │ └── Localizable.strings │ │ ├── mk.lproj │ │ │ └── Localizable.strings │ │ ├── nl.lproj │ │ │ └── Localizable.strings │ │ ├── no.lproj │ │ │ └── Localizable.strings │ │ ├── pa.lproj │ │ │ └── Localizable.strings │ │ ├── pl.lproj │ │ │ └── Localizable.strings │ │ ├── pt.lproj │ │ │ └── Localizable.strings │ │ ├── ru.lproj │ │ │ └── Localizable.strings │ │ ├── sk.lproj │ │ │ └── Localizable.strings │ │ ├── sl.lproj │ │ │ └── Localizable.strings │ │ ├── sv.lproj │ │ │ └── Localizable.strings │ │ ├── th.lproj │ │ │ └── Localizable.strings │ │ ├── tr.lproj │ │ │ └── Localizable.strings │ │ ├── uk.lproj │ │ │ └── Localizable.strings │ │ ├── ur-IN.lproj │ │ │ └── Localizable.strings │ │ ├── ur-PK.lproj │ │ │ └── Localizable.strings │ │ ├── ur.lproj │ │ │ └── Localizable.strings │ │ ├── vi.lproj │ │ │ └── Localizable.strings │ │ ├── zh-Hans.lproj │ │ │ └── Localizable.strings │ │ └── zh-Hant.lproj │ │ │ └── Localizable.strings │ │ ├── iRate.h │ │ └── iRate.m └── pop │ ├── LICENSE │ ├── README.md │ └── pop │ ├── POP.h │ ├── POPAction.h │ ├── POPAnimatableProperty.h │ ├── POPAnimatableProperty.mm │ ├── POPAnimation.h │ ├── POPAnimation.mm │ ├── POPAnimationEvent.h │ ├── POPAnimationEvent.mm │ ├── POPAnimationEventInternal.h │ ├── POPAnimationExtras.h │ ├── POPAnimationExtras.mm │ ├── POPAnimationInternal.h │ ├── POPAnimationPrivate.h │ ├── POPAnimationRuntime.h │ ├── POPAnimationRuntime.mm │ ├── POPAnimationTracer.h │ ├── POPAnimationTracer.mm │ ├── POPAnimationTracerInternal.h │ ├── POPAnimator.h │ ├── POPAnimator.mm │ ├── POPAnimatorPrivate.h │ ├── POPBasicAnimation.h │ ├── POPBasicAnimation.mm │ ├── POPBasicAnimationInternal.h │ ├── POPCGUtils.h │ ├── POPCGUtils.mm │ ├── POPCustomAnimation.h │ ├── POPCustomAnimation.mm │ ├── POPDecayAnimation.h │ ├── POPDecayAnimation.mm │ ├── POPDecayAnimationInternal.h │ ├── POPDefines.h │ ├── POPGeometry.h │ ├── POPGeometry.mm │ ├── POPLayerExtras.h │ ├── POPLayerExtras.mm │ ├── POPMath.h │ ├── POPMath.mm │ ├── POPPropertyAnimation.h │ ├── POPPropertyAnimation.mm │ ├── POPPropertyAnimationInternal.h │ ├── POPSpringAnimation.h │ ├── POPSpringAnimation.mm │ ├── POPSpringAnimationInternal.h │ ├── POPSpringSolver.h │ ├── POPVector.h │ ├── POPVector.mm │ └── WebCore │ ├── FloatConversion.h │ ├── TransformationMatrix.cpp │ ├── TransformationMatrix.h │ └── UnitBezier.h ├── README.md └── ScreenShots ├── IMG_0999.PNG ├── IMG_1004.PNG ├── IMG_1005.PNG ├── IMG_1007.PNG └── IMG_1009.PNG /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/.DS_Store -------------------------------------------------------------------------------- /FunnyProject.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /FunnyProject.xcodeproj/project.xcworkspace/xcuserdata/jinkehan.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject.xcodeproj/project.xcworkspace/xcuserdata/jinkehan.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /FunnyProject.xcworkspace/xcuserdata/Zinkham.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject.xcworkspace/xcuserdata/Zinkham.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /FunnyProject.xcworkspace/xcuserdata/jinkehan.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject.xcworkspace/xcuserdata/jinkehan.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /FunnyProject.xcworkspace/xcuserdata/wenxiaopei.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject.xcworkspace/xcuserdata/wenxiaopei.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /FunnyProject/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/.DS_Store -------------------------------------------------------------------------------- /FunnyProject/Assets.xcassets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Assets.xcassets/.DS_Store -------------------------------------------------------------------------------- /FunnyProject/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /FunnyProject/Base.lproj/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Base.lproj/.DS_Store -------------------------------------------------------------------------------- /FunnyProject/Category/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Category/.DS_Store -------------------------------------------------------------------------------- /FunnyProject/Category/DateTools/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Category/DateTools/.DS_Store -------------------------------------------------------------------------------- /FunnyProject/Category/DateTools/DateTools.bundle/ar.lproj/DateTools.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Category/DateTools/DateTools.bundle/ar.lproj/DateTools.strings -------------------------------------------------------------------------------- /FunnyProject/Category/DateTools/DateTools.bundle/gre.lproj/DateTools.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Category/DateTools/DateTools.bundle/gre.lproj/DateTools.strings -------------------------------------------------------------------------------- /FunnyProject/Category/DateTools/DateTools.bundle/sv.lproj/DateTools.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Category/DateTools/DateTools.bundle/sv.lproj/DateTools.strings -------------------------------------------------------------------------------- /FunnyProject/Category/DateTools/DateTools.bundle/th.lproj/DateTools.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Category/DateTools/DateTools.bundle/th.lproj/DateTools.strings -------------------------------------------------------------------------------- /FunnyProject/Category/UIKit/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Category/UIKit/.DS_Store -------------------------------------------------------------------------------- /FunnyProject/Category/ZHCustomNav/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Category/ZHCustomNav/.DS_Store -------------------------------------------------------------------------------- /FunnyProject/Category/ZHCustomNav/ZHPopAnimation.h: -------------------------------------------------------------------------------- 1 | 2 | 3 | #import 4 | #import 5 | 6 | @interface ZHPopAnimation : NSObject 7 | 8 | @end 9 | -------------------------------------------------------------------------------- /FunnyProject/Category/ZHCustomNav/nav_bg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Category/ZHCustomNav/nav_bg@2x.png -------------------------------------------------------------------------------- /FunnyProject/Category/ZHCustomNav/nav_button_back_h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Category/ZHCustomNav/nav_button_back_h@2x.png -------------------------------------------------------------------------------- /FunnyProject/Category/ZHCustomNav/nav_button_back_n@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Category/ZHCustomNav/nav_button_back_n@2x.png -------------------------------------------------------------------------------- /FunnyProject/File/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/File/.DS_Store -------------------------------------------------------------------------------- /FunnyProject/IconFont/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/IconFont/.DS_Store -------------------------------------------------------------------------------- /FunnyProject/IconFont/iconfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/IconFont/iconfont.eot -------------------------------------------------------------------------------- /FunnyProject/IconFont/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/IconFont/iconfont.ttf -------------------------------------------------------------------------------- /FunnyProject/IconFont/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/IconFont/iconfont.woff -------------------------------------------------------------------------------- /FunnyProject/Images.xcassets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Images.xcassets/.DS_Store -------------------------------------------------------------------------------- /FunnyProject/Images.xcassets/AppIcon.appiconset/Icon-152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Images.xcassets/AppIcon.appiconset/Icon-152.png -------------------------------------------------------------------------------- /FunnyProject/Images.xcassets/AppIcon.appiconset/Icon-167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Images.xcassets/AppIcon.appiconset/Icon-167.png -------------------------------------------------------------------------------- /FunnyProject/Images.xcassets/AppIcon.appiconset/Icon-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Images.xcassets/AppIcon.appiconset/Icon-29.png -------------------------------------------------------------------------------- /FunnyProject/Images.xcassets/AppIcon.appiconset/Icon-29@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Images.xcassets/AppIcon.appiconset/Icon-29@2x-1.png -------------------------------------------------------------------------------- /FunnyProject/Images.xcassets/AppIcon.appiconset/Icon-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Images.xcassets/AppIcon.appiconset/Icon-29@2x.png -------------------------------------------------------------------------------- /FunnyProject/Images.xcassets/AppIcon.appiconset/Icon-29@3x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Images.xcassets/AppIcon.appiconset/Icon-29@3x-1.png -------------------------------------------------------------------------------- /FunnyProject/Images.xcassets/AppIcon.appiconset/Icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Images.xcassets/AppIcon.appiconset/Icon-40.png -------------------------------------------------------------------------------- /FunnyProject/Images.xcassets/AppIcon.appiconset/Icon-40@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Images.xcassets/AppIcon.appiconset/Icon-40@2x-1.png -------------------------------------------------------------------------------- /FunnyProject/Images.xcassets/AppIcon.appiconset/Icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Images.xcassets/AppIcon.appiconset/Icon-40@2x.png -------------------------------------------------------------------------------- /FunnyProject/Images.xcassets/AppIcon.appiconset/Icon-40@3x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Images.xcassets/AppIcon.appiconset/Icon-40@3x-1.png -------------------------------------------------------------------------------- /FunnyProject/Images.xcassets/AppIcon.appiconset/Icon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Images.xcassets/AppIcon.appiconset/Icon-40@3x.png -------------------------------------------------------------------------------- /FunnyProject/Images.xcassets/AppIcon.appiconset/Icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Images.xcassets/AppIcon.appiconset/Icon-60@3x.png -------------------------------------------------------------------------------- /FunnyProject/Images.xcassets/AppIcon.appiconset/Icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Images.xcassets/AppIcon.appiconset/Icon-76.png -------------------------------------------------------------------------------- /FunnyProject/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /FunnyProject/Images.xcassets/LaunchImage.launchimage/1242*2208.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Images.xcassets/LaunchImage.launchimage/1242*2208.png -------------------------------------------------------------------------------- /FunnyProject/Images.xcassets/LaunchImage.launchimage/320*480.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Images.xcassets/LaunchImage.launchimage/320*480.png -------------------------------------------------------------------------------- /FunnyProject/Images.xcassets/LaunchImage.launchimage/640*1136-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Images.xcassets/LaunchImage.launchimage/640*1136-1.png -------------------------------------------------------------------------------- /FunnyProject/Images.xcassets/LaunchImage.launchimage/640*1136.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Images.xcassets/LaunchImage.launchimage/640*1136.png -------------------------------------------------------------------------------- /FunnyProject/Images.xcassets/LaunchImage.launchimage/640*960-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Images.xcassets/LaunchImage.launchimage/640*960-1.png -------------------------------------------------------------------------------- /FunnyProject/Images.xcassets/LaunchImage.launchimage/640*960.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Images.xcassets/LaunchImage.launchimage/640*960.png -------------------------------------------------------------------------------- /FunnyProject/Images.xcassets/LaunchImage.launchimage/750*1334.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Images.xcassets/LaunchImage.launchimage/750*1334.png -------------------------------------------------------------------------------- /FunnyProject/Images/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Images/.DS_Store -------------------------------------------------------------------------------- /FunnyProject/Images/clound.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Images/clound.jpg -------------------------------------------------------------------------------- /FunnyProject/Images/user_icon_default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Images/user_icon_default@2x.png -------------------------------------------------------------------------------- /FunnyProject/Images/zhifubao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Images/zhifubao.png -------------------------------------------------------------------------------- /FunnyProject/Libs/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Libs/.DS_Store -------------------------------------------------------------------------------- /FunnyProject/Libs/CATCommon/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Libs/CATCommon/.DS_Store -------------------------------------------------------------------------------- /FunnyProject/Libs/FLAnimatedImage-SDWebImage/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Libs/FLAnimatedImage-SDWebImage/.DS_Store -------------------------------------------------------------------------------- /FunnyProject/Libs/FLAnimatedImage-SDWebImage/FLAnimatedImage/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Libs/FLAnimatedImage-SDWebImage/FLAnimatedImage/.DS_Store -------------------------------------------------------------------------------- /FunnyProject/Libs/LTAlertView/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Libs/LTAlertView/.DS_Store -------------------------------------------------------------------------------- /FunnyProject/Libs/LongVideo/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Libs/LongVideo/.DS_Store -------------------------------------------------------------------------------- /FunnyProject/Libs/LongVideo/MovieControllImg/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Libs/LongVideo/MovieControllImg/.DS_Store -------------------------------------------------------------------------------- /FunnyProject/Libs/LongVideo/MovieControllImg/back@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Libs/LongVideo/MovieControllImg/back@2x.png -------------------------------------------------------------------------------- /FunnyProject/Libs/LongVideo/MovieControllImg/back_s@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Libs/LongVideo/MovieControllImg/back_s@2x.png -------------------------------------------------------------------------------- /FunnyProject/Libs/LongVideo/MovieControllImg/bottom_bar@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Libs/LongVideo/MovieControllImg/bottom_bar@2x.png -------------------------------------------------------------------------------- /FunnyProject/Libs/LongVideo/MovieControllImg/bullet_set_nor@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Libs/LongVideo/MovieControllImg/bullet_set_nor@2x.png -------------------------------------------------------------------------------- /FunnyProject/Libs/LongVideo/MovieControllImg/bullet_videotype_frame@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Libs/LongVideo/MovieControllImg/bullet_videotype_frame@2x.png -------------------------------------------------------------------------------- /FunnyProject/Libs/LongVideo/MovieControllImg/full_mode@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Libs/LongVideo/MovieControllImg/full_mode@2x.png -------------------------------------------------------------------------------- /FunnyProject/Libs/LongVideo/MovieControllImg/hideWord.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Libs/LongVideo/MovieControllImg/hideWord.png -------------------------------------------------------------------------------- /FunnyProject/Libs/LongVideo/MovieControllImg/hideWord_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Libs/LongVideo/MovieControllImg/hideWord_select.png -------------------------------------------------------------------------------- /FunnyProject/Libs/LongVideo/MovieControllImg/ic_media_ff@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Libs/LongVideo/MovieControllImg/ic_media_ff@2x.png -------------------------------------------------------------------------------- /FunnyProject/Libs/LongVideo/MovieControllImg/ic_media_rew@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Libs/LongVideo/MovieControllImg/ic_media_rew@2x.png -------------------------------------------------------------------------------- /FunnyProject/Libs/LongVideo/MovieControllImg/lock@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Libs/LongVideo/MovieControllImg/lock@2x.png -------------------------------------------------------------------------------- /FunnyProject/Libs/LongVideo/MovieControllImg/locked@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Libs/LongVideo/MovieControllImg/locked@2x.png -------------------------------------------------------------------------------- /FunnyProject/Libs/LongVideo/MovieControllImg/pause_btn@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Libs/LongVideo/MovieControllImg/pause_btn@2x.png -------------------------------------------------------------------------------- /FunnyProject/Libs/LongVideo/MovieControllImg/play_btn@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Libs/LongVideo/MovieControllImg/play_btn@2x.png -------------------------------------------------------------------------------- /FunnyProject/Libs/LongVideo/MovieControllImg/play_next_btn@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Libs/LongVideo/MovieControllImg/play_next_btn@2x.png -------------------------------------------------------------------------------- /FunnyProject/Libs/LongVideo/MovieControllImg/play_next_btn_pressed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Libs/LongVideo/MovieControllImg/play_next_btn_pressed@2x.png -------------------------------------------------------------------------------- /FunnyProject/Libs/LongVideo/MovieControllImg/showWord.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Libs/LongVideo/MovieControllImg/showWord.png -------------------------------------------------------------------------------- /FunnyProject/Libs/LongVideo/MovieControllImg/showWord_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Libs/LongVideo/MovieControllImg/showWord_select.png -------------------------------------------------------------------------------- /FunnyProject/Libs/LongVideo/MovieControllImg/slider@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Libs/LongVideo/MovieControllImg/slider@2x.png -------------------------------------------------------------------------------- /FunnyProject/Libs/LongVideo/MovieControllImg/slider_max@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Libs/LongVideo/MovieControllImg/slider_max@2x.png -------------------------------------------------------------------------------- /FunnyProject/Libs/LongVideo/MovieControllImg/slider_min@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Libs/LongVideo/MovieControllImg/slider_min@2x.png -------------------------------------------------------------------------------- /FunnyProject/Libs/LongVideo/MovieControllImg/slider_s@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Libs/LongVideo/MovieControllImg/slider_s@2x.png -------------------------------------------------------------------------------- /FunnyProject/Libs/LongVideo/MovieControllImg/top_bar@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Libs/LongVideo/MovieControllImg/top_bar@2x.png -------------------------------------------------------------------------------- /FunnyProject/Libs/LongVideo/MovieControllImg/video_download_finish@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Libs/LongVideo/MovieControllImg/video_download_finish@2x.png -------------------------------------------------------------------------------- /FunnyProject/Libs/LongVideo/MovieControllImg/video_download_nor@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Libs/LongVideo/MovieControllImg/video_download_nor@2x.png -------------------------------------------------------------------------------- /FunnyProject/Libs/LongVideo/TVSliderView.h: -------------------------------------------------------------------------------- 1 | // 2 | // TVSliderView.h 3 | // FunnyProject 4 | // 5 | // Created by Zinkham on 16/8/4. 6 | // Copyright © 2016年 Zinkham. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface TVSliderView : UISlider 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /FunnyProject/Libs/MWPhotoBrowser/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Libs/MWPhotoBrowser/.DS_Store -------------------------------------------------------------------------------- /FunnyProject/Libs/MWPhotoBrowser/Images/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Libs/MWPhotoBrowser/Images/.DS_Store -------------------------------------------------------------------------------- /FunnyProject/Libs/MWPhotoBrowser/Images/ImageError.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Libs/MWPhotoBrowser/Images/ImageError.png -------------------------------------------------------------------------------- /FunnyProject/Libs/MWPhotoBrowser/Images/ImageError@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Libs/MWPhotoBrowser/Images/ImageError@2x.png -------------------------------------------------------------------------------- /FunnyProject/Libs/MWPhotoBrowser/Images/ImageError@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Libs/MWPhotoBrowser/Images/ImageError@3x.png -------------------------------------------------------------------------------- /FunnyProject/Libs/MWPhotoBrowser/Images/ImageSelectedOff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Libs/MWPhotoBrowser/Images/ImageSelectedOff.png -------------------------------------------------------------------------------- /FunnyProject/Libs/MWPhotoBrowser/Images/ImageSelectedOff@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Libs/MWPhotoBrowser/Images/ImageSelectedOff@2x.png -------------------------------------------------------------------------------- /FunnyProject/Libs/MWPhotoBrowser/Images/ImageSelectedOff@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Libs/MWPhotoBrowser/Images/ImageSelectedOff@3x.png -------------------------------------------------------------------------------- /FunnyProject/Libs/MWPhotoBrowser/Images/ImageSelectedOn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Libs/MWPhotoBrowser/Images/ImageSelectedOn.png -------------------------------------------------------------------------------- /FunnyProject/Libs/MWPhotoBrowser/Images/ImageSelectedOn@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Libs/MWPhotoBrowser/Images/ImageSelectedOn@2x.png -------------------------------------------------------------------------------- /FunnyProject/Libs/MWPhotoBrowser/Images/ImageSelectedOn@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Libs/MWPhotoBrowser/Images/ImageSelectedOn@3x.png -------------------------------------------------------------------------------- /FunnyProject/Libs/MWPhotoBrowser/Images/ImageSelectedSmallOff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Libs/MWPhotoBrowser/Images/ImageSelectedSmallOff.png -------------------------------------------------------------------------------- /FunnyProject/Libs/MWPhotoBrowser/Images/ImageSelectedSmallOff@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Libs/MWPhotoBrowser/Images/ImageSelectedSmallOff@2x.png -------------------------------------------------------------------------------- /FunnyProject/Libs/MWPhotoBrowser/Images/ImageSelectedSmallOff@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Libs/MWPhotoBrowser/Images/ImageSelectedSmallOff@3x.png -------------------------------------------------------------------------------- /FunnyProject/Libs/MWPhotoBrowser/Images/ImageSelectedSmallOn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Libs/MWPhotoBrowser/Images/ImageSelectedSmallOn.png -------------------------------------------------------------------------------- /FunnyProject/Libs/MWPhotoBrowser/Images/ImageSelectedSmallOn@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Libs/MWPhotoBrowser/Images/ImageSelectedSmallOn@2x.png -------------------------------------------------------------------------------- /FunnyProject/Libs/MWPhotoBrowser/Images/ImageSelectedSmallOn@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Libs/MWPhotoBrowser/Images/ImageSelectedSmallOn@3x.png -------------------------------------------------------------------------------- /FunnyProject/Libs/MWPhotoBrowser/Images/PlayButtonOverlayLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Libs/MWPhotoBrowser/Images/PlayButtonOverlayLarge.png -------------------------------------------------------------------------------- /FunnyProject/Libs/MWPhotoBrowser/Images/PlayButtonOverlayLarge@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Libs/MWPhotoBrowser/Images/PlayButtonOverlayLarge@2x.png -------------------------------------------------------------------------------- /FunnyProject/Libs/MWPhotoBrowser/Images/PlayButtonOverlayLarge@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Libs/MWPhotoBrowser/Images/PlayButtonOverlayLarge@3x.png -------------------------------------------------------------------------------- /FunnyProject/Libs/MWPhotoBrowser/Images/PlayButtonOverlayLargeTap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Libs/MWPhotoBrowser/Images/PlayButtonOverlayLargeTap.png -------------------------------------------------------------------------------- /FunnyProject/Libs/MWPhotoBrowser/Images/PlayButtonOverlayLargeTap@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Libs/MWPhotoBrowser/Images/PlayButtonOverlayLargeTap@2x.png -------------------------------------------------------------------------------- /FunnyProject/Libs/MWPhotoBrowser/Images/PlayButtonOverlayLargeTap@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Libs/MWPhotoBrowser/Images/PlayButtonOverlayLargeTap@3x.png -------------------------------------------------------------------------------- /FunnyProject/Libs/MWPhotoBrowser/Images/UIBarButtonItemArrowLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Libs/MWPhotoBrowser/Images/UIBarButtonItemArrowLeft.png -------------------------------------------------------------------------------- /FunnyProject/Libs/MWPhotoBrowser/Images/UIBarButtonItemArrowLeft@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Libs/MWPhotoBrowser/Images/UIBarButtonItemArrowLeft@2x.png -------------------------------------------------------------------------------- /FunnyProject/Libs/MWPhotoBrowser/Images/UIBarButtonItemArrowLeft@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Libs/MWPhotoBrowser/Images/UIBarButtonItemArrowLeft@3x.png -------------------------------------------------------------------------------- /FunnyProject/Libs/MWPhotoBrowser/Images/UIBarButtonItemArrowRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Libs/MWPhotoBrowser/Images/UIBarButtonItemArrowRight.png -------------------------------------------------------------------------------- /FunnyProject/Libs/MWPhotoBrowser/Images/UIBarButtonItemArrowRight@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Libs/MWPhotoBrowser/Images/UIBarButtonItemArrowRight@2x.png -------------------------------------------------------------------------------- /FunnyProject/Libs/MWPhotoBrowser/Images/UIBarButtonItemArrowRight@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Libs/MWPhotoBrowser/Images/UIBarButtonItemArrowRight@3x.png -------------------------------------------------------------------------------- /FunnyProject/Libs/MWPhotoBrowser/Images/UIBarButtonItemGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Libs/MWPhotoBrowser/Images/UIBarButtonItemGrid.png -------------------------------------------------------------------------------- /FunnyProject/Libs/MWPhotoBrowser/Images/UIBarButtonItemGrid@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Libs/MWPhotoBrowser/Images/UIBarButtonItemGrid@2x.png -------------------------------------------------------------------------------- /FunnyProject/Libs/MWPhotoBrowser/Images/UIBarButtonItemGrid@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Libs/MWPhotoBrowser/Images/UIBarButtonItemGrid@3x.png -------------------------------------------------------------------------------- /FunnyProject/Libs/MWPhotoBrowser/Images/VideoOverlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Libs/MWPhotoBrowser/Images/VideoOverlay.png -------------------------------------------------------------------------------- /FunnyProject/Libs/MWPhotoBrowser/Images/VideoOverlay@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Libs/MWPhotoBrowser/Images/VideoOverlay@2x.png -------------------------------------------------------------------------------- /FunnyProject/Libs/MWPhotoBrowser/Images/VideoOverlay@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Libs/MWPhotoBrowser/Images/VideoOverlay@3x.png -------------------------------------------------------------------------------- /FunnyProject/Libs/SVWebViewController/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Libs/SVWebViewController/.DS_Store -------------------------------------------------------------------------------- /FunnyProject/Libs/SVWebViewController/SVWebViewController.bundle/SVWebViewControllerBack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Libs/SVWebViewController/SVWebViewController.bundle/SVWebViewControllerBack.png -------------------------------------------------------------------------------- /FunnyProject/Libs/SVWebViewController/SVWebViewController.bundle/SVWebViewControllerBack@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Libs/SVWebViewController/SVWebViewController.bundle/SVWebViewControllerBack@2x.png -------------------------------------------------------------------------------- /FunnyProject/Libs/SVWebViewController/SVWebViewController.bundle/SVWebViewControllerNext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Libs/SVWebViewController/SVWebViewController.bundle/SVWebViewControllerNext.png -------------------------------------------------------------------------------- /FunnyProject/Libs/SVWebViewController/SVWebViewController.bundle/SVWebViewControllerNext@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Libs/SVWebViewController/SVWebViewController.bundle/SVWebViewControllerNext@2x.png -------------------------------------------------------------------------------- /FunnyProject/Libs/SVWebViewController/UIActivities/Chrome/SVWebViewControllerActivityChrome-iPad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Libs/SVWebViewController/UIActivities/Chrome/SVWebViewControllerActivityChrome-iPad.png -------------------------------------------------------------------------------- /FunnyProject/Libs/SVWebViewController/UIActivities/Chrome/SVWebViewControllerActivityChrome-iPad@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Libs/SVWebViewController/UIActivities/Chrome/SVWebViewControllerActivityChrome-iPad@2x.png -------------------------------------------------------------------------------- /FunnyProject/Libs/SVWebViewController/UIActivities/Chrome/SVWebViewControllerActivityChrome@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Libs/SVWebViewController/UIActivities/Chrome/SVWebViewControllerActivityChrome@2x.png -------------------------------------------------------------------------------- /FunnyProject/Libs/SVWebViewController/UIActivities/Safari/SVWebViewControllerActivitySafari-iPad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Libs/SVWebViewController/UIActivities/Safari/SVWebViewControllerActivitySafari-iPad.png -------------------------------------------------------------------------------- /FunnyProject/Libs/SVWebViewController/UIActivities/Safari/SVWebViewControllerActivitySafari-iPad@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Libs/SVWebViewController/UIActivities/Safari/SVWebViewControllerActivitySafari-iPad@2x.png -------------------------------------------------------------------------------- /FunnyProject/Libs/SVWebViewController/UIActivities/Safari/SVWebViewControllerActivitySafari@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Libs/SVWebViewController/UIActivities/Safari/SVWebViewControllerActivitySafari@2x.png -------------------------------------------------------------------------------- /FunnyProject/Libs/SVWebViewController/da.lproj/SVWebViewController.strings: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2013 Anders Fogh Eriksen 2 | "Open in Safari" = "Åbn i Safari"; 3 | "Open in Chrome" = "Åbn i Chrome"; 4 | "Copy Link" = "Kopier Link"; 5 | "Mail Link to this Page" = "Mail Link til denne side"; -------------------------------------------------------------------------------- /FunnyProject/Libs/SVWebViewController/de.lproj/SVWebViewController.strings: -------------------------------------------------------------------------------- 1 | "Open in Safari" = "In Safari öffnen"; 2 | "Open in Chrome" = "In Chrome öffnen"; -------------------------------------------------------------------------------- /FunnyProject/Libs/SVWebViewController/en.lproj/SVWebViewController.strings: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2013 Alex Ruperez 2 | "Open in Safari" = "Open in Safari"; 3 | "Open in Chrome" = "Open in Chrome"; -------------------------------------------------------------------------------- /FunnyProject/Libs/SVWebViewController/es-ES.lproj/SVWebViewController.strings: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2013 Alex Ruperez 2 | "Open in Safari" = "Abrir en Safari"; 3 | "Open in Chrome" = "Abrir en Chrome"; -------------------------------------------------------------------------------- /FunnyProject/Libs/SVWebViewController/es.lproj/SVWebViewController.strings: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2013 Alex Ruperez 2 | "Open in Safari" = "Abrir en Safari"; 3 | "Open in Chrome" = "Abrir en Chrome"; -------------------------------------------------------------------------------- /FunnyProject/Libs/SVWebViewController/fr.lproj/SVWebViewController.strings: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2013 Benjamin Michotte 2 | "Open in Safari" = "Ouvrir dans Safari"; 3 | "Open in Chrome" = "Ouvrir dans Chrome"; -------------------------------------------------------------------------------- /FunnyProject/Libs/SVWebViewController/ja.lproj/SVWebViewController.strings: -------------------------------------------------------------------------------- 1 | "Open in Safari" = "Safariで開く"; 2 | "Open in Chrome" = "Chromeで開く"; 3 | -------------------------------------------------------------------------------- /FunnyProject/Libs/SVWebViewController/pt.lproj/SVWebViewController.strings: -------------------------------------------------------------------------------- 1 | "Open in Safari" = "Abrir no Safari"; 2 | "Open in Chrome" = "Abrir no Chrome"; -------------------------------------------------------------------------------- /FunnyProject/Libs/SVWebViewController/zh-Hans.lproj/SVWebViewController.strings: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2013 James Stout 2 | "Open in Safari" = "在Safari中打开"; 3 | "Open in Chrome" = "在Chrome中打开"; 4 | "Copy Link" = "复制网页链接"; 5 | "Mail Link to this Page" = "以电邮传送此页链接"; 6 | "Cancel"="取消"; 7 | -------------------------------------------------------------------------------- /FunnyProject/Libs/SVWebViewController/zh-Hant.lproj/SVWebViewController.strings: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2013 James Stout 2 | "Open in Safari" = "打開Safari"; 3 | "Open in Chrome" = "打開Chrome"; -------------------------------------------------------------------------------- /FunnyProject/Libs/ShortVideo/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Libs/ShortVideo/.DS_Store -------------------------------------------------------------------------------- /FunnyProject/Libs/ShortVideo/Class/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Libs/ShortVideo/Class/.DS_Store -------------------------------------------------------------------------------- /FunnyProject/Libs/ShortVideo/Res/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Libs/ShortVideo/Res/.DS_Store -------------------------------------------------------------------------------- /FunnyProject/Libs/ShortVideo/Res/play_btn_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Libs/ShortVideo/Res/play_btn_icon@2x.png -------------------------------------------------------------------------------- /FunnyProject/Libs/ShortVideo/Res/play_btn_icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Libs/ShortVideo/Res/play_btn_icon@3x.png -------------------------------------------------------------------------------- /FunnyProject/Libs/ShortVideo/libIJKPlayer/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Libs/ShortVideo/libIJKPlayer/.DS_Store -------------------------------------------------------------------------------- /FunnyProject/Libs/YWFramework/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Libs/YWFramework/.DS_Store -------------------------------------------------------------------------------- /FunnyProject/Libs/YWFramework/AmrCodecFMWK.framework/AmrCodecFMWK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Libs/YWFramework/AmrCodecFMWK.framework/AmrCodecFMWK -------------------------------------------------------------------------------- /FunnyProject/Libs/YWFramework/AmrCodecFMWK.framework/Versions/A/AmrCodecFMWK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Libs/YWFramework/AmrCodecFMWK.framework/Versions/A/AmrCodecFMWK -------------------------------------------------------------------------------- /FunnyProject/Libs/YWFramework/AmrCodecFMWK.framework/Versions/Current/AmrCodecFMWK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Libs/YWFramework/AmrCodecFMWK.framework/Versions/Current/AmrCodecFMWK -------------------------------------------------------------------------------- /FunnyProject/Libs/YWFramework/SecurityGuardSDK.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /FunnyProject/Libs/YWFramework/SecurityGuardSDK.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /FunnyProject/Libs/YWFramework/SecurityGuardSDK.framework/SecurityGuardSDK: -------------------------------------------------------------------------------- 1 | Versions/Current/SecurityGuardSDK -------------------------------------------------------------------------------- /FunnyProject/Libs/YWFramework/SecurityGuardSDK.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Libs/YWFramework/SecurityGuardSDK.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /FunnyProject/Libs/YWFramework/SecurityGuardSDK.framework/Versions/A/Resources/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Libs/YWFramework/SecurityGuardSDK.framework/Versions/A/Resources/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /FunnyProject/Libs/YWFramework/SecurityGuardSDK.framework/Versions/A/SecurityGuardSDK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Libs/YWFramework/SecurityGuardSDK.framework/Versions/A/SecurityGuardSDK -------------------------------------------------------------------------------- /FunnyProject/Libs/YWFramework/SecurityGuardSDK.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /FunnyProject/Libs/YWFramework/UTDID.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /FunnyProject/Libs/YWFramework/UTDID.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /FunnyProject/Libs/YWFramework/UTDID.framework/UTDID: -------------------------------------------------------------------------------- 1 | Versions/Current/UTDID -------------------------------------------------------------------------------- /FunnyProject/Libs/YWFramework/UTDID.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Libs/YWFramework/UTDID.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /FunnyProject/Libs/YWFramework/UTDID.framework/Versions/A/Resources/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Libs/YWFramework/UTDID.framework/Versions/A/Resources/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /FunnyProject/Libs/YWFramework/UTDID.framework/Versions/A/UTDID: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Libs/YWFramework/UTDID.framework/Versions/A/UTDID -------------------------------------------------------------------------------- /FunnyProject/Libs/YWFramework/UTDID.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /FunnyProject/Libs/YWFramework/UTMini.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /FunnyProject/Libs/YWFramework/UTMini.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /FunnyProject/Libs/YWFramework/UTMini.framework/UTMini: -------------------------------------------------------------------------------- 1 | Versions/Current/UTMini -------------------------------------------------------------------------------- /FunnyProject/Libs/YWFramework/UTMini.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Libs/YWFramework/UTMini.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /FunnyProject/Libs/YWFramework/UTMini.framework/Versions/A/UTMini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Libs/YWFramework/UTMini.framework/Versions/A/UTMini -------------------------------------------------------------------------------- /FunnyProject/Libs/YWFramework/UTMini.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /FunnyProject/Libs/YWFramework/WQConnectorBundle.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /FunnyProject/Libs/YWFramework/WQConnectorBundle.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /FunnyProject/Libs/YWFramework/WQConnectorBundle.framework/Versions/A/WQConnectorBundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Libs/YWFramework/WQConnectorBundle.framework/Versions/A/WQConnectorBundle -------------------------------------------------------------------------------- /FunnyProject/Libs/YWFramework/WQConnectorBundle.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /FunnyProject/Libs/YWFramework/WQConnectorBundle.framework/WQConnectorBundle: -------------------------------------------------------------------------------- 1 | Versions/Current/WQConnectorBundle -------------------------------------------------------------------------------- /FunnyProject/Libs/YWFramework/YWFeedbackAudioExtentionFMWK.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /FunnyProject/Libs/YWFramework/YWFeedbackAudioExtentionFMWK.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /FunnyProject/Libs/YWFramework/YWFeedbackAudioExtentionFMWK.framework/Versions/A/YWFeedbackAudioExtentionFMWK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Libs/YWFramework/YWFeedbackAudioExtentionFMWK.framework/Versions/A/YWFeedbackAudioExtentionFMWK -------------------------------------------------------------------------------- /FunnyProject/Libs/YWFramework/YWFeedbackAudioExtentionFMWK.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /FunnyProject/Libs/YWFramework/YWFeedbackAudioExtentionFMWK.framework/YWFeedbackAudioExtentionFMWK: -------------------------------------------------------------------------------- 1 | Versions/Current/YWFeedbackAudioExtentionFMWK -------------------------------------------------------------------------------- /FunnyProject/Libs/YWFramework/YWFeedbackFMWK.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /FunnyProject/Libs/YWFramework/YWFeedbackFMWK.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /FunnyProject/Libs/YWFramework/YWFeedbackFMWK.framework/Versions/A/YWFeedbackFMWK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Libs/YWFramework/YWFeedbackFMWK.framework/Versions/A/YWFeedbackFMWK -------------------------------------------------------------------------------- /FunnyProject/Libs/YWFramework/YWFeedbackFMWK.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /FunnyProject/Libs/YWFramework/YWFeedbackFMWK.framework/YWFeedbackFMWK: -------------------------------------------------------------------------------- 1 | Versions/Current/YWFeedbackFMWK -------------------------------------------------------------------------------- /FunnyProject/Libs/YWFramework/YWHybridWebViewFMWK.framework/Versions/A/YWHybridWebViewFMWK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Libs/YWFramework/YWHybridWebViewFMWK.framework/Versions/A/YWHybridWebViewFMWK -------------------------------------------------------------------------------- /FunnyProject/Libs/YWFramework/YWHybridWebViewFMWK.framework/Versions/Current/YWHybridWebViewFMWK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Libs/YWFramework/YWHybridWebViewFMWK.framework/Versions/Current/YWHybridWebViewFMWK -------------------------------------------------------------------------------- /FunnyProject/Libs/YWFramework/YWHybridWebViewFMWK.framework/YWHybridWebViewFMWK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Libs/YWFramework/YWHybridWebViewFMWK.framework/YWHybridWebViewFMWK -------------------------------------------------------------------------------- /FunnyProject/Libs/YWFramework/yw_1222.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Libs/YWFramework/yw_1222.jpg -------------------------------------------------------------------------------- /FunnyProject/Libs/ZHURLImageSize/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Libs/ZHURLImageSize/.DS_Store -------------------------------------------------------------------------------- /FunnyProject/Libs/umeng_ios_social_sdk_5.2.1_arm64_custom/UMSocial_Sdk_5.2.1/libUMSocial_Sdk_5.2.1.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Libs/umeng_ios_social_sdk_5.2.1_arm64_custom/UMSocial_Sdk_5.2.1/libUMSocial_Sdk_5.2.1.a -------------------------------------------------------------------------------- /FunnyProject/Libs/umeng_ios_social_sdk_5.2.1_arm64_custom/UMSocial_Sdk_Extra_Frameworks/SinaSSO/libSocialSinaSSO.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Libs/umeng_ios_social_sdk_5.2.1_arm64_custom/UMSocial_Sdk_Extra_Frameworks/SinaSSO/libSocialSinaSSO.a -------------------------------------------------------------------------------- /FunnyProject/Libs/umeng_ios_social_sdk_5.2.1_arm64_custom/UMSocial_Sdk_Extra_Frameworks/SinaSSO/libWeiboSDK.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Libs/umeng_ios_social_sdk_5.2.1_arm64_custom/UMSocial_Sdk_Extra_Frameworks/SinaSSO/libWeiboSDK.a -------------------------------------------------------------------------------- /FunnyProject/Libs/umeng_ios_social_sdk_5.2.1_arm64_custom/UMSocial_Sdk_Extra_Frameworks/Wechat/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Libs/umeng_ios_social_sdk_5.2.1_arm64_custom/UMSocial_Sdk_Extra_Frameworks/Wechat/.DS_Store -------------------------------------------------------------------------------- /FunnyProject/Libs/umeng_ios_social_sdk_5.2.1_arm64_custom/UMSocial_Sdk_Extra_Frameworks/Wechat/libWeChatSDK.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Libs/umeng_ios_social_sdk_5.2.1_arm64_custom/UMSocial_Sdk_Extra_Frameworks/Wechat/libWeChatSDK.a -------------------------------------------------------------------------------- /FunnyProject/Libs/umeng_ios_social_sdk_5.2.1_arm64_custom/UMSocial_Sdk_Instructions/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Libs/umeng_ios_social_sdk_5.2.1_arm64_custom/UMSocial_Sdk_Instructions/.DS_Store -------------------------------------------------------------------------------- /FunnyProject/Models/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/Models/.DS_Store -------------------------------------------------------------------------------- /FunnyProject/ViewController/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/ViewController/.DS_Store -------------------------------------------------------------------------------- /FunnyProject/ViewController/Images/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/ViewController/Images/.DS_Store -------------------------------------------------------------------------------- /FunnyProject/ViewController/Images/QQ@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/ViewController/Images/QQ@2x.png -------------------------------------------------------------------------------- /FunnyProject/ViewController/Images/QQZone@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/ViewController/Images/QQZone@2x.png -------------------------------------------------------------------------------- /FunnyProject/ViewController/Images/QQZone_click@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/ViewController/Images/QQZone_click@2x.png -------------------------------------------------------------------------------- /FunnyProject/ViewController/Images/QQ_click@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/ViewController/Images/QQ_click@2x.png -------------------------------------------------------------------------------- /FunnyProject/ViewController/Images/copyLink@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/ViewController/Images/copyLink@2x.png -------------------------------------------------------------------------------- /FunnyProject/ViewController/Images/copyLink_click@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/ViewController/Images/copyLink_click@2x.png -------------------------------------------------------------------------------- /FunnyProject/ViewController/Images/download@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/ViewController/Images/download@2x.png -------------------------------------------------------------------------------- /FunnyProject/ViewController/Images/download_click@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/ViewController/Images/download_click@2x.png -------------------------------------------------------------------------------- /FunnyProject/ViewController/Images/favorite@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/ViewController/Images/favorite@2x.png -------------------------------------------------------------------------------- /FunnyProject/ViewController/Images/favorite_click@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/ViewController/Images/favorite_click@2x.png -------------------------------------------------------------------------------- /FunnyProject/ViewController/Images/favorited@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/ViewController/Images/favorited@2x.png -------------------------------------------------------------------------------- /FunnyProject/ViewController/Images/favorited_click@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/ViewController/Images/favorited_click@2x.png -------------------------------------------------------------------------------- /FunnyProject/ViewController/Images/report@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/ViewController/Images/report@2x.png -------------------------------------------------------------------------------- /FunnyProject/ViewController/Images/report_Click@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/ViewController/Images/report_Click@2x.png -------------------------------------------------------------------------------- /FunnyProject/ViewController/Images/share_pengyou@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/ViewController/Images/share_pengyou@2x.png -------------------------------------------------------------------------------- /FunnyProject/ViewController/Images/share_pengyou_click@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/ViewController/Images/share_pengyou_click@2x.png -------------------------------------------------------------------------------- /FunnyProject/ViewController/Images/sinaWeibo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/ViewController/Images/sinaWeibo@2x.png -------------------------------------------------------------------------------- /FunnyProject/ViewController/Images/sinaWeibo_click@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/ViewController/Images/sinaWeibo_click@2x.png -------------------------------------------------------------------------------- /FunnyProject/ViewController/Images/weixin@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/ViewController/Images/weixin@2x.png -------------------------------------------------------------------------------- /FunnyProject/ViewController/Images/weixin_click@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/FunnyProject/ViewController/Images/weixin_click@2x.png -------------------------------------------------------------------------------- /FunnyProject/ViewController/ThemeColor.txt: -------------------------------------------------------------------------------- 1 | NORMAL NIGHT 2 | #ffffff #343434 BG -------------------------------------------------------------------------------- /Pods/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/Pods/.DS_Store -------------------------------------------------------------------------------- /Pods/DKNightVersion/DKNightVersion/ColorTable/DKColorTable.txt: -------------------------------------------------------------------------------- 1 | NORMAL NIGHT RED 2 | #ffffff #343434 #fafafa BG 3 | #aaaaaa #313131 #aaaaaa SEP 4 | #0000ff #ffffff #fa0000 TINT 5 | #000000 #ffffff #000000 TEXT 6 | #ffffff #444444 #ffffff BAR 7 | #f0f0f0 #222222 #dedede HIGHLIGHTED -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/AFAutoPurgingImageCache.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/AFAutoPurgingImageCache.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/AFHTTPSessionManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFHTTPSessionManager.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/AFImageDownloader.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/AFImageDownloader.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/AFNetworkActivityIndicatorManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/AFNetworkActivityIndicatorManager.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/AFNetworkReachabilityManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFNetworkReachabilityManager.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/AFSecurityPolicy.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFSecurityPolicy.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/AFURLRequestSerialization.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLRequestSerialization.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/AFURLResponseSerialization.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLResponseSerialization.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/AFURLSessionManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLSessionManager.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/UIActivityIndicatorView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/UIButton+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/UIImage+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIImage+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/UIImageView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIImageView+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/UIKit+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIKit+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/UIProgressView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIProgressView+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/UIRefreshControl+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIRefreshControl+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/UIWebView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIWebView+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ActionSheetPicker-3.0/AbstractActionSheetPicker.h: -------------------------------------------------------------------------------- 1 | ../../../ActionSheetPicker-3.0/Pickers/AbstractActionSheetPicker.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ActionSheetPicker-3.0/ActionSheetCustomPicker.h: -------------------------------------------------------------------------------- 1 | ../../../ActionSheetPicker-3.0/Pickers/ActionSheetCustomPicker.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ActionSheetPicker-3.0/ActionSheetCustomPickerDelegate.h: -------------------------------------------------------------------------------- 1 | ../../../ActionSheetPicker-3.0/Pickers/ActionSheetCustomPickerDelegate.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ActionSheetPicker-3.0/ActionSheetDatePicker.h: -------------------------------------------------------------------------------- 1 | ../../../ActionSheetPicker-3.0/Pickers/ActionSheetDatePicker.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ActionSheetPicker-3.0/ActionSheetDistancePicker.h: -------------------------------------------------------------------------------- 1 | ../../../ActionSheetPicker-3.0/Pickers/ActionSheetDistancePicker.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ActionSheetPicker-3.0/ActionSheetLocalePicker.h: -------------------------------------------------------------------------------- 1 | ../../../ActionSheetPicker-3.0/Pickers/ActionSheetLocalePicker.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ActionSheetPicker-3.0/ActionSheetMultipleStringPicker.h: -------------------------------------------------------------------------------- 1 | ../../../ActionSheetPicker-3.0/Pickers/ActionSheetMultipleStringPicker.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ActionSheetPicker-3.0/ActionSheetPicker.h: -------------------------------------------------------------------------------- 1 | ../../../ActionSheetPicker-3.0/Pickers/ActionSheetPicker.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ActionSheetPicker-3.0/ActionSheetStringPicker.h: -------------------------------------------------------------------------------- 1 | ../../../ActionSheetPicker-3.0/Pickers/ActionSheetStringPicker.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ActionSheetPicker-3.0/DistancePickerView.h: -------------------------------------------------------------------------------- 1 | ../../../ActionSheetPicker-3.0/Pickers/DistancePickerView.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ActionSheetPicker-3.0/SWActionSheet.h: -------------------------------------------------------------------------------- 1 | ../../../ActionSheetPicker-3.0/Pickers/SWActionSheet.h -------------------------------------------------------------------------------- /Pods/Headers/Private/DKNightVersion/CALayer+Night.h: -------------------------------------------------------------------------------- 1 | ../../../DKNightVersion/DKNightVersion/CoreAnimation/CALayer+Night.h -------------------------------------------------------------------------------- /Pods/Headers/Private/DKNightVersion/CoreAnimation+Night.h: -------------------------------------------------------------------------------- 1 | ../../../DKNightVersion/DKNightVersion/CoreAnimation/CoreAnimation+Night.h -------------------------------------------------------------------------------- /Pods/Headers/Private/DKNightVersion/DKColor.h: -------------------------------------------------------------------------------- 1 | ../../../DKNightVersion/DKNightVersion/Core/DKColor.h -------------------------------------------------------------------------------- /Pods/Headers/Private/DKNightVersion/DKColorTable.h: -------------------------------------------------------------------------------- 1 | ../../../DKNightVersion/DKNightVersion/ColorTable/DKColorTable.h -------------------------------------------------------------------------------- /Pods/Headers/Private/DKNightVersion/DKDeallocBlockExecutor.h: -------------------------------------------------------------------------------- 1 | ../../../DKNightVersion/DKNightVersion/DeallocBlockExecutor/DKDeallocBlockExecutor.h -------------------------------------------------------------------------------- /Pods/Headers/Private/DKNightVersion/DKImage.h: -------------------------------------------------------------------------------- 1 | ../../../DKNightVersion/DKNightVersion/Core/DKImage.h -------------------------------------------------------------------------------- /Pods/Headers/Private/DKNightVersion/DKNightVersion.h: -------------------------------------------------------------------------------- 1 | ../../../DKNightVersion/DKNightVersion/DKNightVersion.h -------------------------------------------------------------------------------- /Pods/Headers/Private/DKNightVersion/DKNightVersionManager.h: -------------------------------------------------------------------------------- 1 | ../../../DKNightVersion/DKNightVersion/Core/DKNightVersionManager.h -------------------------------------------------------------------------------- /Pods/Headers/Private/DKNightVersion/EXTKeyPathCoding.h: -------------------------------------------------------------------------------- 1 | ../../../DKNightVersion/DKNightVersion/extobjc/EXTKeyPathCoding.h -------------------------------------------------------------------------------- /Pods/Headers/Private/DKNightVersion/NSObject+DeallocBlock.h: -------------------------------------------------------------------------------- 1 | ../../../DKNightVersion/DKNightVersion/DeallocBlockExecutor/NSObject+DeallocBlock.h -------------------------------------------------------------------------------- /Pods/Headers/Private/DKNightVersion/NSObject+Night.h: -------------------------------------------------------------------------------- 1 | ../../../DKNightVersion/DKNightVersion/Core/NSObject+Night.h -------------------------------------------------------------------------------- /Pods/Headers/Private/DKNightVersion/UIBarButtonItem+Night.h: -------------------------------------------------------------------------------- 1 | ../../../DKNightVersion/DKNightVersion/UIKit/UIBarButtonItem+Night.h -------------------------------------------------------------------------------- /Pods/Headers/Private/DKNightVersion/UIButton+Night.h: -------------------------------------------------------------------------------- 1 | ../../../DKNightVersion/DKNightVersion/Manual/UIButton+Night.h -------------------------------------------------------------------------------- /Pods/Headers/Private/DKNightVersion/UIControl+Night.h: -------------------------------------------------------------------------------- 1 | ../../../DKNightVersion/DKNightVersion/UIKit/UIControl+Night.h -------------------------------------------------------------------------------- /Pods/Headers/Private/DKNightVersion/UIImageView+Night.h: -------------------------------------------------------------------------------- 1 | ../../../DKNightVersion/DKNightVersion/Manual/UIImageView+Night.h -------------------------------------------------------------------------------- /Pods/Headers/Private/DKNightVersion/UILabel+Night.h: -------------------------------------------------------------------------------- 1 | ../../../DKNightVersion/DKNightVersion/UIKit/UILabel+Night.h -------------------------------------------------------------------------------- /Pods/Headers/Private/DKNightVersion/UINavigationBar+Animation.h: -------------------------------------------------------------------------------- 1 | ../../../DKNightVersion/DKNightVersion/Manual/UINavigationBar+Animation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/DKNightVersion/UINavigationBar+Night.h: -------------------------------------------------------------------------------- 1 | ../../../DKNightVersion/DKNightVersion/UIKit/UINavigationBar+Night.h -------------------------------------------------------------------------------- /Pods/Headers/Private/DKNightVersion/UIPageControl+Night.h: -------------------------------------------------------------------------------- 1 | ../../../DKNightVersion/DKNightVersion/UIKit/UIPageControl+Night.h -------------------------------------------------------------------------------- /Pods/Headers/Private/DKNightVersion/UIProgressView+Night.h: -------------------------------------------------------------------------------- 1 | ../../../DKNightVersion/DKNightVersion/UIKit/UIProgressView+Night.h -------------------------------------------------------------------------------- /Pods/Headers/Private/DKNightVersion/UISearchBar+Keyboard.h: -------------------------------------------------------------------------------- 1 | ../../../DKNightVersion/DKNightVersion/Manual/UISearchBar+Keyboard.h -------------------------------------------------------------------------------- /Pods/Headers/Private/DKNightVersion/UISearchBar+Night.h: -------------------------------------------------------------------------------- 1 | ../../../DKNightVersion/DKNightVersion/UIKit/UISearchBar+Night.h -------------------------------------------------------------------------------- /Pods/Headers/Private/DKNightVersion/UISlider+Night.h: -------------------------------------------------------------------------------- 1 | ../../../DKNightVersion/DKNightVersion/UIKit/UISlider+Night.h -------------------------------------------------------------------------------- /Pods/Headers/Private/DKNightVersion/UISwitch+Night.h: -------------------------------------------------------------------------------- 1 | ../../../DKNightVersion/DKNightVersion/UIKit/UISwitch+Night.h -------------------------------------------------------------------------------- /Pods/Headers/Private/DKNightVersion/UITabBar+Night.h: -------------------------------------------------------------------------------- 1 | ../../../DKNightVersion/DKNightVersion/UIKit/UITabBar+Night.h -------------------------------------------------------------------------------- /Pods/Headers/Private/DKNightVersion/UITableView+Night.h: -------------------------------------------------------------------------------- 1 | ../../../DKNightVersion/DKNightVersion/UIKit/UITableView+Night.h -------------------------------------------------------------------------------- /Pods/Headers/Private/DKNightVersion/UITextField+Keyboard.h: -------------------------------------------------------------------------------- 1 | ../../../DKNightVersion/DKNightVersion/Manual/UITextField+Keyboard.h -------------------------------------------------------------------------------- /Pods/Headers/Private/DKNightVersion/UITextField+Night.h: -------------------------------------------------------------------------------- 1 | ../../../DKNightVersion/DKNightVersion/UIKit/UITextField+Night.h -------------------------------------------------------------------------------- /Pods/Headers/Private/DKNightVersion/UITextView+Keyboard.h: -------------------------------------------------------------------------------- 1 | ../../../DKNightVersion/DKNightVersion/Manual/UITextView+Keyboard.h -------------------------------------------------------------------------------- /Pods/Headers/Private/DKNightVersion/UITextView+Night.h: -------------------------------------------------------------------------------- 1 | ../../../DKNightVersion/DKNightVersion/UIKit/UITextView+Night.h -------------------------------------------------------------------------------- /Pods/Headers/Private/DKNightVersion/UIToolbar+Night.h: -------------------------------------------------------------------------------- 1 | ../../../DKNightVersion/DKNightVersion/UIKit/UIToolbar+Night.h -------------------------------------------------------------------------------- /Pods/Headers/Private/DKNightVersion/UIView+Night.h: -------------------------------------------------------------------------------- 1 | ../../../DKNightVersion/DKNightVersion/UIKit/UIView+Night.h -------------------------------------------------------------------------------- /Pods/Headers/Private/DKNightVersion/metamacros.h: -------------------------------------------------------------------------------- 1 | ../../../DKNightVersion/DKNightVersion/extobjc/metamacros.h -------------------------------------------------------------------------------- /Pods/Headers/Private/DZNEmptyDataSet/UIScrollView+EmptyDataSet.h: -------------------------------------------------------------------------------- 1 | ../../../DZNEmptyDataSet/Source/UIScrollView+EmptyDataSet.h -------------------------------------------------------------------------------- /Pods/Headers/Private/EAIntroView/EAIntroPage.h: -------------------------------------------------------------------------------- 1 | ../../../EAIntroView/EAIntroView/EAIntroPage.h -------------------------------------------------------------------------------- /Pods/Headers/Private/EAIntroView/EAIntroView.h: -------------------------------------------------------------------------------- 1 | ../../../EAIntroView/EAIntroView/EAIntroView.h -------------------------------------------------------------------------------- /Pods/Headers/Private/EARestrictedScrollView/EARestrictedScrollView.h: -------------------------------------------------------------------------------- 1 | ../../../EARestrictedScrollView/EARestrictedScrollView/EARestrictedScrollView.h -------------------------------------------------------------------------------- /Pods/Headers/Private/FMDB/FMDB.h: -------------------------------------------------------------------------------- 1 | ../../../FMDB/src/fmdb/FMDB.h -------------------------------------------------------------------------------- /Pods/Headers/Private/FMDB/FMDatabase.h: -------------------------------------------------------------------------------- 1 | ../../../FMDB/src/fmdb/FMDatabase.h -------------------------------------------------------------------------------- /Pods/Headers/Private/FMDB/FMDatabaseAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../FMDB/src/fmdb/FMDatabaseAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/FMDB/FMDatabasePool.h: -------------------------------------------------------------------------------- 1 | ../../../FMDB/src/fmdb/FMDatabasePool.h -------------------------------------------------------------------------------- /Pods/Headers/Private/FMDB/FMDatabaseQueue.h: -------------------------------------------------------------------------------- 1 | ../../../FMDB/src/fmdb/FMDatabaseQueue.h -------------------------------------------------------------------------------- /Pods/Headers/Private/FMDB/FMResultSet.h: -------------------------------------------------------------------------------- 1 | ../../../FMDB/src/fmdb/FMResultSet.h -------------------------------------------------------------------------------- /Pods/Headers/Private/IQKeyboardManager/IQBarButtonItem.h: -------------------------------------------------------------------------------- 1 | ../../../IQKeyboardManager/IQKeyBoardManager/IQToolbar/IQBarButtonItem.h -------------------------------------------------------------------------------- /Pods/Headers/Private/IQKeyboardManager/IQKeyboardManager.h: -------------------------------------------------------------------------------- 1 | ../../../IQKeyboardManager/IQKeyBoardManager/IQKeyboardManager.h -------------------------------------------------------------------------------- /Pods/Headers/Private/IQKeyboardManager/IQKeyboardManagerConstants.h: -------------------------------------------------------------------------------- 1 | ../../../IQKeyboardManager/IQKeyBoardManager/Constants/IQKeyboardManagerConstants.h -------------------------------------------------------------------------------- /Pods/Headers/Private/IQKeyboardManager/IQKeyboardManagerConstantsInternal.h: -------------------------------------------------------------------------------- 1 | ../../../IQKeyboardManager/IQKeyBoardManager/Constants/IQKeyboardManagerConstantsInternal.h -------------------------------------------------------------------------------- /Pods/Headers/Private/IQKeyboardManager/IQKeyboardReturnKeyHandler.h: -------------------------------------------------------------------------------- 1 | ../../../IQKeyboardManager/IQKeyBoardManager/IQKeyboardReturnKeyHandler.h -------------------------------------------------------------------------------- /Pods/Headers/Private/IQKeyboardManager/IQNSArray+Sort.h: -------------------------------------------------------------------------------- 1 | ../../../IQKeyboardManager/IQKeyBoardManager/Categories/IQNSArray+Sort.h -------------------------------------------------------------------------------- /Pods/Headers/Private/IQKeyboardManager/IQTextView.h: -------------------------------------------------------------------------------- 1 | ../../../IQKeyboardManager/IQKeyBoardManager/IQTextView/IQTextView.h -------------------------------------------------------------------------------- /Pods/Headers/Private/IQKeyboardManager/IQTitleBarButtonItem.h: -------------------------------------------------------------------------------- 1 | ../../../IQKeyboardManager/IQKeyBoardManager/IQToolbar/IQTitleBarButtonItem.h -------------------------------------------------------------------------------- /Pods/Headers/Private/IQKeyboardManager/IQToolbar.h: -------------------------------------------------------------------------------- 1 | ../../../IQKeyboardManager/IQKeyBoardManager/IQToolbar/IQToolbar.h -------------------------------------------------------------------------------- /Pods/Headers/Private/IQKeyboardManager/IQUIScrollView+Additions.h: -------------------------------------------------------------------------------- 1 | ../../../IQKeyboardManager/IQKeyBoardManager/Categories/IQUIScrollView+Additions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/IQKeyboardManager/IQUITextFieldView+Additions.h: -------------------------------------------------------------------------------- 1 | ../../../IQKeyboardManager/IQKeyBoardManager/Categories/IQUITextFieldView+Additions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/IQKeyboardManager/IQUIView+Hierarchy.h: -------------------------------------------------------------------------------- 1 | ../../../IQKeyboardManager/IQKeyBoardManager/Categories/IQUIView+Hierarchy.h -------------------------------------------------------------------------------- /Pods/Headers/Private/IQKeyboardManager/IQUIView+IQKeyboardToolbar.h: -------------------------------------------------------------------------------- 1 | ../../../IQKeyboardManager/IQKeyBoardManager/IQToolbar/IQUIView+IQKeyboardToolbar.h -------------------------------------------------------------------------------- /Pods/Headers/Private/IQKeyboardManager/IQUIViewController+Additions.h: -------------------------------------------------------------------------------- 1 | ../../../IQKeyboardManager/IQKeyBoardManager/Categories/IQUIViewController+Additions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/IQKeyboardManager/IQUIWindow+Hierarchy.h: -------------------------------------------------------------------------------- 1 | ../../../IQKeyboardManager/IQKeyBoardManager/Categories/IQUIWindow+Hierarchy.h -------------------------------------------------------------------------------- /Pods/Headers/Private/IQKeyboardManager/KeyboardManager.h: -------------------------------------------------------------------------------- 1 | ../../../IQKeyboardManager/IQKeyBoardManager/KeyboardManager.h -------------------------------------------------------------------------------- /Pods/Headers/Private/JSONModel/JSONAPI.h: -------------------------------------------------------------------------------- 1 | ../../../JSONModel/JSONModel/JSONModelNetworking/JSONAPI.h -------------------------------------------------------------------------------- /Pods/Headers/Private/JSONModel/JSONHTTPClient.h: -------------------------------------------------------------------------------- 1 | ../../../JSONModel/JSONModel/JSONModelNetworking/JSONHTTPClient.h -------------------------------------------------------------------------------- /Pods/Headers/Private/JSONModel/JSONKeyMapper.h: -------------------------------------------------------------------------------- 1 | ../../../JSONModel/JSONModel/JSONModelTransformations/JSONKeyMapper.h -------------------------------------------------------------------------------- /Pods/Headers/Private/JSONModel/JSONModel+networking.h: -------------------------------------------------------------------------------- 1 | ../../../JSONModel/JSONModel/JSONModelNetworking/JSONModel+networking.h -------------------------------------------------------------------------------- /Pods/Headers/Private/JSONModel/JSONModel.h: -------------------------------------------------------------------------------- 1 | ../../../JSONModel/JSONModel/JSONModel/JSONModel.h -------------------------------------------------------------------------------- /Pods/Headers/Private/JSONModel/JSONModelArray.h: -------------------------------------------------------------------------------- 1 | ../../../JSONModel/JSONModel/JSONModel/JSONModelArray.h -------------------------------------------------------------------------------- /Pods/Headers/Private/JSONModel/JSONModelClassProperty.h: -------------------------------------------------------------------------------- 1 | ../../../JSONModel/JSONModel/JSONModel/JSONModelClassProperty.h -------------------------------------------------------------------------------- /Pods/Headers/Private/JSONModel/JSONModelError.h: -------------------------------------------------------------------------------- 1 | ../../../JSONModel/JSONModel/JSONModel/JSONModelError.h -------------------------------------------------------------------------------- /Pods/Headers/Private/JSONModel/JSONModelLib.h: -------------------------------------------------------------------------------- 1 | ../../../JSONModel/JSONModel/JSONModelLib.h -------------------------------------------------------------------------------- /Pods/Headers/Private/JSONModel/JSONValueTransformer.h: -------------------------------------------------------------------------------- 1 | ../../../JSONModel/JSONModel/JSONModelTransformations/JSONValueTransformer.h -------------------------------------------------------------------------------- /Pods/Headers/Private/JSONModel/NSArray+JSONModel.h: -------------------------------------------------------------------------------- 1 | ../../../JSONModel/JSONModel/JSONModelCategories/NSArray+JSONModel.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MBProgressHUD/MBProgressHUD.h: -------------------------------------------------------------------------------- 1 | ../../../MBProgressHUD/MBProgressHUD.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MJRefresh/MJRefresh.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/MJRefresh.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MJRefresh/MJRefreshAutoFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Base/MJRefreshAutoFooter.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MJRefresh/MJRefreshAutoGifFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoGifFooter.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MJRefresh/MJRefreshAutoNormalFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoNormalFooter.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MJRefresh/MJRefreshAutoStateFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoStateFooter.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MJRefresh/MJRefreshBackFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Base/MJRefreshBackFooter.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MJRefresh/MJRefreshBackGifFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackGifFooter.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MJRefresh/MJRefreshBackNormalFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackNormalFooter.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MJRefresh/MJRefreshBackStateFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackStateFooter.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MJRefresh/MJRefreshComponent.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Base/MJRefreshComponent.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MJRefresh/MJRefreshConst.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/MJRefreshConst.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MJRefresh/MJRefreshFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Base/MJRefreshFooter.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MJRefresh/MJRefreshGifHeader.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Header/MJRefreshGifHeader.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MJRefresh/MJRefreshHeader.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Base/MJRefreshHeader.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MJRefresh/MJRefreshNormalHeader.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Header/MJRefreshNormalHeader.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MJRefresh/MJRefreshStateHeader.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Header/MJRefreshStateHeader.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MJRefresh/UIScrollView+MJExtension.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/UIScrollView+MJExtension.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MJRefresh/UIScrollView+MJRefresh.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/UIScrollView+MJRefresh.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MJRefresh/UIView+MJExtension.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/UIView+MJExtension.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MRProgress/MRActivityIndicatorView.h: -------------------------------------------------------------------------------- 1 | ../../../MRProgress/src/Components/MRActivityIndicatorView.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MRProgress/MRBlurView.h: -------------------------------------------------------------------------------- 1 | ../../../MRProgress/src/Blur/MRBlurView.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MRProgress/MRCircularProgressView.h: -------------------------------------------------------------------------------- 1 | ../../../MRProgress/src/Components/MRCircularProgressView.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MRProgress/MRIconView.h: -------------------------------------------------------------------------------- 1 | ../../../MRProgress/src/Components/MRIconView.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MRProgress/MRNavigationBarProgressView.h: -------------------------------------------------------------------------------- 1 | ../../../MRProgress/src/Components/MRNavigationBarProgressView.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MRProgress/MRProgress.h: -------------------------------------------------------------------------------- 1 | ../../../MRProgress/src/MRProgress.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MRProgress/MRProgressHelper.h: -------------------------------------------------------------------------------- 1 | ../../../MRProgress/src/Utils/MRProgressHelper.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MRProgress/MRProgressOverlayView.h: -------------------------------------------------------------------------------- 1 | ../../../MRProgress/src/Components/MRProgressOverlayView.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MRProgress/MRProgressView.h: -------------------------------------------------------------------------------- 1 | ../../../MRProgress/src/Components/MRProgressView.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MRProgress/MRStopButton.h: -------------------------------------------------------------------------------- 1 | ../../../MRProgress/src/Components/MRStopButton.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MRProgress/MRStopableView.h: -------------------------------------------------------------------------------- 1 | ../../../MRProgress/src/Components/MRStopableView.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MRProgress/UIImage+MRImageEffects.h: -------------------------------------------------------------------------------- 1 | ../../../MRProgress/src/Blur/UIImage+MRImageEffects.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MagicalRecord/MagicalRecord/MagicalImportFunctions.h: -------------------------------------------------------------------------------- 1 | ../../../../MagicalRecord/MagicalRecord/Categories/DataImport/MagicalImportFunctions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MagicalRecord/MagicalRecord/MagicalRecord+Actions.h: -------------------------------------------------------------------------------- 1 | ../../../../MagicalRecord/MagicalRecord/Core/MagicalRecord+Actions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MagicalRecord/MagicalRecord/MagicalRecord+ErrorHandling.h: -------------------------------------------------------------------------------- 1 | ../../../../MagicalRecord/MagicalRecord/Core/MagicalRecord+ErrorHandling.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MagicalRecord/MagicalRecord/MagicalRecord+Options.h: -------------------------------------------------------------------------------- 1 | ../../../../MagicalRecord/MagicalRecord/Core/MagicalRecord+Options.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MagicalRecord/MagicalRecord/MagicalRecord+Setup.h: -------------------------------------------------------------------------------- 1 | ../../../../MagicalRecord/MagicalRecord/Core/MagicalRecord+Setup.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MagicalRecord/MagicalRecord/MagicalRecord+ShorthandMethods.h: -------------------------------------------------------------------------------- 1 | ../../../../MagicalRecord/MagicalRecord/Core/MagicalRecord+ShorthandMethods.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MagicalRecord/MagicalRecord/MagicalRecord+iCloud.h: -------------------------------------------------------------------------------- 1 | ../../../../MagicalRecord/MagicalRecord/Core/MagicalRecord+iCloud.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MagicalRecord/MagicalRecord/MagicalRecord.h: -------------------------------------------------------------------------------- 1 | ../../../../MagicalRecord/MagicalRecord/MagicalRecord.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MagicalRecord/MagicalRecord/MagicalRecordDeprecationMacros.h: -------------------------------------------------------------------------------- 1 | ../../../../MagicalRecord/MagicalRecord/Core/MagicalRecordDeprecationMacros.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MagicalRecord/MagicalRecord/MagicalRecordInternal.h: -------------------------------------------------------------------------------- 1 | ../../../../MagicalRecord/MagicalRecord/Core/MagicalRecordInternal.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MagicalRecord/MagicalRecord/MagicalRecordLogging.h: -------------------------------------------------------------------------------- 1 | ../../../../MagicalRecord/MagicalRecord/Core/MagicalRecordLogging.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MagicalRecord/MagicalRecord/MagicalRecordXcode7CompatibilityMacros.h: -------------------------------------------------------------------------------- 1 | ../../../../MagicalRecord/MagicalRecord/Core/MagicalRecordXcode7CompatibilityMacros.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MagicalRecord/MagicalRecord/NSAttributeDescription+MagicalDataImport.h: -------------------------------------------------------------------------------- 1 | ../../../../MagicalRecord/MagicalRecord/Categories/DataImport/NSAttributeDescription+MagicalDataImport.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MagicalRecord/MagicalRecord/NSEntityDescription+MagicalDataImport.h: -------------------------------------------------------------------------------- 1 | ../../../../MagicalRecord/MagicalRecord/Categories/DataImport/NSEntityDescription+MagicalDataImport.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MagicalRecord/MagicalRecord/NSManagedObject+MagicalAggregation.h: -------------------------------------------------------------------------------- 1 | ../../../../MagicalRecord/MagicalRecord/Categories/NSManagedObject/NSManagedObject+MagicalAggregation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MagicalRecord/MagicalRecord/NSManagedObject+MagicalDataImport.h: -------------------------------------------------------------------------------- 1 | ../../../../MagicalRecord/MagicalRecord/Categories/NSManagedObject/NSManagedObject+MagicalDataImport.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MagicalRecord/MagicalRecord/NSManagedObject+MagicalFinders.h: -------------------------------------------------------------------------------- 1 | ../../../../MagicalRecord/MagicalRecord/Categories/NSManagedObject/NSManagedObject+MagicalFinders.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MagicalRecord/MagicalRecord/NSManagedObject+MagicalRecord.h: -------------------------------------------------------------------------------- 1 | ../../../../MagicalRecord/MagicalRecord/Categories/NSManagedObject/NSManagedObject+MagicalRecord.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MagicalRecord/MagicalRecord/NSManagedObject+MagicalRequests.h: -------------------------------------------------------------------------------- 1 | ../../../../MagicalRecord/MagicalRecord/Categories/NSManagedObject/NSManagedObject+MagicalRequests.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MagicalRecord/MagicalRecord/NSManagedObjectContext+MagicalChainSave.h: -------------------------------------------------------------------------------- 1 | ../../../../MagicalRecord/MagicalRecord/Categories/NSManagedObjectContext/NSManagedObjectContext+MagicalChainSave.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MagicalRecord/MagicalRecord/NSManagedObjectContext+MagicalObserving.h: -------------------------------------------------------------------------------- 1 | ../../../../MagicalRecord/MagicalRecord/Categories/NSManagedObjectContext/NSManagedObjectContext+MagicalObserving.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MagicalRecord/MagicalRecord/NSManagedObjectContext+MagicalRecord.h: -------------------------------------------------------------------------------- 1 | ../../../../MagicalRecord/MagicalRecord/Categories/NSManagedObjectContext/NSManagedObjectContext+MagicalRecord.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MagicalRecord/MagicalRecord/NSManagedObjectContext+MagicalSaves.h: -------------------------------------------------------------------------------- 1 | ../../../../MagicalRecord/MagicalRecord/Categories/NSManagedObjectContext/NSManagedObjectContext+MagicalSaves.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MagicalRecord/MagicalRecord/NSManagedObjectContext+MagicalThreading.h: -------------------------------------------------------------------------------- 1 | ../../../../MagicalRecord/MagicalRecord/Categories/NSManagedObjectContext/NSManagedObjectContext+MagicalThreading.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MagicalRecord/MagicalRecord/NSManagedObjectModel+MagicalRecord.h: -------------------------------------------------------------------------------- 1 | ../../../../MagicalRecord/MagicalRecord/Categories/NSManagedObjectModel+MagicalRecord.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MagicalRecord/MagicalRecord/NSNumber+MagicalDataImport.h: -------------------------------------------------------------------------------- 1 | ../../../../MagicalRecord/MagicalRecord/Categories/DataImport/NSNumber+MagicalDataImport.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MagicalRecord/MagicalRecord/NSObject+MagicalDataImport.h: -------------------------------------------------------------------------------- 1 | ../../../../MagicalRecord/MagicalRecord/Categories/DataImport/NSObject+MagicalDataImport.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MagicalRecord/MagicalRecord/NSPersistentStore+MagicalRecord.h: -------------------------------------------------------------------------------- 1 | ../../../../MagicalRecord/MagicalRecord/Categories/NSPersistentStore+MagicalRecord.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MagicalRecord/MagicalRecord/NSPersistentStoreCoordinator+MagicalRecord.h: -------------------------------------------------------------------------------- 1 | ../../../../MagicalRecord/MagicalRecord/Categories/NSPersistentStoreCoordinator+MagicalRecord.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MagicalRecord/MagicalRecord/NSRelationshipDescription+MagicalDataImport.h: -------------------------------------------------------------------------------- 1 | ../../../../MagicalRecord/MagicalRecord/Categories/DataImport/NSRelationshipDescription+MagicalDataImport.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MagicalRecord/MagicalRecord/NSString+MagicalDataImport.h: -------------------------------------------------------------------------------- 1 | ../../../../MagicalRecord/MagicalRecord/Categories/DataImport/NSString+MagicalDataImport.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/MASCompositeConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASCompositeConstraint.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/MASConstraint+Private.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraint+Private.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/MASConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraint.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/MASConstraintMaker.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraintMaker.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/MASLayoutConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASLayoutConstraint.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/MASUtilities.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASUtilities.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/MASViewAttribute.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASViewAttribute.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/MASViewConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASViewConstraint.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/Masonry.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/Masonry.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/NSArray+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSArray+MASAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/NSArray+MASShorthandAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSArray+MASShorthandAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/NSLayoutConstraint+MASDebugAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/View+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/View+MASAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/View+MASShorthandAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/View+MASShorthandAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/ViewController+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/ViewController+MASAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/NJKWebViewProgress/NJKWebViewProgress.h: -------------------------------------------------------------------------------- 1 | ../../../NJKWebViewProgress/NJKWebViewProgress/NJKWebViewProgress.h -------------------------------------------------------------------------------- /Pods/Headers/Private/NJKWebViewProgress/NJKWebViewProgressView.h: -------------------------------------------------------------------------------- 1 | ../../../NJKWebViewProgress/NJKWebViewProgress/NJKWebViewProgressView.h -------------------------------------------------------------------------------- /Pods/Headers/Private/PopMenu/GlowImageView.h: -------------------------------------------------------------------------------- 1 | ../../../PopMenu/PopMenu/GlowImageView.h -------------------------------------------------------------------------------- /Pods/Headers/Private/PopMenu/MenuButton.h: -------------------------------------------------------------------------------- 1 | ../../../PopMenu/PopMenu/MenuButton.h -------------------------------------------------------------------------------- /Pods/Headers/Private/PopMenu/MenuItem.h: -------------------------------------------------------------------------------- 1 | ../../../PopMenu/PopMenu/MenuItem.h -------------------------------------------------------------------------------- /Pods/Headers/Private/PopMenu/PopMenu.h: -------------------------------------------------------------------------------- 1 | ../../../PopMenu/PopMenu/PopMenu.h -------------------------------------------------------------------------------- /Pods/Headers/Private/PureLayout/ALView+PureLayout.h: -------------------------------------------------------------------------------- 1 | ../../../PureLayout/PureLayout/PureLayout/ALView+PureLayout.h -------------------------------------------------------------------------------- /Pods/Headers/Private/PureLayout/NSArray+PureLayout.h: -------------------------------------------------------------------------------- 1 | ../../../PureLayout/PureLayout/PureLayout/NSArray+PureLayout.h -------------------------------------------------------------------------------- /Pods/Headers/Private/PureLayout/NSLayoutConstraint+PureLayout.h: -------------------------------------------------------------------------------- 1 | ../../../PureLayout/PureLayout/PureLayout/NSLayoutConstraint+PureLayout.h -------------------------------------------------------------------------------- /Pods/Headers/Private/PureLayout/PureLayout+Internal.h: -------------------------------------------------------------------------------- 1 | ../../../PureLayout/PureLayout/PureLayout/PureLayout+Internal.h -------------------------------------------------------------------------------- /Pods/Headers/Private/PureLayout/PureLayout.h: -------------------------------------------------------------------------------- 1 | ../../../PureLayout/PureLayout/PureLayout/PureLayout.h -------------------------------------------------------------------------------- /Pods/Headers/Private/PureLayout/PureLayoutDefines.h: -------------------------------------------------------------------------------- 1 | ../../../PureLayout/PureLayout/PureLayout/PureLayoutDefines.h -------------------------------------------------------------------------------- /Pods/Headers/Private/QBPopupMenu/QBPlasticPopupMenu.h: -------------------------------------------------------------------------------- 1 | ../../../QBPopupMenu/QBPopupMenu/QBPlasticPopupMenu.h -------------------------------------------------------------------------------- /Pods/Headers/Private/QBPopupMenu/QBPopupMenu.h: -------------------------------------------------------------------------------- 1 | ../../../QBPopupMenu/QBPopupMenu/QBPopupMenu.h -------------------------------------------------------------------------------- /Pods/Headers/Private/QBPopupMenu/QBPopupMenuItem.h: -------------------------------------------------------------------------------- 1 | ../../../QBPopupMenu/QBPopupMenu/QBPopupMenuItem.h -------------------------------------------------------------------------------- /Pods/Headers/Private/QBPopupMenu/QBPopupMenuItemView.h: -------------------------------------------------------------------------------- 1 | ../../../QBPopupMenu/QBPopupMenu/QBPopupMenuItemView.h -------------------------------------------------------------------------------- /Pods/Headers/Private/QBPopupMenu/QBPopupMenuOverlayView.h: -------------------------------------------------------------------------------- 1 | ../../../QBPopupMenu/QBPopupMenu/QBPopupMenuOverlayView.h -------------------------------------------------------------------------------- /Pods/Headers/Private/QBPopupMenu/QBPopupMenuPagenatorView.h: -------------------------------------------------------------------------------- 1 | ../../../QBPopupMenu/QBPopupMenu/QBPopupMenuPagenatorView.h -------------------------------------------------------------------------------- /Pods/Headers/Private/RDVTabBarController/RDVTabBar.h: -------------------------------------------------------------------------------- 1 | ../../../RDVTabBarController/RDVTabBarController/RDVTabBar.h -------------------------------------------------------------------------------- /Pods/Headers/Private/RDVTabBarController/RDVTabBarController.h: -------------------------------------------------------------------------------- 1 | ../../../RDVTabBarController/RDVTabBarController/RDVTabBarController.h -------------------------------------------------------------------------------- /Pods/Headers/Private/RDVTabBarController/RDVTabBarItem.h: -------------------------------------------------------------------------------- 1 | ../../../RDVTabBarController/RDVTabBarController/RDVTabBarItem.h -------------------------------------------------------------------------------- /Pods/Headers/Private/TTTAttributedLabel/TTTAttributedLabel.h: -------------------------------------------------------------------------------- 1 | ../../../TTTAttributedLabel/TTTAttributedLabel/TTTAttributedLabel.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ViewDeck/IISideController.h: -------------------------------------------------------------------------------- 1 | ../../../ViewDeck/ViewDeck/IISideController.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ViewDeck/IIViewDeckController.h: -------------------------------------------------------------------------------- 1 | ../../../ViewDeck/ViewDeck/IIViewDeckController.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ViewDeck/IIWrapController.h: -------------------------------------------------------------------------------- 1 | ../../../ViewDeck/ViewDeck/IIWrapController.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ViewDeck/ViewDeck.h: -------------------------------------------------------------------------------- 1 | ../../../ViewDeck/ViewDeck/ViewDeck.h -------------------------------------------------------------------------------- /Pods/Headers/Private/XHRealTimeBlur/XHRealTimeBlur.h: -------------------------------------------------------------------------------- 1 | ../../../XHRealTimeBlur/XHRealTimeBlur/XHRealTimeBlur.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ZipArchive/ZipArchive.h: -------------------------------------------------------------------------------- 1 | ../../../ZipArchive/ZipArchive.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ZipArchive/crypt.h: -------------------------------------------------------------------------------- 1 | ../../../ZipArchive/minizip/crypt.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ZipArchive/ioapi.h: -------------------------------------------------------------------------------- 1 | ../../../ZipArchive/minizip/ioapi.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ZipArchive/mztools.h: -------------------------------------------------------------------------------- 1 | ../../../ZipArchive/minizip/mztools.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ZipArchive/unzip.h: -------------------------------------------------------------------------------- 1 | ../../../ZipArchive/minizip/unzip.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ZipArchive/zip.h: -------------------------------------------------------------------------------- 1 | ../../../ZipArchive/minizip/zip.h -------------------------------------------------------------------------------- /Pods/Headers/Private/iRate/iRate.h: -------------------------------------------------------------------------------- 1 | ../../../iRate/iRate/iRate.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/FloatConversion.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/WebCore/FloatConversion.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POP.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POP.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPAction.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAction.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPAnimatableProperty.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimatableProperty.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPAnimationEvent.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimationEvent.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPAnimationEventInternal.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimationEventInternal.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPAnimationExtras.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimationExtras.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPAnimationInternal.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimationInternal.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPAnimationPrivate.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimationPrivate.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPAnimationRuntime.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimationRuntime.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPAnimationTracer.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimationTracer.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPAnimationTracerInternal.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimationTracerInternal.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPAnimator.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimator.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPAnimatorPrivate.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimatorPrivate.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPBasicAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPBasicAnimation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPBasicAnimationInternal.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPBasicAnimationInternal.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPCGUtils.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPCGUtils.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPCustomAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPCustomAnimation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPDecayAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPDecayAnimation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPDecayAnimationInternal.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPDecayAnimationInternal.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPDefines.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPDefines.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPGeometry.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPGeometry.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPLayerExtras.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPLayerExtras.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPMath.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPMath.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPPropertyAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPPropertyAnimation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPPropertyAnimationInternal.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPPropertyAnimationInternal.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPSpringAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPSpringAnimation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPSpringAnimationInternal.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPSpringAnimationInternal.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPSpringSolver.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPSpringSolver.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPVector.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPVector.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/TransformationMatrix.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/WebCore/TransformationMatrix.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/UnitBezier.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/WebCore/UnitBezier.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/AFAutoPurgingImageCache.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/AFAutoPurgingImageCache.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/AFHTTPSessionManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFHTTPSessionManager.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/AFImageDownloader.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/AFImageDownloader.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/AFNetworkActivityIndicatorManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/AFNetworkActivityIndicatorManager.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/AFNetworkReachabilityManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFNetworkReachabilityManager.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/AFSecurityPolicy.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFSecurityPolicy.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/AFURLRequestSerialization.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLRequestSerialization.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/AFURLResponseSerialization.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLResponseSerialization.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/AFURLSessionManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLSessionManager.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/UIActivityIndicatorView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/UIButton+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/UIImage+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIImage+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/UIImageView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIImageView+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/UIKit+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIKit+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/UIProgressView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIProgressView+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/UIRefreshControl+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIRefreshControl+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/UIWebView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIWebView+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ActionSheetPicker-3.0/AbstractActionSheetPicker.h: -------------------------------------------------------------------------------- 1 | ../../../ActionSheetPicker-3.0/Pickers/AbstractActionSheetPicker.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ActionSheetPicker-3.0/ActionSheetCustomPicker.h: -------------------------------------------------------------------------------- 1 | ../../../ActionSheetPicker-3.0/Pickers/ActionSheetCustomPicker.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ActionSheetPicker-3.0/ActionSheetCustomPickerDelegate.h: -------------------------------------------------------------------------------- 1 | ../../../ActionSheetPicker-3.0/Pickers/ActionSheetCustomPickerDelegate.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ActionSheetPicker-3.0/ActionSheetDatePicker.h: -------------------------------------------------------------------------------- 1 | ../../../ActionSheetPicker-3.0/Pickers/ActionSheetDatePicker.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ActionSheetPicker-3.0/ActionSheetDistancePicker.h: -------------------------------------------------------------------------------- 1 | ../../../ActionSheetPicker-3.0/Pickers/ActionSheetDistancePicker.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ActionSheetPicker-3.0/ActionSheetLocalePicker.h: -------------------------------------------------------------------------------- 1 | ../../../ActionSheetPicker-3.0/Pickers/ActionSheetLocalePicker.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ActionSheetPicker-3.0/ActionSheetMultipleStringPicker.h: -------------------------------------------------------------------------------- 1 | ../../../ActionSheetPicker-3.0/Pickers/ActionSheetMultipleStringPicker.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ActionSheetPicker-3.0/ActionSheetPicker.h: -------------------------------------------------------------------------------- 1 | ../../../ActionSheetPicker-3.0/Pickers/ActionSheetPicker.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ActionSheetPicker-3.0/ActionSheetStringPicker.h: -------------------------------------------------------------------------------- 1 | ../../../ActionSheetPicker-3.0/Pickers/ActionSheetStringPicker.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ActionSheetPicker-3.0/DistancePickerView.h: -------------------------------------------------------------------------------- 1 | ../../../ActionSheetPicker-3.0/Pickers/DistancePickerView.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ActionSheetPicker-3.0/SWActionSheet.h: -------------------------------------------------------------------------------- 1 | ../../../ActionSheetPicker-3.0/Pickers/SWActionSheet.h -------------------------------------------------------------------------------- /Pods/Headers/Public/DKNightVersion/CALayer+Night.h: -------------------------------------------------------------------------------- 1 | ../../../DKNightVersion/DKNightVersion/CoreAnimation/CALayer+Night.h -------------------------------------------------------------------------------- /Pods/Headers/Public/DKNightVersion/CoreAnimation+Night.h: -------------------------------------------------------------------------------- 1 | ../../../DKNightVersion/DKNightVersion/CoreAnimation/CoreAnimation+Night.h -------------------------------------------------------------------------------- /Pods/Headers/Public/DKNightVersion/DKColor.h: -------------------------------------------------------------------------------- 1 | ../../../DKNightVersion/DKNightVersion/Core/DKColor.h -------------------------------------------------------------------------------- /Pods/Headers/Public/DKNightVersion/DKColorTable.h: -------------------------------------------------------------------------------- 1 | ../../../DKNightVersion/DKNightVersion/ColorTable/DKColorTable.h -------------------------------------------------------------------------------- /Pods/Headers/Public/DKNightVersion/DKDeallocBlockExecutor.h: -------------------------------------------------------------------------------- 1 | ../../../DKNightVersion/DKNightVersion/DeallocBlockExecutor/DKDeallocBlockExecutor.h -------------------------------------------------------------------------------- /Pods/Headers/Public/DKNightVersion/DKImage.h: -------------------------------------------------------------------------------- 1 | ../../../DKNightVersion/DKNightVersion/Core/DKImage.h -------------------------------------------------------------------------------- /Pods/Headers/Public/DKNightVersion/DKNightVersion.h: -------------------------------------------------------------------------------- 1 | ../../../DKNightVersion/DKNightVersion/DKNightVersion.h -------------------------------------------------------------------------------- /Pods/Headers/Public/DKNightVersion/DKNightVersionManager.h: -------------------------------------------------------------------------------- 1 | ../../../DKNightVersion/DKNightVersion/Core/DKNightVersionManager.h -------------------------------------------------------------------------------- /Pods/Headers/Public/DKNightVersion/EXTKeyPathCoding.h: -------------------------------------------------------------------------------- 1 | ../../../DKNightVersion/DKNightVersion/extobjc/EXTKeyPathCoding.h -------------------------------------------------------------------------------- /Pods/Headers/Public/DKNightVersion/NSObject+DeallocBlock.h: -------------------------------------------------------------------------------- 1 | ../../../DKNightVersion/DKNightVersion/DeallocBlockExecutor/NSObject+DeallocBlock.h -------------------------------------------------------------------------------- /Pods/Headers/Public/DKNightVersion/NSObject+Night.h: -------------------------------------------------------------------------------- 1 | ../../../DKNightVersion/DKNightVersion/Core/NSObject+Night.h -------------------------------------------------------------------------------- /Pods/Headers/Public/DKNightVersion/UIBarButtonItem+Night.h: -------------------------------------------------------------------------------- 1 | ../../../DKNightVersion/DKNightVersion/UIKit/UIBarButtonItem+Night.h -------------------------------------------------------------------------------- /Pods/Headers/Public/DKNightVersion/UIButton+Night.h: -------------------------------------------------------------------------------- 1 | ../../../DKNightVersion/DKNightVersion/Manual/UIButton+Night.h -------------------------------------------------------------------------------- /Pods/Headers/Public/DKNightVersion/UIControl+Night.h: -------------------------------------------------------------------------------- 1 | ../../../DKNightVersion/DKNightVersion/UIKit/UIControl+Night.h -------------------------------------------------------------------------------- /Pods/Headers/Public/DKNightVersion/UIImageView+Night.h: -------------------------------------------------------------------------------- 1 | ../../../DKNightVersion/DKNightVersion/Manual/UIImageView+Night.h -------------------------------------------------------------------------------- /Pods/Headers/Public/DKNightVersion/UILabel+Night.h: -------------------------------------------------------------------------------- 1 | ../../../DKNightVersion/DKNightVersion/UIKit/UILabel+Night.h -------------------------------------------------------------------------------- /Pods/Headers/Public/DKNightVersion/UINavigationBar+Animation.h: -------------------------------------------------------------------------------- 1 | ../../../DKNightVersion/DKNightVersion/Manual/UINavigationBar+Animation.h -------------------------------------------------------------------------------- /Pods/Headers/Public/DKNightVersion/UINavigationBar+Night.h: -------------------------------------------------------------------------------- 1 | ../../../DKNightVersion/DKNightVersion/UIKit/UINavigationBar+Night.h -------------------------------------------------------------------------------- /Pods/Headers/Public/DKNightVersion/UIPageControl+Night.h: -------------------------------------------------------------------------------- 1 | ../../../DKNightVersion/DKNightVersion/UIKit/UIPageControl+Night.h -------------------------------------------------------------------------------- /Pods/Headers/Public/DKNightVersion/UIProgressView+Night.h: -------------------------------------------------------------------------------- 1 | ../../../DKNightVersion/DKNightVersion/UIKit/UIProgressView+Night.h -------------------------------------------------------------------------------- /Pods/Headers/Public/DKNightVersion/UISearchBar+Keyboard.h: -------------------------------------------------------------------------------- 1 | ../../../DKNightVersion/DKNightVersion/Manual/UISearchBar+Keyboard.h -------------------------------------------------------------------------------- /Pods/Headers/Public/DKNightVersion/UISearchBar+Night.h: -------------------------------------------------------------------------------- 1 | ../../../DKNightVersion/DKNightVersion/UIKit/UISearchBar+Night.h -------------------------------------------------------------------------------- /Pods/Headers/Public/DKNightVersion/UISlider+Night.h: -------------------------------------------------------------------------------- 1 | ../../../DKNightVersion/DKNightVersion/UIKit/UISlider+Night.h -------------------------------------------------------------------------------- /Pods/Headers/Public/DKNightVersion/UISwitch+Night.h: -------------------------------------------------------------------------------- 1 | ../../../DKNightVersion/DKNightVersion/UIKit/UISwitch+Night.h -------------------------------------------------------------------------------- /Pods/Headers/Public/DKNightVersion/UITabBar+Night.h: -------------------------------------------------------------------------------- 1 | ../../../DKNightVersion/DKNightVersion/UIKit/UITabBar+Night.h -------------------------------------------------------------------------------- /Pods/Headers/Public/DKNightVersion/UITableView+Night.h: -------------------------------------------------------------------------------- 1 | ../../../DKNightVersion/DKNightVersion/UIKit/UITableView+Night.h -------------------------------------------------------------------------------- /Pods/Headers/Public/DKNightVersion/UITextField+Keyboard.h: -------------------------------------------------------------------------------- 1 | ../../../DKNightVersion/DKNightVersion/Manual/UITextField+Keyboard.h -------------------------------------------------------------------------------- /Pods/Headers/Public/DKNightVersion/UITextField+Night.h: -------------------------------------------------------------------------------- 1 | ../../../DKNightVersion/DKNightVersion/UIKit/UITextField+Night.h -------------------------------------------------------------------------------- /Pods/Headers/Public/DKNightVersion/UITextView+Keyboard.h: -------------------------------------------------------------------------------- 1 | ../../../DKNightVersion/DKNightVersion/Manual/UITextView+Keyboard.h -------------------------------------------------------------------------------- /Pods/Headers/Public/DKNightVersion/UITextView+Night.h: -------------------------------------------------------------------------------- 1 | ../../../DKNightVersion/DKNightVersion/UIKit/UITextView+Night.h -------------------------------------------------------------------------------- /Pods/Headers/Public/DKNightVersion/UIToolbar+Night.h: -------------------------------------------------------------------------------- 1 | ../../../DKNightVersion/DKNightVersion/UIKit/UIToolbar+Night.h -------------------------------------------------------------------------------- /Pods/Headers/Public/DKNightVersion/UIView+Night.h: -------------------------------------------------------------------------------- 1 | ../../../DKNightVersion/DKNightVersion/UIKit/UIView+Night.h -------------------------------------------------------------------------------- /Pods/Headers/Public/DKNightVersion/metamacros.h: -------------------------------------------------------------------------------- 1 | ../../../DKNightVersion/DKNightVersion/extobjc/metamacros.h -------------------------------------------------------------------------------- /Pods/Headers/Public/DZNEmptyDataSet/UIScrollView+EmptyDataSet.h: -------------------------------------------------------------------------------- 1 | ../../../DZNEmptyDataSet/Source/UIScrollView+EmptyDataSet.h -------------------------------------------------------------------------------- /Pods/Headers/Public/EAIntroView/EAIntroPage.h: -------------------------------------------------------------------------------- 1 | ../../../EAIntroView/EAIntroView/EAIntroPage.h -------------------------------------------------------------------------------- /Pods/Headers/Public/EAIntroView/EAIntroView.h: -------------------------------------------------------------------------------- 1 | ../../../EAIntroView/EAIntroView/EAIntroView.h -------------------------------------------------------------------------------- /Pods/Headers/Public/EARestrictedScrollView/EARestrictedScrollView.h: -------------------------------------------------------------------------------- 1 | ../../../EARestrictedScrollView/EARestrictedScrollView/EARestrictedScrollView.h -------------------------------------------------------------------------------- /Pods/Headers/Public/FMDB/FMDB.h: -------------------------------------------------------------------------------- 1 | ../../../FMDB/src/fmdb/FMDB.h -------------------------------------------------------------------------------- /Pods/Headers/Public/FMDB/FMDatabase.h: -------------------------------------------------------------------------------- 1 | ../../../FMDB/src/fmdb/FMDatabase.h -------------------------------------------------------------------------------- /Pods/Headers/Public/FMDB/FMDatabaseAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../FMDB/src/fmdb/FMDatabaseAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/FMDB/FMDatabasePool.h: -------------------------------------------------------------------------------- 1 | ../../../FMDB/src/fmdb/FMDatabasePool.h -------------------------------------------------------------------------------- /Pods/Headers/Public/FMDB/FMDatabaseQueue.h: -------------------------------------------------------------------------------- 1 | ../../../FMDB/src/fmdb/FMDatabaseQueue.h -------------------------------------------------------------------------------- /Pods/Headers/Public/FMDB/FMResultSet.h: -------------------------------------------------------------------------------- 1 | ../../../FMDB/src/fmdb/FMResultSet.h -------------------------------------------------------------------------------- /Pods/Headers/Public/IQKeyboardManager/IQBarButtonItem.h: -------------------------------------------------------------------------------- 1 | ../../../IQKeyboardManager/IQKeyBoardManager/IQToolbar/IQBarButtonItem.h -------------------------------------------------------------------------------- /Pods/Headers/Public/IQKeyboardManager/IQKeyboardManager.h: -------------------------------------------------------------------------------- 1 | ../../../IQKeyboardManager/IQKeyBoardManager/IQKeyboardManager.h -------------------------------------------------------------------------------- /Pods/Headers/Public/IQKeyboardManager/IQKeyboardManagerConstants.h: -------------------------------------------------------------------------------- 1 | ../../../IQKeyboardManager/IQKeyBoardManager/Constants/IQKeyboardManagerConstants.h -------------------------------------------------------------------------------- /Pods/Headers/Public/IQKeyboardManager/IQKeyboardManagerConstantsInternal.h: -------------------------------------------------------------------------------- 1 | ../../../IQKeyboardManager/IQKeyBoardManager/Constants/IQKeyboardManagerConstantsInternal.h -------------------------------------------------------------------------------- /Pods/Headers/Public/IQKeyboardManager/IQKeyboardReturnKeyHandler.h: -------------------------------------------------------------------------------- 1 | ../../../IQKeyboardManager/IQKeyBoardManager/IQKeyboardReturnKeyHandler.h -------------------------------------------------------------------------------- /Pods/Headers/Public/IQKeyboardManager/IQNSArray+Sort.h: -------------------------------------------------------------------------------- 1 | ../../../IQKeyboardManager/IQKeyBoardManager/Categories/IQNSArray+Sort.h -------------------------------------------------------------------------------- /Pods/Headers/Public/IQKeyboardManager/IQTextView.h: -------------------------------------------------------------------------------- 1 | ../../../IQKeyboardManager/IQKeyBoardManager/IQTextView/IQTextView.h -------------------------------------------------------------------------------- /Pods/Headers/Public/IQKeyboardManager/IQTitleBarButtonItem.h: -------------------------------------------------------------------------------- 1 | ../../../IQKeyboardManager/IQKeyBoardManager/IQToolbar/IQTitleBarButtonItem.h -------------------------------------------------------------------------------- /Pods/Headers/Public/IQKeyboardManager/IQToolbar.h: -------------------------------------------------------------------------------- 1 | ../../../IQKeyboardManager/IQKeyBoardManager/IQToolbar/IQToolbar.h -------------------------------------------------------------------------------- /Pods/Headers/Public/IQKeyboardManager/IQUIScrollView+Additions.h: -------------------------------------------------------------------------------- 1 | ../../../IQKeyboardManager/IQKeyBoardManager/Categories/IQUIScrollView+Additions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/IQKeyboardManager/IQUITextFieldView+Additions.h: -------------------------------------------------------------------------------- 1 | ../../../IQKeyboardManager/IQKeyBoardManager/Categories/IQUITextFieldView+Additions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/IQKeyboardManager/IQUIView+Hierarchy.h: -------------------------------------------------------------------------------- 1 | ../../../IQKeyboardManager/IQKeyBoardManager/Categories/IQUIView+Hierarchy.h -------------------------------------------------------------------------------- /Pods/Headers/Public/IQKeyboardManager/IQUIView+IQKeyboardToolbar.h: -------------------------------------------------------------------------------- 1 | ../../../IQKeyboardManager/IQKeyBoardManager/IQToolbar/IQUIView+IQKeyboardToolbar.h -------------------------------------------------------------------------------- /Pods/Headers/Public/IQKeyboardManager/IQUIViewController+Additions.h: -------------------------------------------------------------------------------- 1 | ../../../IQKeyboardManager/IQKeyBoardManager/Categories/IQUIViewController+Additions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/IQKeyboardManager/IQUIWindow+Hierarchy.h: -------------------------------------------------------------------------------- 1 | ../../../IQKeyboardManager/IQKeyBoardManager/Categories/IQUIWindow+Hierarchy.h -------------------------------------------------------------------------------- /Pods/Headers/Public/IQKeyboardManager/KeyboardManager.h: -------------------------------------------------------------------------------- 1 | ../../../IQKeyboardManager/IQKeyBoardManager/KeyboardManager.h -------------------------------------------------------------------------------- /Pods/Headers/Public/JSONModel/JSONAPI.h: -------------------------------------------------------------------------------- 1 | ../../../JSONModel/JSONModel/JSONModelNetworking/JSONAPI.h -------------------------------------------------------------------------------- /Pods/Headers/Public/JSONModel/JSONHTTPClient.h: -------------------------------------------------------------------------------- 1 | ../../../JSONModel/JSONModel/JSONModelNetworking/JSONHTTPClient.h -------------------------------------------------------------------------------- /Pods/Headers/Public/JSONModel/JSONKeyMapper.h: -------------------------------------------------------------------------------- 1 | ../../../JSONModel/JSONModel/JSONModelTransformations/JSONKeyMapper.h -------------------------------------------------------------------------------- /Pods/Headers/Public/JSONModel/JSONModel+networking.h: -------------------------------------------------------------------------------- 1 | ../../../JSONModel/JSONModel/JSONModelNetworking/JSONModel+networking.h -------------------------------------------------------------------------------- /Pods/Headers/Public/JSONModel/JSONModel.h: -------------------------------------------------------------------------------- 1 | ../../../JSONModel/JSONModel/JSONModel/JSONModel.h -------------------------------------------------------------------------------- /Pods/Headers/Public/JSONModel/JSONModelArray.h: -------------------------------------------------------------------------------- 1 | ../../../JSONModel/JSONModel/JSONModel/JSONModelArray.h -------------------------------------------------------------------------------- /Pods/Headers/Public/JSONModel/JSONModelClassProperty.h: -------------------------------------------------------------------------------- 1 | ../../../JSONModel/JSONModel/JSONModel/JSONModelClassProperty.h -------------------------------------------------------------------------------- /Pods/Headers/Public/JSONModel/JSONModelError.h: -------------------------------------------------------------------------------- 1 | ../../../JSONModel/JSONModel/JSONModel/JSONModelError.h -------------------------------------------------------------------------------- /Pods/Headers/Public/JSONModel/JSONModelLib.h: -------------------------------------------------------------------------------- 1 | ../../../JSONModel/JSONModel/JSONModelLib.h -------------------------------------------------------------------------------- /Pods/Headers/Public/JSONModel/JSONValueTransformer.h: -------------------------------------------------------------------------------- 1 | ../../../JSONModel/JSONModel/JSONModelTransformations/JSONValueTransformer.h -------------------------------------------------------------------------------- /Pods/Headers/Public/JSONModel/NSArray+JSONModel.h: -------------------------------------------------------------------------------- 1 | ../../../JSONModel/JSONModel/JSONModelCategories/NSArray+JSONModel.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MBProgressHUD/MBProgressHUD.h: -------------------------------------------------------------------------------- 1 | ../../../MBProgressHUD/MBProgressHUD.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MJRefresh/MJRefresh.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/MJRefresh.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MJRefresh/MJRefreshAutoFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Base/MJRefreshAutoFooter.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MJRefresh/MJRefreshAutoGifFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoGifFooter.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MJRefresh/MJRefreshAutoNormalFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoNormalFooter.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MJRefresh/MJRefreshAutoStateFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoStateFooter.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MJRefresh/MJRefreshBackFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Base/MJRefreshBackFooter.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MJRefresh/MJRefreshBackGifFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackGifFooter.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MJRefresh/MJRefreshBackNormalFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackNormalFooter.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MJRefresh/MJRefreshBackStateFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackStateFooter.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MJRefresh/MJRefreshComponent.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Base/MJRefreshComponent.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MJRefresh/MJRefreshConst.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/MJRefreshConst.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MJRefresh/MJRefreshFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Base/MJRefreshFooter.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MJRefresh/MJRefreshGifHeader.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Header/MJRefreshGifHeader.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MJRefresh/MJRefreshHeader.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Base/MJRefreshHeader.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MJRefresh/MJRefreshNormalHeader.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Header/MJRefreshNormalHeader.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MJRefresh/MJRefreshStateHeader.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Header/MJRefreshStateHeader.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MJRefresh/UIScrollView+MJExtension.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/UIScrollView+MJExtension.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MJRefresh/UIScrollView+MJRefresh.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/UIScrollView+MJRefresh.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MJRefresh/UIView+MJExtension.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/UIView+MJExtension.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MRProgress/MRActivityIndicatorView.h: -------------------------------------------------------------------------------- 1 | ../../../MRProgress/src/Components/MRActivityIndicatorView.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MRProgress/MRBlurView.h: -------------------------------------------------------------------------------- 1 | ../../../MRProgress/src/Blur/MRBlurView.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MRProgress/MRCircularProgressView.h: -------------------------------------------------------------------------------- 1 | ../../../MRProgress/src/Components/MRCircularProgressView.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MRProgress/MRIconView.h: -------------------------------------------------------------------------------- 1 | ../../../MRProgress/src/Components/MRIconView.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MRProgress/MRNavigationBarProgressView.h: -------------------------------------------------------------------------------- 1 | ../../../MRProgress/src/Components/MRNavigationBarProgressView.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MRProgress/MRProgress.h: -------------------------------------------------------------------------------- 1 | ../../../MRProgress/src/MRProgress.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MRProgress/MRProgressHelper.h: -------------------------------------------------------------------------------- 1 | ../../../MRProgress/src/Utils/MRProgressHelper.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MRProgress/MRProgressOverlayView.h: -------------------------------------------------------------------------------- 1 | ../../../MRProgress/src/Components/MRProgressOverlayView.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MRProgress/MRProgressView.h: -------------------------------------------------------------------------------- 1 | ../../../MRProgress/src/Components/MRProgressView.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MRProgress/MRStopButton.h: -------------------------------------------------------------------------------- 1 | ../../../MRProgress/src/Components/MRStopButton.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MRProgress/MRStopableView.h: -------------------------------------------------------------------------------- 1 | ../../../MRProgress/src/Components/MRStopableView.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MRProgress/UIImage+MRImageEffects.h: -------------------------------------------------------------------------------- 1 | ../../../MRProgress/src/Blur/UIImage+MRImageEffects.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MagicalRecord/MagicalRecord/MagicalImportFunctions.h: -------------------------------------------------------------------------------- 1 | ../../../../MagicalRecord/MagicalRecord/Categories/DataImport/MagicalImportFunctions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MagicalRecord/MagicalRecord/MagicalRecord+Actions.h: -------------------------------------------------------------------------------- 1 | ../../../../MagicalRecord/MagicalRecord/Core/MagicalRecord+Actions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MagicalRecord/MagicalRecord/MagicalRecord+ErrorHandling.h: -------------------------------------------------------------------------------- 1 | ../../../../MagicalRecord/MagicalRecord/Core/MagicalRecord+ErrorHandling.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MagicalRecord/MagicalRecord/MagicalRecord+Options.h: -------------------------------------------------------------------------------- 1 | ../../../../MagicalRecord/MagicalRecord/Core/MagicalRecord+Options.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MagicalRecord/MagicalRecord/MagicalRecord+Setup.h: -------------------------------------------------------------------------------- 1 | ../../../../MagicalRecord/MagicalRecord/Core/MagicalRecord+Setup.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MagicalRecord/MagicalRecord/MagicalRecord+ShorthandMethods.h: -------------------------------------------------------------------------------- 1 | ../../../../MagicalRecord/MagicalRecord/Core/MagicalRecord+ShorthandMethods.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MagicalRecord/MagicalRecord/MagicalRecord+iCloud.h: -------------------------------------------------------------------------------- 1 | ../../../../MagicalRecord/MagicalRecord/Core/MagicalRecord+iCloud.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MagicalRecord/MagicalRecord/MagicalRecord.h: -------------------------------------------------------------------------------- 1 | ../../../../MagicalRecord/MagicalRecord/MagicalRecord.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MagicalRecord/MagicalRecord/MagicalRecordDeprecationMacros.h: -------------------------------------------------------------------------------- 1 | ../../../../MagicalRecord/MagicalRecord/Core/MagicalRecordDeprecationMacros.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MagicalRecord/MagicalRecord/MagicalRecordInternal.h: -------------------------------------------------------------------------------- 1 | ../../../../MagicalRecord/MagicalRecord/Core/MagicalRecordInternal.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MagicalRecord/MagicalRecord/MagicalRecordLogging.h: -------------------------------------------------------------------------------- 1 | ../../../../MagicalRecord/MagicalRecord/Core/MagicalRecordLogging.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MagicalRecord/MagicalRecord/MagicalRecordXcode7CompatibilityMacros.h: -------------------------------------------------------------------------------- 1 | ../../../../MagicalRecord/MagicalRecord/Core/MagicalRecordXcode7CompatibilityMacros.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MagicalRecord/MagicalRecord/NSAttributeDescription+MagicalDataImport.h: -------------------------------------------------------------------------------- 1 | ../../../../MagicalRecord/MagicalRecord/Categories/DataImport/NSAttributeDescription+MagicalDataImport.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MagicalRecord/MagicalRecord/NSEntityDescription+MagicalDataImport.h: -------------------------------------------------------------------------------- 1 | ../../../../MagicalRecord/MagicalRecord/Categories/DataImport/NSEntityDescription+MagicalDataImport.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MagicalRecord/MagicalRecord/NSManagedObject+MagicalAggregation.h: -------------------------------------------------------------------------------- 1 | ../../../../MagicalRecord/MagicalRecord/Categories/NSManagedObject/NSManagedObject+MagicalAggregation.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MagicalRecord/MagicalRecord/NSManagedObject+MagicalDataImport.h: -------------------------------------------------------------------------------- 1 | ../../../../MagicalRecord/MagicalRecord/Categories/NSManagedObject/NSManagedObject+MagicalDataImport.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MagicalRecord/MagicalRecord/NSManagedObject+MagicalFinders.h: -------------------------------------------------------------------------------- 1 | ../../../../MagicalRecord/MagicalRecord/Categories/NSManagedObject/NSManagedObject+MagicalFinders.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MagicalRecord/MagicalRecord/NSManagedObject+MagicalRecord.h: -------------------------------------------------------------------------------- 1 | ../../../../MagicalRecord/MagicalRecord/Categories/NSManagedObject/NSManagedObject+MagicalRecord.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MagicalRecord/MagicalRecord/NSManagedObject+MagicalRequests.h: -------------------------------------------------------------------------------- 1 | ../../../../MagicalRecord/MagicalRecord/Categories/NSManagedObject/NSManagedObject+MagicalRequests.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MagicalRecord/MagicalRecord/NSManagedObjectContext+MagicalChainSave.h: -------------------------------------------------------------------------------- 1 | ../../../../MagicalRecord/MagicalRecord/Categories/NSManagedObjectContext/NSManagedObjectContext+MagicalChainSave.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MagicalRecord/MagicalRecord/NSManagedObjectContext+MagicalObserving.h: -------------------------------------------------------------------------------- 1 | ../../../../MagicalRecord/MagicalRecord/Categories/NSManagedObjectContext/NSManagedObjectContext+MagicalObserving.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MagicalRecord/MagicalRecord/NSManagedObjectContext+MagicalRecord.h: -------------------------------------------------------------------------------- 1 | ../../../../MagicalRecord/MagicalRecord/Categories/NSManagedObjectContext/NSManagedObjectContext+MagicalRecord.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MagicalRecord/MagicalRecord/NSManagedObjectContext+MagicalSaves.h: -------------------------------------------------------------------------------- 1 | ../../../../MagicalRecord/MagicalRecord/Categories/NSManagedObjectContext/NSManagedObjectContext+MagicalSaves.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MagicalRecord/MagicalRecord/NSManagedObjectContext+MagicalThreading.h: -------------------------------------------------------------------------------- 1 | ../../../../MagicalRecord/MagicalRecord/Categories/NSManagedObjectContext/NSManagedObjectContext+MagicalThreading.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MagicalRecord/MagicalRecord/NSManagedObjectModel+MagicalRecord.h: -------------------------------------------------------------------------------- 1 | ../../../../MagicalRecord/MagicalRecord/Categories/NSManagedObjectModel+MagicalRecord.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MagicalRecord/MagicalRecord/NSNumber+MagicalDataImport.h: -------------------------------------------------------------------------------- 1 | ../../../../MagicalRecord/MagicalRecord/Categories/DataImport/NSNumber+MagicalDataImport.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MagicalRecord/MagicalRecord/NSObject+MagicalDataImport.h: -------------------------------------------------------------------------------- 1 | ../../../../MagicalRecord/MagicalRecord/Categories/DataImport/NSObject+MagicalDataImport.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MagicalRecord/MagicalRecord/NSPersistentStore+MagicalRecord.h: -------------------------------------------------------------------------------- 1 | ../../../../MagicalRecord/MagicalRecord/Categories/NSPersistentStore+MagicalRecord.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MagicalRecord/MagicalRecord/NSPersistentStoreCoordinator+MagicalRecord.h: -------------------------------------------------------------------------------- 1 | ../../../../MagicalRecord/MagicalRecord/Categories/NSPersistentStoreCoordinator+MagicalRecord.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MagicalRecord/MagicalRecord/NSRelationshipDescription+MagicalDataImport.h: -------------------------------------------------------------------------------- 1 | ../../../../MagicalRecord/MagicalRecord/Categories/DataImport/NSRelationshipDescription+MagicalDataImport.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MagicalRecord/MagicalRecord/NSString+MagicalDataImport.h: -------------------------------------------------------------------------------- 1 | ../../../../MagicalRecord/MagicalRecord/Categories/DataImport/NSString+MagicalDataImport.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/MASCompositeConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASCompositeConstraint.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/MASConstraint+Private.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraint+Private.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/MASConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraint.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/MASConstraintMaker.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraintMaker.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/MASLayoutConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASLayoutConstraint.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/MASUtilities.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASUtilities.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/MASViewAttribute.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASViewAttribute.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/MASViewConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASViewConstraint.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/Masonry.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/Masonry.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/NSArray+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSArray+MASAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/NSArray+MASShorthandAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSArray+MASShorthandAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/NSLayoutConstraint+MASDebugAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/View+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/View+MASAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/View+MASShorthandAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/View+MASShorthandAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/ViewController+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/ViewController+MASAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/NJKWebViewProgress/NJKWebViewProgress.h: -------------------------------------------------------------------------------- 1 | ../../../NJKWebViewProgress/NJKWebViewProgress/NJKWebViewProgress.h -------------------------------------------------------------------------------- /Pods/Headers/Public/NJKWebViewProgress/NJKWebViewProgressView.h: -------------------------------------------------------------------------------- 1 | ../../../NJKWebViewProgress/NJKWebViewProgress/NJKWebViewProgressView.h -------------------------------------------------------------------------------- /Pods/Headers/Public/PopMenu/GlowImageView.h: -------------------------------------------------------------------------------- 1 | ../../../PopMenu/PopMenu/GlowImageView.h -------------------------------------------------------------------------------- /Pods/Headers/Public/PopMenu/MenuButton.h: -------------------------------------------------------------------------------- 1 | ../../../PopMenu/PopMenu/MenuButton.h -------------------------------------------------------------------------------- /Pods/Headers/Public/PopMenu/MenuItem.h: -------------------------------------------------------------------------------- 1 | ../../../PopMenu/PopMenu/MenuItem.h -------------------------------------------------------------------------------- /Pods/Headers/Public/PopMenu/PopMenu.h: -------------------------------------------------------------------------------- 1 | ../../../PopMenu/PopMenu/PopMenu.h -------------------------------------------------------------------------------- /Pods/Headers/Public/PureLayout/ALView+PureLayout.h: -------------------------------------------------------------------------------- 1 | ../../../PureLayout/PureLayout/PureLayout/ALView+PureLayout.h -------------------------------------------------------------------------------- /Pods/Headers/Public/PureLayout/NSArray+PureLayout.h: -------------------------------------------------------------------------------- 1 | ../../../PureLayout/PureLayout/PureLayout/NSArray+PureLayout.h -------------------------------------------------------------------------------- /Pods/Headers/Public/PureLayout/NSLayoutConstraint+PureLayout.h: -------------------------------------------------------------------------------- 1 | ../../../PureLayout/PureLayout/PureLayout/NSLayoutConstraint+PureLayout.h -------------------------------------------------------------------------------- /Pods/Headers/Public/PureLayout/PureLayout+Internal.h: -------------------------------------------------------------------------------- 1 | ../../../PureLayout/PureLayout/PureLayout/PureLayout+Internal.h -------------------------------------------------------------------------------- /Pods/Headers/Public/PureLayout/PureLayout.h: -------------------------------------------------------------------------------- 1 | ../../../PureLayout/PureLayout/PureLayout/PureLayout.h -------------------------------------------------------------------------------- /Pods/Headers/Public/PureLayout/PureLayoutDefines.h: -------------------------------------------------------------------------------- 1 | ../../../PureLayout/PureLayout/PureLayout/PureLayoutDefines.h -------------------------------------------------------------------------------- /Pods/Headers/Public/QBPopupMenu/QBPlasticPopupMenu.h: -------------------------------------------------------------------------------- 1 | ../../../QBPopupMenu/QBPopupMenu/QBPlasticPopupMenu.h -------------------------------------------------------------------------------- /Pods/Headers/Public/QBPopupMenu/QBPopupMenu.h: -------------------------------------------------------------------------------- 1 | ../../../QBPopupMenu/QBPopupMenu/QBPopupMenu.h -------------------------------------------------------------------------------- /Pods/Headers/Public/QBPopupMenu/QBPopupMenuItem.h: -------------------------------------------------------------------------------- 1 | ../../../QBPopupMenu/QBPopupMenu/QBPopupMenuItem.h -------------------------------------------------------------------------------- /Pods/Headers/Public/QBPopupMenu/QBPopupMenuItemView.h: -------------------------------------------------------------------------------- 1 | ../../../QBPopupMenu/QBPopupMenu/QBPopupMenuItemView.h -------------------------------------------------------------------------------- /Pods/Headers/Public/QBPopupMenu/QBPopupMenuOverlayView.h: -------------------------------------------------------------------------------- 1 | ../../../QBPopupMenu/QBPopupMenu/QBPopupMenuOverlayView.h -------------------------------------------------------------------------------- /Pods/Headers/Public/QBPopupMenu/QBPopupMenuPagenatorView.h: -------------------------------------------------------------------------------- 1 | ../../../QBPopupMenu/QBPopupMenu/QBPopupMenuPagenatorView.h -------------------------------------------------------------------------------- /Pods/Headers/Public/RDVTabBarController/RDVTabBar.h: -------------------------------------------------------------------------------- 1 | ../../../RDVTabBarController/RDVTabBarController/RDVTabBar.h -------------------------------------------------------------------------------- /Pods/Headers/Public/RDVTabBarController/RDVTabBarController.h: -------------------------------------------------------------------------------- 1 | ../../../RDVTabBarController/RDVTabBarController/RDVTabBarController.h -------------------------------------------------------------------------------- /Pods/Headers/Public/RDVTabBarController/RDVTabBarItem.h: -------------------------------------------------------------------------------- 1 | ../../../RDVTabBarController/RDVTabBarController/RDVTabBarItem.h -------------------------------------------------------------------------------- /Pods/Headers/Public/TTTAttributedLabel/TTTAttributedLabel.h: -------------------------------------------------------------------------------- 1 | ../../../TTTAttributedLabel/TTTAttributedLabel/TTTAttributedLabel.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ViewDeck/IISideController.h: -------------------------------------------------------------------------------- 1 | ../../../ViewDeck/ViewDeck/IISideController.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ViewDeck/IIViewDeckController.h: -------------------------------------------------------------------------------- 1 | ../../../ViewDeck/ViewDeck/IIViewDeckController.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ViewDeck/IIWrapController.h: -------------------------------------------------------------------------------- 1 | ../../../ViewDeck/ViewDeck/IIWrapController.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ViewDeck/ViewDeck.h: -------------------------------------------------------------------------------- 1 | ../../../ViewDeck/ViewDeck/ViewDeck.h -------------------------------------------------------------------------------- /Pods/Headers/Public/XHRealTimeBlur/XHRealTimeBlur.h: -------------------------------------------------------------------------------- 1 | ../../../XHRealTimeBlur/XHRealTimeBlur/XHRealTimeBlur.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ZipArchive/ZipArchive.h: -------------------------------------------------------------------------------- 1 | ../../../ZipArchive/ZipArchive.h -------------------------------------------------------------------------------- /Pods/Headers/Public/iRate/iRate.h: -------------------------------------------------------------------------------- 1 | ../../../iRate/iRate/iRate.h -------------------------------------------------------------------------------- /Pods/Headers/Public/pop/POP.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POP.h -------------------------------------------------------------------------------- /Pods/Headers/Public/pop/POPAnimatableProperty.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimatableProperty.h -------------------------------------------------------------------------------- /Pods/Headers/Public/pop/POPAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimation.h -------------------------------------------------------------------------------- /Pods/Headers/Public/pop/POPAnimationEvent.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimationEvent.h -------------------------------------------------------------------------------- /Pods/Headers/Public/pop/POPAnimationExtras.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimationExtras.h -------------------------------------------------------------------------------- /Pods/Headers/Public/pop/POPAnimationTracer.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimationTracer.h -------------------------------------------------------------------------------- /Pods/Headers/Public/pop/POPAnimator.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimator.h -------------------------------------------------------------------------------- /Pods/Headers/Public/pop/POPBasicAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPBasicAnimation.h -------------------------------------------------------------------------------- /Pods/Headers/Public/pop/POPCustomAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPCustomAnimation.h -------------------------------------------------------------------------------- /Pods/Headers/Public/pop/POPDecayAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPDecayAnimation.h -------------------------------------------------------------------------------- /Pods/Headers/Public/pop/POPDefines.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPDefines.h -------------------------------------------------------------------------------- /Pods/Headers/Public/pop/POPGeometry.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPGeometry.h -------------------------------------------------------------------------------- /Pods/Headers/Public/pop/POPLayerExtras.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPLayerExtras.h -------------------------------------------------------------------------------- /Pods/Headers/Public/pop/POPPropertyAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPPropertyAnimation.h -------------------------------------------------------------------------------- /Pods/Headers/Public/pop/POPSpringAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPSpringAnimation.h -------------------------------------------------------------------------------- /Pods/IQKeyboardManager/IQKeyBoardManager/Resources/IQKeyboardManager.bundle/IQButtonBarArrowLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/Pods/IQKeyboardManager/IQKeyBoardManager/Resources/IQKeyboardManager.bundle/IQButtonBarArrowLeft.png -------------------------------------------------------------------------------- /Pods/IQKeyboardManager/IQKeyBoardManager/Resources/IQKeyboardManager.bundle/IQButtonBarArrowLeft@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/Pods/IQKeyboardManager/IQKeyBoardManager/Resources/IQKeyboardManager.bundle/IQButtonBarArrowLeft@2x.png -------------------------------------------------------------------------------- /Pods/IQKeyboardManager/IQKeyBoardManager/Resources/IQKeyboardManager.bundle/IQButtonBarArrowLeft@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/Pods/IQKeyboardManager/IQKeyBoardManager/Resources/IQKeyboardManager.bundle/IQButtonBarArrowLeft@3x.png -------------------------------------------------------------------------------- /Pods/IQKeyboardManager/IQKeyBoardManager/Resources/IQKeyboardManager.bundle/IQButtonBarArrowRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/Pods/IQKeyboardManager/IQKeyBoardManager/Resources/IQKeyboardManager.bundle/IQButtonBarArrowRight.png -------------------------------------------------------------------------------- /Pods/IQKeyboardManager/IQKeyBoardManager/Resources/IQKeyboardManager.bundle/IQButtonBarArrowRight@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/Pods/IQKeyboardManager/IQKeyBoardManager/Resources/IQKeyboardManager.bundle/IQButtonBarArrowRight@2x.png -------------------------------------------------------------------------------- /Pods/IQKeyboardManager/IQKeyBoardManager/Resources/IQKeyboardManager.bundle/IQButtonBarArrowRight@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/Pods/IQKeyboardManager/IQKeyBoardManager/Resources/IQKeyboardManager.bundle/IQButtonBarArrowRight@3x.png -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/MJRefresh.bundle/arrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/Pods/MJRefresh/MJRefresh/MJRefresh.bundle/arrow@2x.png -------------------------------------------------------------------------------- /Pods/Target Support Files/AFNetworking/AFNetworking-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_AFNetworking : NSObject 3 | @end 4 | @implementation PodsDummy_AFNetworking 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/ActionSheetPicker-3.0/ActionSheetPicker-3.0-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_ActionSheetPicker_3_0 : NSObject 3 | @end 4 | @implementation PodsDummy_ActionSheetPicker_3_0 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/ActionSheetPicker-3.0/ActionSheetPicker-3.0-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /Pods/Target Support Files/DKNightVersion/DKNightVersion-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_DKNightVersion : NSObject 3 | @end 4 | @implementation PodsDummy_DKNightVersion 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/DKNightVersion/DKNightVersion-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /Pods/Target Support Files/DZNEmptyDataSet/DZNEmptyDataSet-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_DZNEmptyDataSet : NSObject 3 | @end 4 | @implementation PodsDummy_DZNEmptyDataSet 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/DZNEmptyDataSet/DZNEmptyDataSet-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /Pods/Target Support Files/EAIntroView/EAIntroView-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_EAIntroView : NSObject 3 | @end 4 | @implementation PodsDummy_EAIntroView 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/EAIntroView/EAIntroView-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /Pods/Target Support Files/EARestrictedScrollView/EARestrictedScrollView-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_EARestrictedScrollView : NSObject 3 | @end 4 | @implementation PodsDummy_EARestrictedScrollView 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/EARestrictedScrollView/EARestrictedScrollView-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /Pods/Target Support Files/FMDB/FMDB-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_FMDB : NSObject 3 | @end 4 | @implementation PodsDummy_FMDB 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/FMDB/FMDB-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /Pods/Target Support Files/IQKeyboardManager/IQKeyboardManager-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_IQKeyboardManager : NSObject 3 | @end 4 | @implementation PodsDummy_IQKeyboardManager 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/IQKeyboardManager/IQKeyboardManager-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /Pods/Target Support Files/JSONModel/JSONModel-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_JSONModel : NSObject 3 | @end 4 | @implementation PodsDummy_JSONModel 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/JSONModel/JSONModel-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /Pods/Target Support Files/MBProgressHUD/MBProgressHUD-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_MBProgressHUD : NSObject 3 | @end 4 | @implementation PodsDummy_MBProgressHUD 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/MBProgressHUD/MBProgressHUD-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /Pods/Target Support Files/MJRefresh/MJRefresh-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_MJRefresh : NSObject 3 | @end 4 | @implementation PodsDummy_MJRefresh 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/MJRefresh/MJRefresh-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /Pods/Target Support Files/MRProgress/MRProgress-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_MRProgress : NSObject 3 | @end 4 | @implementation PodsDummy_MRProgress 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/MRProgress/MRProgress-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /Pods/Target Support Files/MagicalRecord/MagicalRecord-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_MagicalRecord : NSObject 3 | @end 4 | @implementation PodsDummy_MagicalRecord 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/MagicalRecord/MagicalRecord-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | #import 6 | #import 7 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Masonry/Masonry-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Masonry : NSObject 3 | @end 4 | @implementation PodsDummy_Masonry 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Masonry/Masonry-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /Pods/Target Support Files/NJKWebViewProgress/NJKWebViewProgress-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_NJKWebViewProgress : NSObject 3 | @end 4 | @implementation PodsDummy_NJKWebViewProgress 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/NJKWebViewProgress/NJKWebViewProgress-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-FunnyProject/Pods-FunnyProject-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_FunnyProject : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_FunnyProject 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-FunnyProjectTests/Pods-FunnyProjectTests-acknowledgements.markdown: -------------------------------------------------------------------------------- 1 | # Acknowledgements 2 | This application makes use of the following third party libraries: 3 | Generated by CocoaPods - https://cocoapods.org 4 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-FunnyProjectTests/Pods-FunnyProjectTests-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_FunnyProjectTests : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_FunnyProjectTests 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/PopMenu/PopMenu-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_PopMenu : NSObject 3 | @end 4 | @implementation PodsDummy_PopMenu 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/PopMenu/PopMenu-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /Pods/Target Support Files/PureLayout/PureLayout-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_PureLayout : NSObject 3 | @end 4 | @implementation PodsDummy_PureLayout 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/PureLayout/PureLayout-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /Pods/Target Support Files/QBPopupMenu/QBPopupMenu-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_QBPopupMenu : NSObject 3 | @end 4 | @implementation PodsDummy_QBPopupMenu 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/QBPopupMenu/QBPopupMenu-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /Pods/Target Support Files/RDVTabBarController/RDVTabBarController-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_RDVTabBarController : NSObject 3 | @end 4 | @implementation PodsDummy_RDVTabBarController 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/RDVTabBarController/RDVTabBarController-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /Pods/Target Support Files/TTTAttributedLabel/TTTAttributedLabel-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_TTTAttributedLabel : NSObject 3 | @end 4 | @implementation PodsDummy_TTTAttributedLabel 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/TTTAttributedLabel/TTTAttributedLabel-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /Pods/Target Support Files/ViewDeck/ViewDeck-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_ViewDeck : NSObject 3 | @end 4 | @implementation PodsDummy_ViewDeck 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/ViewDeck/ViewDeck-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /Pods/Target Support Files/XHRealTimeBlur/XHRealTimeBlur-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_XHRealTimeBlur : NSObject 3 | @end 4 | @implementation PodsDummy_XHRealTimeBlur 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/XHRealTimeBlur/XHRealTimeBlur-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /Pods/Target Support Files/ZipArchive/ZipArchive-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_ZipArchive : NSObject 3 | @end 4 | @implementation PodsDummy_ZipArchive 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/ZipArchive/ZipArchive-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /Pods/Target Support Files/iRate/iRate-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_iRate : NSObject 3 | @end 4 | @implementation PodsDummy_iRate 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/iRate/iRate-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /Pods/Target Support Files/pop/pop-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_pop : NSObject 3 | @end 4 | @implementation PodsDummy_pop 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/pop/pop-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /Pods/iRate/iRate/iRate.bundle/ar.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/Pods/iRate/iRate/iRate.bundle/ar.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/iRate/iRate/iRate.bundle/bn.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/Pods/iRate/iRate/iRate.bundle/bn.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/iRate/iRate/iRate.bundle/de.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/Pods/iRate/iRate/iRate.bundle/de.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/iRate/iRate/iRate.bundle/el.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/Pods/iRate/iRate/iRate.bundle/el.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/iRate/iRate/iRate.bundle/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/Pods/iRate/iRate/iRate.bundle/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/iRate/iRate/iRate.bundle/es.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/Pods/iRate/iRate/iRate.bundle/es.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/iRate/iRate/iRate.bundle/he.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/Pods/iRate/iRate/iRate.bundle/he.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/iRate/iRate/iRate.bundle/hi.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/Pods/iRate/iRate/iRate.bundle/hi.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/iRate/iRate/iRate.bundle/id.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/Pods/iRate/iRate/iRate.bundle/id.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/iRate/iRate/iRate.bundle/it.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/Pods/iRate/iRate/iRate.bundle/it.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/iRate/iRate/iRate.bundle/ja.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/Pods/iRate/iRate/iRate.bundle/ja.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/iRate/iRate/iRate.bundle/ko.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/Pods/iRate/iRate/iRate.bundle/ko.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/iRate/iRate/iRate.bundle/mk.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/Pods/iRate/iRate/iRate.bundle/mk.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/iRate/iRate/iRate.bundle/no.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/Pods/iRate/iRate/iRate.bundle/no.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/iRate/iRate/iRate.bundle/pa.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/Pods/iRate/iRate/iRate.bundle/pa.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/iRate/iRate/iRate.bundle/pl.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/Pods/iRate/iRate/iRate.bundle/pl.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/iRate/iRate/iRate.bundle/pt.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/Pods/iRate/iRate/iRate.bundle/pt.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/iRate/iRate/iRate.bundle/ru.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/Pods/iRate/iRate/iRate.bundle/ru.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/iRate/iRate/iRate.bundle/sl.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/Pods/iRate/iRate/iRate.bundle/sl.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/iRate/iRate/iRate.bundle/th.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/Pods/iRate/iRate/iRate.bundle/th.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/iRate/iRate/iRate.bundle/tr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/Pods/iRate/iRate/iRate.bundle/tr.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/iRate/iRate/iRate.bundle/uk.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/Pods/iRate/iRate/iRate.bundle/uk.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/iRate/iRate/iRate.bundle/zh-Hans.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/Pods/iRate/iRate/iRate.bundle/zh-Hans.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/iRate/iRate/iRate.bundle/zh-Hant.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/Pods/iRate/iRate/iRate.bundle/zh-Hant.lproj/Localizable.strings -------------------------------------------------------------------------------- /ScreenShots/IMG_0999.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/ScreenShots/IMG_0999.PNG -------------------------------------------------------------------------------- /ScreenShots/IMG_1004.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/ScreenShots/IMG_1004.PNG -------------------------------------------------------------------------------- /ScreenShots/IMG_1005.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/ScreenShots/IMG_1005.PNG -------------------------------------------------------------------------------- /ScreenShots/IMG_1007.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/ScreenShots/IMG_1007.PNG -------------------------------------------------------------------------------- /ScreenShots/IMG_1009.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinkh/JianDan/85d653b2a195a7df77afc1fb73fcc910a3a1a596/ScreenShots/IMG_1009.PNG --------------------------------------------------------------------------------