├── .gitignore ├── LICENSE ├── README.md ├── YZWpClient.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── YZWpClient ├── AppDelegate.h ├── AppDelegate.m ├── Base.lproj │ ├── LaunchScreen.xib │ └── Main.storyboard ├── Info.plist ├── Libs │ ├── SDKs │ │ ├── Crashlytics.framework │ │ │ ├── Crashlytics │ │ │ ├── Headers │ │ │ │ ├── ANSCompatibility.h │ │ │ │ ├── Answers.h │ │ │ │ ├── CLSAttributes.h │ │ │ │ ├── CLSLogging.h │ │ │ │ ├── CLSReport.h │ │ │ │ ├── CLSStackFrame.h │ │ │ │ └── Crashlytics.h │ │ │ ├── Info.plist │ │ │ ├── Modules │ │ │ │ └── module.modulemap │ │ │ ├── run │ │ │ ├── submit │ │ │ └── uploadDSYM │ │ ├── Fabric.framework │ │ │ ├── Fabric │ │ │ ├── Headers │ │ │ │ ├── FABAttributes.h │ │ │ │ └── Fabric.h │ │ │ ├── Info.plist │ │ │ ├── Modules │ │ │ │ └── module.modulemap │ │ │ ├── run │ │ │ └── uploadDSYM │ │ └── ShareSDK │ │ │ ├── MOBFoundation.framework │ │ │ ├── Headers │ │ │ │ ├── IMOBFPlugin.h │ │ │ │ ├── MOBFApplication.h │ │ │ │ ├── MOBFColor.h │ │ │ │ ├── MOBFData.h │ │ │ │ ├── MOBFDataService.h │ │ │ │ ├── MOBFDate.h │ │ │ │ ├── MOBFDebug.h │ │ │ │ ├── MOBFDevice.h │ │ │ │ ├── MOBFHttpPostedFile.h │ │ │ │ ├── MOBFHttpService.h │ │ │ │ ├── MOBFImage.h │ │ │ │ ├── MOBFImageService.h │ │ │ │ ├── MOBFImageServiceTypeDef.h │ │ │ │ ├── MOBFJSContext.h │ │ │ │ ├── MOBFJSTypeDefine.h │ │ │ │ ├── MOBFJson.h │ │ │ │ ├── MOBFMedia.h │ │ │ │ ├── MOBFNotificationCenter.h │ │ │ │ ├── MOBFNumber.h │ │ │ │ ├── MOBFOAuthService.h │ │ │ │ ├── MOBFPluginManager.h │ │ │ │ ├── MOBFRSAHelper.h │ │ │ │ ├── MOBFRSAKey.h │ │ │ │ ├── MOBFRegex.h │ │ │ │ ├── MOBFString.h │ │ │ │ ├── MOBFViewController.h │ │ │ │ ├── MOBFXml.h │ │ │ │ ├── MOBFXmlNode.h │ │ │ │ └── MOBFoundation.h │ │ │ ├── Info.plist │ │ │ ├── MOBFoundation │ │ │ ├── en.lproj │ │ │ │ └── InfoPlist.strings │ │ │ └── readme │ │ │ ├── ShareSDK.bundle │ │ │ ├── Base.lproj │ │ │ │ └── ShareSDK.strings │ │ │ ├── ScriptCore │ │ │ │ ├── NativeExt.js │ │ │ │ ├── ShareSDK.js │ │ │ │ └── platforms │ │ │ │ │ ├── Copy.js │ │ │ │ │ ├── DouBan.js │ │ │ │ │ ├── Facebook.js │ │ │ │ │ ├── Mail.js │ │ │ │ │ ├── QQ.js │ │ │ │ │ ├── SMS.js │ │ │ │ │ ├── SinaWeibo.js │ │ │ │ │ ├── TencentWeibo.js │ │ │ │ │ ├── Twitter.js │ │ │ │ │ └── WeChat.js │ │ │ ├── en.lproj │ │ │ │ └── ShareSDK.strings │ │ │ └── zh-Hans.lproj │ │ │ │ └── ShareSDK.strings │ │ │ ├── ShareSDK.framework │ │ │ ├── Headers │ │ │ │ ├── NSMutableDictionary+SSDKInit.h │ │ │ │ ├── NSMutableDictionary+SSDKShare.h │ │ │ │ ├── SSDKAuthView.h │ │ │ │ ├── SSDKAuthViewStyle.h │ │ │ │ ├── SSDKContentEntity.h │ │ │ │ ├── SSDKCredential.h │ │ │ │ ├── SSDKData.h │ │ │ │ ├── SSDKFriendsPaging.h │ │ │ │ ├── SSDKImage.h │ │ │ │ ├── SSDKPlatform.h │ │ │ │ ├── SSDKTypeDefine.h │ │ │ │ ├── SSDKUser.h │ │ │ │ ├── SSDKUserQueryConditional.h │ │ │ │ ├── ShareSDK+Base.h │ │ │ │ └── ShareSDK.h │ │ │ ├── Info.plist │ │ │ └── ShareSDK │ │ │ ├── ShareSDKConnector.framework │ │ │ ├── Headers │ │ │ │ └── ShareSDKConnector.h │ │ │ ├── Info.plist │ │ │ └── ShareSDKConnector │ │ │ ├── ShareSDKExtension.framework │ │ │ ├── Headers │ │ │ │ ├── SSEBaseUser.h │ │ │ │ ├── SSEShareHelper.h │ │ │ │ ├── SSEThirdPartyLoginHelper.h │ │ │ │ └── ShareSDK+Extension.h │ │ │ ├── Info.plist │ │ │ └── ShareSDKExtension │ │ │ ├── ShareSDKUI.bundle │ │ │ ├── Base.lproj │ │ │ │ └── ShareSDKUI_Localizable.strings │ │ │ ├── ContentEditorImg │ │ │ │ └── line@2x.gif │ │ │ ├── Icon │ │ │ │ ├── sns_icon_1.png │ │ │ │ ├── sns_icon_10.png │ │ │ │ ├── sns_icon_10@2x.png │ │ │ │ ├── sns_icon_11.png │ │ │ │ ├── sns_icon_11@2x.png │ │ │ │ ├── sns_icon_18.png │ │ │ │ ├── sns_icon_18@2x.png │ │ │ │ ├── sns_icon_19.png │ │ │ │ ├── sns_icon_19@2x.png │ │ │ │ ├── sns_icon_1@2x.png │ │ │ │ ├── sns_icon_2.png │ │ │ │ ├── sns_icon_21.png │ │ │ │ ├── sns_icon_21@2x.png │ │ │ │ ├── sns_icon_22.png │ │ │ │ ├── sns_icon_22@2x.png │ │ │ │ ├── sns_icon_23.png │ │ │ │ ├── sns_icon_23@2x.png │ │ │ │ ├── sns_icon_24.png │ │ │ │ ├── sns_icon_24@2x.png │ │ │ │ ├── sns_icon_2@2x.png │ │ │ │ ├── sns_icon_37.png │ │ │ │ ├── sns_icon_37@2x.png │ │ │ │ ├── sns_icon_5.png │ │ │ │ ├── sns_icon_5@2x.png │ │ │ │ ├── sns_icon_6.png │ │ │ │ └── sns_icon_6@2x.png │ │ │ ├── en.lproj │ │ │ │ └── ShareSDKUI_Localizable.strings │ │ │ └── zh-Hans.lproj │ │ │ │ └── ShareSDKUI_Localizable.strings │ │ │ ├── ShareSDKUI.framework │ │ │ ├── Headers │ │ │ │ ├── SSUIEditorViewStyle.h │ │ │ │ ├── SSUIShareActionSheetController.h │ │ │ │ ├── SSUIShareActionSheetCustomItem.h │ │ │ │ ├── SSUIShareActionSheetItem.h │ │ │ │ ├── SSUIShareActionSheetStyle.h │ │ │ │ ├── SSUIShareContentEditorViewController.h │ │ │ │ ├── SSUITypeDef.h │ │ │ │ ├── ShareSDK+SSUI.h │ │ │ │ └── ShareSDKUI.h │ │ │ ├── Info.plist │ │ │ └── ShareSDKUI │ │ │ └── extends │ │ │ ├── QQSDK │ │ │ ├── TencentOpenAPI.framework │ │ │ │ ├── Headers │ │ │ │ │ ├── QQApi.h │ │ │ │ │ ├── QQApiInterface.h │ │ │ │ │ ├── QQApiInterfaceObject.h │ │ │ │ │ ├── TencentApiInterface.h │ │ │ │ │ ├── TencentMessageObject.h │ │ │ │ │ ├── TencentOAuth.h │ │ │ │ │ ├── TencentOAuthObject.h │ │ │ │ │ ├── WeiBoAPI.h │ │ │ │ │ ├── WeiyunAPI.h │ │ │ │ │ └── sdkdef.h │ │ │ │ └── TencentOpenAPI │ │ │ └── TencentOpenApi_IOS_Bundle.bundle │ │ │ │ ├── Info.plist │ │ │ │ ├── error.png │ │ │ │ ├── local.html │ │ │ │ ├── qqicon.png │ │ │ │ └── success.png │ │ │ ├── SinaWeiboSDK │ │ │ ├── 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 │ │ │ └── libWeiboSDK.a │ │ │ └── WeChatSDK │ │ │ ├── WXApi.h │ │ │ ├── WXApiObject.h │ │ │ └── libWeChatSDK.a │ └── ThirdPart │ │ ├── AFNetworking │ │ ├── AFHTTPRequestOperation.h │ │ ├── AFHTTPRequestOperation.m │ │ ├── AFHTTPRequestOperationManager.h │ │ ├── AFHTTPRequestOperationManager.m │ │ ├── AFHTTPSessionManager.h │ │ ├── AFHTTPSessionManager.m │ │ ├── AFNetworkReachabilityManager.h │ │ ├── AFNetworkReachabilityManager.m │ │ ├── AFNetworking.h │ │ ├── AFSecurityPolicy.h │ │ ├── AFSecurityPolicy.m │ │ ├── AFURLConnectionOperation.h │ │ ├── AFURLConnectionOperation.m │ │ ├── AFURLRequestSerialization.h │ │ ├── AFURLRequestSerialization.m │ │ ├── AFURLResponseSerialization.h │ │ ├── AFURLResponseSerialization.m │ │ ├── AFURLSessionManager.h │ │ ├── AFURLSessionManager.m │ │ └── UIKit+AFNetworking │ │ │ ├── AFNetworkActivityIndicatorManager.h │ │ │ ├── AFNetworkActivityIndicatorManager.m │ │ │ ├── UIActivityIndicatorView+AFNetworking.h │ │ │ ├── UIActivityIndicatorView+AFNetworking.m │ │ │ ├── UIAlertView+AFNetworking.h │ │ │ ├── UIAlertView+AFNetworking.m │ │ │ ├── UIButton+AFNetworking.h │ │ │ ├── UIButton+AFNetworking.m │ │ │ ├── UIImageView+AFNetworking.h │ │ │ ├── UIImageView+AFNetworking.m │ │ │ ├── UIKit+AFNetworking.h │ │ │ ├── UIProgressView+AFNetworking.h │ │ │ ├── UIProgressView+AFNetworking.m │ │ │ ├── UIRefreshControl+AFNetworking.h │ │ │ ├── UIRefreshControl+AFNetworking.m │ │ │ ├── UIWebView+AFNetworking.h │ │ │ └── UIWebView+AFNetworking.m │ │ ├── CycleScrollView │ │ ├── HomeCycleScrollView.h │ │ ├── HomeCycleScrollView.m │ │ ├── MovieMyPageControl.h │ │ ├── MovieMyPageControl.m │ │ ├── NSTimer+Addition.h │ │ └── NSTimer+Addition.m │ │ ├── FLAnimatedImage │ │ ├── FLAnimatedImageDemo │ │ │ └── FLAnimatedImage │ │ │ │ ├── FLAnimatedImage.h │ │ │ │ ├── FLAnimatedImage.m │ │ │ │ ├── FLAnimatedImageView.h │ │ │ │ └── FLAnimatedImageView.m │ │ └── LICENSE │ │ ├── FMDB │ │ ├── FMDB.h │ │ ├── FMDatabase.h │ │ ├── FMDatabase.m │ │ ├── FMDatabaseAdditions.h │ │ ├── FMDatabaseAdditions.m │ │ ├── FMDatabasePool.h │ │ ├── FMDatabasePool.m │ │ ├── FMDatabaseQueue.h │ │ ├── FMDatabaseQueue.m │ │ ├── FMResultSet.h │ │ └── FMResultSet.m │ │ ├── FlatPillButton │ │ ├── FlatPillButton.h │ │ └── FlatPillButton.m │ │ ├── GMTBase64 │ │ ├── GTMBase64.h │ │ ├── GTMBase64.m │ │ └── GTMDefines.h │ │ ├── Hpple │ │ ├── TFHpple.h │ │ ├── TFHpple.m │ │ ├── TFHppleElement.h │ │ ├── TFHppleElement.m │ │ ├── XPathQuery.h │ │ └── XPathQuery.m │ │ ├── ICSDrawerController │ │ ├── ICSDrawerController.h │ │ ├── ICSDrawerController.m │ │ ├── ICSDropShadowView.h │ │ └── ICSDropShadowView.m │ │ ├── MBProgressHUD │ │ ├── MBProgressHUD.h │ │ └── MBProgressHUD.m │ │ ├── MJExtension │ │ ├── MJConst.h │ │ ├── MJConst.m │ │ ├── MJExtension.h │ │ ├── MJFoundation.h │ │ ├── MJFoundation.m │ │ ├── MJProperty.h │ │ ├── MJProperty.m │ │ ├── MJType.h │ │ ├── MJType.m │ │ ├── NSObject+MJCoding.h │ │ ├── NSObject+MJCoding.m │ │ ├── NSObject+MJKeyValue.h │ │ ├── NSObject+MJKeyValue.m │ │ ├── NSObject+MJProperty.h │ │ ├── NSObject+MJProperty.m │ │ ├── NSString+MJExtension.h │ │ └── NSString+MJExtension.m │ │ ├── MJRefresh │ │ ├── MJRefresh.bundle │ │ │ └── arrow@2x.png │ │ ├── MJRefresh.h │ │ ├── MJRefreshBaseView.h │ │ ├── MJRefreshBaseView.m │ │ ├── MJRefreshConst.h │ │ ├── MJRefreshConst.m │ │ ├── MJRefreshFooterView.h │ │ ├── MJRefreshFooterView.m │ │ ├── MJRefreshHeaderView.h │ │ ├── MJRefreshHeaderView.m │ │ ├── UIScrollView+MJExtension.h │ │ ├── UIScrollView+MJExtension.m │ │ ├── UIScrollView+MJRefresh.h │ │ ├── UIScrollView+MJRefresh.m │ │ ├── UIView+MJExtension.h │ │ └── UIView+MJExtension.m │ │ ├── PINCache │ │ ├── LICENSE.txt │ │ └── PINCache │ │ │ ├── Nullability.h │ │ │ ├── PINCache.h │ │ │ ├── PINCache.m │ │ │ ├── PINDiskCache.h │ │ │ ├── PINDiskCache.m │ │ │ ├── PINMemoryCache.h │ │ │ └── PINMemoryCache.m │ │ ├── PINRemoteImage │ │ ├── Categories │ │ │ ├── NSData+ImageDetectors.h │ │ │ ├── NSData+ImageDetectors.m │ │ │ ├── UIImage+DecodedImage.h │ │ │ ├── UIImage+DecodedImage.m │ │ │ ├── UIImage+WebP.h │ │ │ └── UIImage+WebP.m │ │ ├── Image Categories │ │ │ ├── FLAnimatedImageView+PINRemoteImage.h │ │ │ ├── FLAnimatedImageView+PINRemoteImage.m │ │ │ ├── UIButton+PINRemoteImage.h │ │ │ ├── UIButton+PINRemoteImage.m │ │ │ ├── UIImageView+PINRemoteImage.h │ │ │ └── UIImageView+PINRemoteImage.m │ │ ├── PINDataTaskOperation.h │ │ ├── PINDataTaskOperation.m │ │ ├── PINProgressiveImage.h │ │ ├── PINProgressiveImage.m │ │ ├── PINRemoteImage.h │ │ ├── PINRemoteImageCallbacks.h │ │ ├── PINRemoteImageCallbacks.m │ │ ├── PINRemoteImageCategoryManager.h │ │ ├── PINRemoteImageCategoryManager.m │ │ ├── PINRemoteImageDownloadTask.h │ │ ├── PINRemoteImageDownloadTask.m │ │ ├── PINRemoteImageManager.h │ │ ├── PINRemoteImageManager.m │ │ ├── PINRemoteImageManagerResult.h │ │ ├── PINRemoteImageManagerResult.m │ │ ├── PINRemoteImageProcessorTask.h │ │ ├── PINRemoteImageProcessorTask.m │ │ ├── PINRemoteImageTask.h │ │ ├── PINRemoteImageTask.m │ │ ├── PINURLSessionManager.h │ │ └── PINURLSessionManager.m │ │ ├── RNCryptor │ │ ├── RNCryptor+Private.h │ │ ├── RNCryptor-Prefix.pch │ │ ├── RNCryptor.h │ │ ├── RNCryptor.m │ │ ├── RNCryptorEngine.h │ │ ├── RNCryptorEngine.m │ │ ├── RNDecryptor.h │ │ ├── RNDecryptor.m │ │ ├── RNEncryptor.h │ │ ├── RNEncryptor.m │ │ ├── RNOpenSSLCryptor.h │ │ ├── RNOpenSSLCryptor.m │ │ ├── RNOpenSSLDecryptor.h │ │ ├── RNOpenSSLDecryptor.m │ │ ├── RNOpenSSLEncryptor.h │ │ └── RNOpenSSLEncryptor.m │ │ ├── Reachability │ │ ├── Reachability.h │ │ └── Reachability.m │ │ ├── SDWebImage │ │ ├── LICENSE │ │ ├── README.md │ │ └── SDWebImage │ │ │ ├── NSData+ImageContentType.h │ │ │ ├── NSData+ImageContentType.m │ │ │ ├── SDImageCache.h │ │ │ ├── SDImageCache.m │ │ │ ├── SDWebImageCompat.h │ │ │ ├── SDWebImageCompat.m │ │ │ ├── SDWebImageDecoder.h │ │ │ ├── SDWebImageDecoder.m │ │ │ ├── SDWebImageDownloader.h │ │ │ ├── SDWebImageDownloader.m │ │ │ ├── SDWebImageDownloaderOperation.h │ │ │ ├── SDWebImageDownloaderOperation.m │ │ │ ├── SDWebImageManager.h │ │ │ ├── SDWebImageManager.m │ │ │ ├── SDWebImageOperation.h │ │ │ ├── SDWebImagePrefetcher.h │ │ │ ├── SDWebImagePrefetcher.m │ │ │ ├── UIButton+WebCache.h │ │ │ ├── UIButton+WebCache.m │ │ │ ├── UIImage+GIF.h │ │ │ ├── UIImage+GIF.m │ │ │ ├── UIImage+MultiFormat.h │ │ │ ├── UIImage+MultiFormat.m │ │ │ ├── UIImageView+HighlightedWebCache.h │ │ │ ├── UIImageView+HighlightedWebCache.m │ │ │ ├── UIImageView+WebCache.h │ │ │ ├── UIImageView+WebCache.m │ │ │ ├── UIView+WebCacheOperation.h │ │ │ └── UIView+WebCacheOperation.m │ │ ├── SVProgressHUD │ │ ├── SVIndefiniteAnimatedView.h │ │ ├── SVIndefiniteAnimatedView.m │ │ ├── SVProgressHUD-Prefix.pch │ │ ├── SVProgressHUD.bundle │ │ │ ├── angle-mask.png │ │ │ ├── angle-mask@2x.png │ │ │ ├── angle-mask@3x.png │ │ │ ├── error.png │ │ │ ├── error@2x.png │ │ │ ├── error@3x.png │ │ │ ├── info.png │ │ │ ├── info@2x.png │ │ │ ├── info@3x.png │ │ │ ├── success.png │ │ │ ├── success@2x.png │ │ │ └── success@3x.png │ │ ├── SVProgressHUD.h │ │ └── SVProgressHUD.m │ │ ├── TopAlertView │ │ ├── MozTopAlertView.h │ │ ├── MozTopAlertView.m │ │ └── fontawesome │ │ │ ├── FAImageView.h │ │ │ ├── FAImageView.m │ │ │ ├── FontAwesome.ttf │ │ │ ├── NSString+FontAwesome.h │ │ │ ├── NSString+FontAwesome.m │ │ │ ├── UIFont+FontAwesome.h │ │ │ └── UIFont+FontAwesome.m │ │ ├── UIImage-RTTint-lib │ │ ├── UIImage+RTTint.h │ │ └── UIImage+RTTint.m │ │ ├── WebViewJavascriptBridge │ │ ├── WKWebViewJavascriptBridge.h │ │ ├── WKWebViewJavascriptBridge.m │ │ ├── WebViewJavascriptBridge.h │ │ ├── WebViewJavascriptBridge.js.txt │ │ ├── WebViewJavascriptBridge.m │ │ ├── WebViewJavascriptBridgeBase.h │ │ └── WebViewJavascriptBridgeBase.m │ │ └── XL │ │ ├── Controllers │ │ ├── XLBarPagerTabStripViewController.h │ │ ├── XLBarPagerTabStripViewController.m │ │ ├── XLButtonBarPagerTabStripViewController.h │ │ ├── XLButtonBarPagerTabStripViewController.m │ │ ├── XLPagerTabStripViewController.h │ │ ├── XLPagerTabStripViewController.m │ │ ├── XLSegmentedPagerTabStripViewController.h │ │ ├── XLSegmentedPagerTabStripViewController.m │ │ ├── XLTwitterPagerTabStripViewController.h │ │ └── XLTwitterPagerTabStripViewController.m │ │ └── Views │ │ ├── FXPageControl │ │ ├── FXPageControl.h │ │ └── FXPageControl.m │ │ ├── XLBarView.h │ │ ├── XLBarView.m │ │ ├── XLButtonBarView.h │ │ ├── XLButtonBarView.m │ │ ├── XLButtonBarViewCell.h │ │ └── XLButtonBarViewCell.m ├── PrefixHeader.pch ├── Resources │ ├── Fonts │ │ └── HeiTiJian.TTF │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── AppIcon29x29@2x.png │ │ │ ├── AppIcon40x40@2x.png │ │ │ ├── AppIcon60x60@2x.png │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── LaunchImage.launchimage │ │ │ ├── Contents.json │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default@2x.png │ │ │ ├── LaunchImage-800-667h@2x.png │ │ │ └── LaunchImage-800-Portrait-736h@3x.png │ │ ├── PersonInfo │ │ │ ├── Contents.json │ │ │ ├── person_info_email.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── 个人资料_邮箱@2x.png │ │ │ │ └── 个人资料_邮箱@3x.png │ │ │ └── pwd_icon.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── 个人资料_密码@2x.png │ │ │ │ └── 个人资料_密码@3x.png │ │ ├── about │ │ │ ├── Contents.json │ │ │ ├── about_icon.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── 关于我们ICON@2x.png │ │ │ │ └── 关于我们ICON@3x.png │ │ │ └── red_dote.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── red_dote@2x.png │ │ │ │ └── red_dote@3x.png │ │ ├── category │ │ │ ├── addCategory.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── addCategory@2x.png │ │ │ │ └── addCategory@3x.png │ │ │ ├── buttonClose.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── buttonClose@2x.png │ │ │ │ └── buttonClose@3x.png │ │ │ └── categoryClose.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── categoryClose@2x.png │ │ │ │ └── categoryClose@3x.png │ │ ├── comment_confirm_button.imageset │ │ │ ├── Contents.json │ │ │ └── comment_confirm_button@2x.png │ │ ├── comment_confirm_button_down.imageset │ │ │ ├── Contents.json │ │ │ └── comment_confirm_button_down@3x.png │ │ ├── defaultImage.imageset │ │ │ ├── Contents.json │ │ │ └── defaultImage@2x.png │ │ ├── default_image.imageset │ │ │ ├── Contents.json │ │ │ ├── default_image@2x.png │ │ │ └── default_image@3x.png │ │ ├── default_image_230160.imageset │ │ │ ├── Contents.json │ │ │ └── default_image_230160@2x.png │ │ ├── font_icon.imageset │ │ │ ├── Contents.json │ │ │ ├── font_icon@2x.png │ │ │ └── font_icon@3x.png │ │ ├── font_set_button.imageset │ │ │ ├── Contents.json │ │ │ ├── font_set_button@2x.png │ │ │ └── font_set_button@3x.png │ │ ├── home │ │ │ ├── Contents.json │ │ │ ├── article_detail_coment_icon.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── article_detail_coment_icon@2x.png │ │ │ │ └── article_detail_coment_icon@3x.png │ │ │ ├── close_comment_button.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── close_comment_button@2x.png │ │ │ │ └── close_comment_button@3x.png │ │ │ ├── comment_send_button.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── comment_send_button@2x.png │ │ │ │ └── comment_send_button@3x.png │ │ │ ├── home_detail_collection.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── home_detail_ collection@2x.png │ │ │ │ └── home_detail_ collection@3x.png │ │ │ ├── home_detail_collection_down.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── home_detail_ collection_down@2x.png │ │ │ │ └── home_detail_ collection_down@3x.png │ │ │ ├── home_detail_comment_button.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── home_detail_comment_button@2x.png │ │ │ │ └── home_detail_comment_button@3x.png │ │ │ ├── home_detail_share.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── home_detail_share@2x.png │ │ │ │ └── home_detail_share@3x.png │ │ │ ├── home_edit_commetn_button.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── home_edit_commetn_button@2x.png │ │ │ │ └── home_edit_commetn_button@3x.png │ │ │ └── home_nav_user_icon.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── home_nav_user_icon@2x.png │ │ ├── ico_page_dot.imageset │ │ │ ├── Contents.json │ │ │ └── ico_page_dot@2x.png │ │ ├── ico_page_dot_on.imageset │ │ │ ├── Contents.json │ │ │ └── ico_page_dot_on@2x.png │ │ ├── lauch_defult_image.imageset │ │ │ ├── Contents.json │ │ │ └── lauch_defult_image.jpg │ │ ├── left_view │ │ │ ├── Contents.json │ │ │ ├── default_user_icon.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── default_user_icon@2x.png │ │ │ │ └── default_user_icon@3x.png │ │ │ ├── left_comment_highlighted.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── left_comment_highlighted@2x.png │ │ │ │ └── left_comment_highlighted@3x.png │ │ │ ├── left_comment_normal.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── left_comment_normal@2x.png │ │ │ │ └── left_comment_normal@3x.png │ │ │ ├── left_fav_highlighted.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── left_fav_highlighted@2x.png │ │ │ │ └── left_fav_highlighted@3x.png │ │ │ ├── left_fav_normal.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── left_fav_normal@2x.png │ │ │ │ └── left_fav_normal@3x.png │ │ │ ├── left_history_normal.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── left_history_normal@2x.png │ │ │ │ └── left_history_normal@3x.png │ │ │ ├── left_logout_bg.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── left_logout_bg@2x.png │ │ │ │ └── left_logout_bg@3x.png │ │ │ ├── left_setting_highlighted.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── left_setting_highlighted@2x.png │ │ │ │ └── left_setting_highlighted@3x.png │ │ │ └── left_setting_normal.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── left_setting_normal@2x.png │ │ │ │ └── left_setting_normal@3x.png │ │ ├── login │ │ │ ├── cell_separatory_line.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── cell_separatory_line@2x.png │ │ │ ├── login_close.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── login_close@2x.png │ │ │ │ └── login_close@3x.png │ │ │ ├── login_logo.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── login_logo@2x.png │ │ │ │ └── login_logo@3x.png │ │ │ ├── login_qq.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── login_qq@2x.png │ │ │ │ └── login_qq@3x.png │ │ │ ├── login_weibo.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── login_weibo@2x.png │ │ │ │ └── login_weibo@3x.png │ │ │ ├── login_weixin.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── login_weixin@2x.png │ │ │ │ └── login_weixin@3x.png │ │ │ └── separatory_line.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── separatory_line@2x.png │ │ ├── nav_back.imageset │ │ │ ├── Contents.json │ │ │ └── nav_back@2x.png │ │ ├── nav_tal.imageset │ │ │ ├── Contents.json │ │ │ └── nav_tal@2x.png │ │ ├── nav_tal_new.imageset │ │ │ ├── Contents.json │ │ │ ├── nav_tal_new@2x.png │ │ │ └── nav_tal_new@3x.png │ │ ├── search │ │ │ ├── home_search_icon.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── home_search_icon@2x.png │ │ │ │ └── home_search_icon@3x.png │ │ │ ├── search_history.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── search_history@2x.png │ │ │ │ └── search_history@3x.png │ │ │ ├── search_history_arrow.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── search_history_arrow@2x.png │ │ │ │ └── search_history_arrow@3x.png │ │ │ └── search_icon.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── search_icon@2x.png │ │ │ │ └── search_icon@3x.png │ │ ├── shareIcon │ │ │ ├── share_QQ.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── share_QQ@2x.png │ │ │ │ └── share_QQ@3x.png │ │ │ ├── share_copy_link.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── share_copy_link@2x.png │ │ │ │ └── share_copy_link@3x.png │ │ │ ├── share_qzone.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── share_qzone@2x.png │ │ │ │ └── share_qzone@3x.png │ │ │ ├── share_webo.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── share_webo@2x.png │ │ │ │ └── share_webo@3x.png │ │ │ ├── share_wechat.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── share_wechat@2x.png │ │ │ │ └── share_wechat@3x.png │ │ │ └── share_wechat_friend.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── share_wechat_friend@2x.png │ │ │ │ └── share_wechat_friend@3x.png │ │ └── white_image.imageset │ │ │ ├── Contents.json │ │ │ └── white_image.png │ └── Text │ │ ├── Config.plist │ │ ├── defaultImage.png │ │ ├── detail.html │ │ ├── detail_click_show_img.png │ │ ├── detail_default_img.png │ │ ├── detail_loading_img.png │ │ └── main.js ├── Src │ ├── Application │ │ ├── VersionConfig │ │ │ └── Model │ │ │ │ ├── YZServerConfig.h │ │ │ │ └── YZServerConfig.m │ │ ├── YZLauchViewController.h │ │ ├── YZLauchViewController.m │ │ ├── YZLeftViewCell.h │ │ ├── YZLeftViewCell.m │ │ ├── YZLeftViewController.h │ │ ├── YZLeftViewController.m │ │ ├── YZMainController.h │ │ └── YZMainController.m │ ├── Category │ │ ├── CatoryModel.h │ │ ├── CatoryModel.m │ │ ├── PlistFileOperation.h │ │ ├── PlistFileOperation.m │ │ ├── YZCategoryViewController.h │ │ └── YZCategoryViewController.m │ ├── Comments │ │ ├── YZCommentController.h │ │ ├── YZCommentController.m │ │ ├── YZCommentRecordsCell.h │ │ ├── YZCommentRecordsCell.m │ │ ├── YZCommentRecordsController.h │ │ ├── YZCommentRecordsController.m │ │ ├── YZCommentRecordsViewModel.h │ │ └── YZCommentRecordsViewModel.m │ ├── Constants │ │ ├── BuildConfig.h │ │ └── HttpURLConstant.h │ ├── History │ │ ├── SDBManager.h │ │ ├── SDBManager.m │ │ ├── YZHistory.h │ │ ├── YZHistory.m │ │ ├── YZHistoryCell.h │ │ ├── YZHistoryCell.m │ │ ├── YZHistoryController.h │ │ ├── YZHistoryController.m │ │ ├── YZHistoryDBModel.h │ │ └── YZHistoryDBModel.m │ ├── Home │ │ ├── Category │ │ │ ├── BYConditionBar.h │ │ │ ├── BYConditionBar.m │ │ │ ├── BYSelectNewBar.h │ │ │ ├── BYSelectNewBar.m │ │ │ ├── BYSelectionDetails.h │ │ │ ├── BYSelectionDetails.m │ │ │ ├── BYSelectionView.h │ │ │ ├── BYSelectionView.m │ │ │ ├── SelectionButton.h │ │ │ ├── SelectionButton.m │ │ │ ├── otherProperties.plist │ │ │ └── properties.plist │ │ ├── YZADetailAuthor.h │ │ ├── YZADetailAuthor.m │ │ ├── YZADetailCommentModel.h │ │ ├── YZADetailCommentModel.m │ │ ├── YZADetailLink.h │ │ ├── YZADetailLink.m │ │ ├── YZADetailMeta.h │ │ ├── YZADetailMeta.m │ │ ├── YZArticelAuthorModel.h │ │ ├── YZArticelAuthorModel.m │ │ ├── YZArticelCategory.h │ │ ├── YZArticelCategory.m │ │ ├── YZArticelDetailModel.h │ │ ├── YZArticelDetailModel.m │ │ ├── YZArticelLink.h │ │ ├── YZArticelLink.m │ │ ├── YZArticelMeta.h │ │ ├── YZArticelMeta.m │ │ ├── YZArticelTerm.h │ │ ├── YZArticelTerm.m │ │ ├── YZArticleDetailBottomBar.h │ │ ├── YZArticleDetailBottomBar.m │ │ ├── YZArticleDetailController.h │ │ ├── YZArticleDetailController.m │ │ ├── YZCategoryViewController.h │ │ ├── YZCategoryViewController.m │ │ ├── YZDetailCommentCell.h │ │ ├── YZDetailCommentCell.m │ │ ├── YZDetailCommentViewModel.h │ │ ├── YZDetailCommentViewModel.m │ │ ├── YZHomeCell.h │ │ ├── YZHomeCell.m │ │ ├── YZHomeController.h │ │ ├── YZHomeController.m │ │ ├── YZHomeViewModel.h │ │ ├── YZHomeViewModel.m │ │ ├── YZLinkViewController.h │ │ ├── YZLinkViewController.m │ │ ├── YZNavLink.h │ │ ├── YZNavLink.m │ │ ├── YZNavListModel.h │ │ ├── YZNavListModel.m │ │ ├── YZNavMeta.h │ │ ├── YZNavMeta.m │ │ ├── YZNavParent.h │ │ ├── YZNavParent.m │ │ ├── YZPostInfoModel.h │ │ ├── YZPostInfoModel.m │ │ ├── YZPostsModel.h │ │ ├── YZPostsModel.m │ │ ├── YZWriteCommentView.h │ │ └── YZWriteCommentView.m │ ├── Login&Register │ │ ├── YZLoginController.h │ │ ├── YZLoginController.m │ │ ├── YZLoginModel.h │ │ ├── YZLoginModel.m │ │ ├── YZLoginView.h │ │ └── YZLoginView.m │ ├── MySave │ │ ├── YZSavePostDBModel.h │ │ └── YZSavePostDBModel.m │ ├── PersonInformation │ │ ├── View │ │ │ ├── YZPersonInfoCell.h │ │ │ └── YZPersonInfoCell.m │ │ ├── YZModifyInfoController.h │ │ ├── YZModifyInfoController.m │ │ ├── YZModifyNicknameController.h │ │ ├── YZModifyNicknameController.m │ │ ├── YZModifyPwdViewController.h │ │ ├── YZModifyPwdViewController.m │ │ ├── YZPersonInfoController.h │ │ └── YZPersonInfoController.m │ ├── Search │ │ ├── SearchCell.h │ │ ├── SearchCell.m │ │ ├── YZHotTagsView.h │ │ ├── YZHotTagsView.m │ │ ├── YZSearchController.h │ │ └── YZSearchController.m │ ├── Setting │ │ ├── YZAboutController.h │ │ ├── YZAboutController.m │ │ ├── YZFavoriteController.h │ │ ├── YZFavoriteController.m │ │ ├── YZHistoryController.h │ │ ├── YZHistoryController.m │ │ ├── YZOffLineDownloadController.h │ │ ├── YZOffLineDownloadController.m │ │ ├── YZSettingController.h │ │ └── YZSettingController.m │ ├── Special │ │ ├── Model │ │ │ ├── YZSpecialModel.h │ │ │ └── YZSpecialModel.m │ │ ├── YZSpecialController.h │ │ ├── YZSpecialController.m │ │ ├── YZSubSpecialController.h │ │ └── YZSubSpecialController.m │ ├── Theme&Skin │ │ ├── Resource │ │ │ ├── Night │ │ │ │ ├── addCategory@2x.png │ │ │ │ ├── addCategory@3x.png │ │ │ │ ├── colors.plist │ │ │ │ ├── corner_circle@2x.png │ │ │ │ ├── defaultImage@2x.png │ │ │ │ ├── default_image_230160@2x.png │ │ │ │ ├── font_set_button@2x.png │ │ │ │ ├── home_search_icon@2x.png │ │ │ │ ├── home_search_icon@3x.png │ │ │ │ ├── nav_back@2x.png │ │ │ │ ├── nav_tal_new@2x.png │ │ │ │ ├── nav_tal_new@3x.png │ │ │ │ └── separatory_line1@2x.png │ │ │ └── Normal │ │ │ │ ├── addCategory@2x.png │ │ │ │ ├── addCategory@3x.png │ │ │ │ ├── colors.plist │ │ │ │ ├── corner_circle@2x.png │ │ │ │ ├── defaultImage@2x.png │ │ │ │ ├── default_image_230160@2x.png │ │ │ │ ├── detail_font_icon_white@2x.png │ │ │ │ ├── detail_font_icon_white@3x.png │ │ │ │ ├── font_set_button@2x.png │ │ │ │ ├── home_search_icon@2x.png │ │ │ │ ├── home_search_icon@3x.png │ │ │ │ ├── home_search_icon_white@2x.png │ │ │ │ ├── home_search_icon_white@3x.png │ │ │ │ ├── nav_back@2x.png │ │ │ │ ├── nav_back_white@2x.png │ │ │ │ ├── nav_back_white@3x.png │ │ │ │ ├── nav_tal_new@2x.png │ │ │ │ ├── nav_tal_new@3x.png │ │ │ │ ├── nav_tal_white@2x.png │ │ │ │ ├── nav_tal_white@3x.png │ │ │ │ └── separatory_line1@2x.png │ │ ├── ThemeManager.h │ │ ├── ThemeManager.m │ │ └── UIKit-Skin │ │ │ ├── UIColor+Skin.h │ │ │ ├── UIColor+Skin.m │ │ │ ├── UIImageView+Skin.h │ │ │ ├── UIImageView+Skin.m │ │ │ ├── UILabel+Skin.h │ │ │ ├── UILabel+Skin.m │ │ │ ├── UINavigationBar+Skin.h │ │ │ ├── UINavigationBar+Skin.m │ │ │ ├── UIView+Skin.h │ │ │ ├── UIView+Skin.m │ │ │ ├── UIWebView+Skin.h │ │ │ ├── UIWebView+Skin.m │ │ │ ├── YZButton.h │ │ │ ├── YZButton.m │ │ │ ├── YZCollectionView.h │ │ │ ├── YZCollectionView.m │ │ │ ├── YZImageView.h │ │ │ ├── YZImageView.m │ │ │ ├── YZLabel.h │ │ │ ├── YZLabel.m │ │ │ ├── YZNavigationBar.h │ │ │ ├── YZNavigationBar.m │ │ │ ├── YZTableViewCell.h │ │ │ ├── YZTableViewCell.m │ │ │ ├── YZView.h │ │ │ ├── YZView.m │ │ │ ├── YZWebView.h │ │ │ └── YZWebView.m │ ├── Utils │ │ ├── Additions │ │ │ ├── Additions.h │ │ │ ├── NSData+Base64.h │ │ │ ├── NSData+Base64.m │ │ │ ├── NSData+SNAdditions.h │ │ │ ├── NSData+SNAdditions.m │ │ │ ├── NSDate+SNAdditions.h │ │ │ ├── NSDate+SNAdditions.m │ │ │ ├── NSNumber+SNAdditions.h │ │ │ ├── NSNumber+SNAdditions.m │ │ │ ├── NSString+Additions.h │ │ │ ├── NSString+Additions.m │ │ │ ├── NSString+Base64.h │ │ │ ├── NSString+Base64.m │ │ │ ├── NSString+DES.h │ │ │ ├── NSString+DES.m │ │ │ ├── NSString+MD5.h │ │ │ ├── NSString+MD5.m │ │ │ ├── NSString+SNAdditions.h │ │ │ ├── NSString+SNAdditions.m │ │ │ ├── UIButton+TouchBlock.h │ │ │ ├── UIButton+TouchBlock.m │ │ │ ├── UIColor+SNAdditions.h │ │ │ ├── UIColor+SNAdditions.m │ │ │ ├── UIImage+SNAdditions.h │ │ │ ├── UIImage+SNAdditions.m │ │ │ ├── UIViewController+YZProgressHUD.h │ │ │ ├── UIViewController+YZProgressHUD.m │ │ │ ├── UIViewExt.h │ │ │ ├── UIViewExt.m │ │ │ ├── YZQueryComponents.h │ │ │ └── YZQueryComponents.m │ │ ├── AppConfigManager.h │ │ ├── AppConfigManager.m │ │ ├── BaseView │ │ │ ├── YZBaseModel.h │ │ │ ├── YZBaseModel.m │ │ │ ├── YZBaseNavgationController.h │ │ │ ├── YZBaseNavgationController.m │ │ │ ├── YZBaseViewController.h │ │ │ └── YZBaseViewController.m │ │ ├── Config.h │ │ ├── Config.m │ │ ├── DAO │ │ │ ├── DAO.h │ │ │ └── DAO.m │ │ ├── DatabaseManager.h │ │ ├── DatabaseManager.m │ │ ├── FontSetSheet │ │ │ ├── FontSetSheet.h │ │ │ ├── FontSetSheet.m │ │ │ ├── FontSetSheetCell.h │ │ │ ├── FontSetSheetCell.m │ │ │ ├── FontSetSheetModel.h │ │ │ └── FontSetSheetModel.m │ │ ├── OffLine │ │ │ ├── YZCacheHelper.h │ │ │ ├── YZCacheHelper.m │ │ │ ├── YZOffLineDownloadTool.h │ │ │ └── YZOffLineDownloadTool.m │ │ ├── ShareActionSheet │ │ │ ├── YZShareActionCell.h │ │ │ ├── YZShareActionCell.m │ │ │ ├── YZShareActionView.h │ │ │ └── YZShareActionView.m │ │ └── YZHttpClient │ │ │ ├── YZCommentService.h │ │ │ ├── YZCommentService.m │ │ │ ├── YZConfService.h │ │ │ ├── YZConfService.m │ │ │ ├── YZFavService.h │ │ │ ├── YZFavService.m │ │ │ ├── YZHomeService.h │ │ │ ├── YZHomeService.m │ │ │ ├── YZHttpClient.h │ │ │ ├── YZHttpClient.m │ │ │ ├── YZMobLoginService.h │ │ │ ├── YZMobLoginService.m │ │ │ ├── YZModifyPersonInfoService.h │ │ │ ├── YZModifyPersonInfoService.m │ │ │ ├── YZNetworkStatusManager.h │ │ │ ├── YZNetworkStatusManager.m │ │ │ ├── YZSearchService.h │ │ │ ├── YZSearchService.m │ │ │ ├── YZSpecialService.h │ │ │ ├── YZSpecialService.m │ │ │ ├── YZUserService.h │ │ │ └── YZUserService.m │ ├── YZShareLoginView.h │ └── YZShareLoginView.m ├── ViewController.h ├── ViewController.m ├── en.lproj │ ├── InfoPlist.strings │ ├── LaunchScreen.strings │ ├── Localizable.strings │ └── Main.strings ├── main.m ├── zh-Hans.lproj │ ├── InfoPlist.strings │ ├── LaunchScreen.strings │ ├── Localizable.strings │ └── Main.strings └── zh-Hant.lproj │ ├── InfoPlist.strings │ ├── LaunchScreen.strings │ ├── Localizable.strings │ └── Main.strings ├── YZWpClientTests ├── Info.plist └── YZWpClientTests.m ├── appstore.sh ├── ipa.sh ├── resign_ipa.sh └── screenshots └── 1.png /YZWpClient.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /YZWpClient/AppDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.h 3 | // YZWpClient 4 | // 5 | // Created by zhoutl on 15/7/9. 6 | // Copyright (c) 2015年 com.youzu. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "YZConfService.h" 11 | 12 | @interface AppDelegate : UIResponder 13 | 14 | @property (strong, nonatomic) UIWindow *window; 15 | 16 | @end 17 | 18 | -------------------------------------------------------------------------------- /YZWpClient/Libs/SDKs/Crashlytics.framework/Crashlytics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Libs/SDKs/Crashlytics.framework/Crashlytics -------------------------------------------------------------------------------- /YZWpClient/Libs/SDKs/Crashlytics.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module Crashlytics { 2 | header "Crashlytics.h" 3 | header "Answers.h" 4 | header "ANSCompatibility.h" 5 | header "CLSLogging.h" 6 | header "CLSReport.h" 7 | header "CLSStackFrame.h" 8 | header "CLSAttributes.h" 9 | 10 | export * 11 | 12 | link "z" 13 | link "c++" 14 | } 15 | -------------------------------------------------------------------------------- /YZWpClient/Libs/SDKs/Crashlytics.framework/submit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Libs/SDKs/Crashlytics.framework/submit -------------------------------------------------------------------------------- /YZWpClient/Libs/SDKs/Crashlytics.framework/uploadDSYM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Libs/SDKs/Crashlytics.framework/uploadDSYM -------------------------------------------------------------------------------- /YZWpClient/Libs/SDKs/Fabric.framework/Fabric: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Libs/SDKs/Fabric.framework/Fabric -------------------------------------------------------------------------------- /YZWpClient/Libs/SDKs/Fabric.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module Fabric { 2 | umbrella header "Fabric.h" 3 | 4 | export * 5 | module * { export * } 6 | } -------------------------------------------------------------------------------- /YZWpClient/Libs/SDKs/Fabric.framework/uploadDSYM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Libs/SDKs/Fabric.framework/uploadDSYM -------------------------------------------------------------------------------- /YZWpClient/Libs/SDKs/ShareSDK/MOBFoundation.framework/Headers/IMOBFPlugin.h: -------------------------------------------------------------------------------- 1 | // 2 | // IMOBFPlugin.h 3 | // MOBFoundation 4 | // 5 | // Created by fenghj on 15/6/2. 6 | // Copyright (c) 2015年 MOB. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | /** 12 | * 插件协议 13 | */ 14 | @protocol IMOBFPlugin 15 | 16 | @required 17 | 18 | /** 19 | * 插件加载时调用 20 | * 21 | * @param key 插件标识 22 | */ 23 | - (void)load:(NSString *)key; 24 | 25 | /** 26 | * 插件卸载时调用 27 | */ 28 | - (void)unload; 29 | 30 | @end 31 | -------------------------------------------------------------------------------- /YZWpClient/Libs/SDKs/ShareSDK/MOBFoundation.framework/Headers/MOBFApplication.h: -------------------------------------------------------------------------------- 1 | // 2 | // MOBFApplicationUtils.h 3 | // MOBFoundation 4 | // 5 | // Created by vimfung on 15-1-20. 6 | // Copyright (c) 2015年 MOB. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | /** 12 | * 应用工具类 13 | */ 14 | @interface MOBFApplication : NSObject 15 | 16 | /** 17 | * 获取应用包名 18 | * 19 | * @return 包名 20 | */ 21 | + (NSString *)bundleId; 22 | 23 | /** 24 | * 获取应用版本号 25 | * 26 | * @return 版本号 27 | */ 28 | + (NSString *)version; 29 | 30 | /** 31 | * 检测是否启用ATS功能 32 | */ 33 | + (BOOL)enabledATS; 34 | 35 | @end 36 | -------------------------------------------------------------------------------- /YZWpClient/Libs/SDKs/ShareSDK/MOBFoundation.framework/Headers/MOBFJSTypeDefine.h: -------------------------------------------------------------------------------- 1 | // 2 | // MOBFJSTypeDefine.h 3 | // MOBFoundation 4 | // 5 | // Created by 冯 鸿杰 on 15/2/27. 6 | // Copyright (c) 2015年 MOB. All rights reserved. 7 | // 8 | 9 | #ifndef MOBFoundation_MOBFJSTypeDefine_h 10 | #define MOBFoundation_MOBFJSTypeDefine_h 11 | 12 | /** 13 | * JS方法实现 14 | * 15 | * @param params 传入参数 16 | */ 17 | typedef void(^MOBFJSMethodIMP) (NSArray *arguments); 18 | 19 | #endif 20 | -------------------------------------------------------------------------------- /YZWpClient/Libs/SDKs/ShareSDK/MOBFoundation.framework/Headers/MOBFNumber.h: -------------------------------------------------------------------------------- 1 | // 2 | // MOBFNumberUtils.h 3 | // MOBFoundation 4 | // 5 | // Created by vimfung on 15-1-20. 6 | // Copyright (c) 2015年 MOB. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | /** 12 | * 数值工具类 13 | */ 14 | @interface MOBFNumber : NSObject 15 | 16 | /** 17 | * 获取随机整型值 18 | * 19 | * @param max 最大随机数 20 | * 21 | * @return 随机整数 22 | */ 23 | + (NSInteger)randomInteger:(NSInteger)max; 24 | 25 | @end 26 | -------------------------------------------------------------------------------- /YZWpClient/Libs/SDKs/ShareSDK/MOBFoundation.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Libs/SDKs/ShareSDK/MOBFoundation.framework/Info.plist -------------------------------------------------------------------------------- /YZWpClient/Libs/SDKs/ShareSDK/MOBFoundation.framework/MOBFoundation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Libs/SDKs/ShareSDK/MOBFoundation.framework/MOBFoundation -------------------------------------------------------------------------------- /YZWpClient/Libs/SDKs/ShareSDK/MOBFoundation.framework/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Libs/SDKs/ShareSDK/MOBFoundation.framework/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /YZWpClient/Libs/SDKs/ShareSDK/MOBFoundation.framework/readme: -------------------------------------------------------------------------------- 1 | ========================================= 2 | MOBFoundation.framework 3 | ========================================= 4 | 5 | 1、引用此库需要添加下面依赖库: 6 | libz.dylib 7 | libicucore.dylib 8 | 9 | -------------------------------------------------------------------------------- /YZWpClient/Libs/SDKs/ShareSDK/ShareSDK.bundle/Base.lproj/ShareSDK.strings: -------------------------------------------------------------------------------- 1 | /* 2 | ShareSDKLocalizable.strings 3 | AppgoFramework 4 | 5 | 6 | Created by ShareSDK.cn on 13-1-14. 7 | 官网地址:http://www.mob.com 8 | 技术支持邮箱:support@sharesdk.cn 9 | 官方微信:ShareSDK (如果发布新版本的话,我们将会第一时间通过微信将版本更新内容推送给您。如果使用过程中有任何问题,也可以通过微信与我们取得联系,我们将会在24小时内给予回复) 10 | 商务QQ:4006852216 11 | Copyright (c) 2013年 ShareSDK.cn. All rights reserved. 12 | 13 | */ 14 | 15 | "AUTH_VIEW_TITLE" = "用户授权"; 16 | "AUTH_VIEW_CANCEL_BUTTON" = "取消"; 17 | -------------------------------------------------------------------------------- /YZWpClient/Libs/SDKs/ShareSDK/ShareSDK.bundle/en.lproj/ShareSDK.strings: -------------------------------------------------------------------------------- 1 | /* 2 | ShareSDKLocalizable.strings 3 | AppgoFramework 4 | 5 | 6 | Created by ShareSDK.cn on 13-1-14. 7 | 官网地址:http://www.ShareSDK.cn 8 | 技术支持邮箱:support@sharesdk.cn 9 | 官方微信:ShareSDK (如果发布新版本的话,我们将会第一时间通过微信将版本更新内容推送给您。如果使用过程中有任何问题,也可以通过微信与我们取得联系,我们将会在24小时内给予回复) 10 | 商务QQ:4006852216 11 | Copyright (c) 2013年 ShareSDK.cn. All rights reserved. 12 | 13 | */ 14 | 15 | "AUTH_VIEW_TITLE" = "Authorize"; 16 | "AUTH_VIEW_CANCEL_BUTTON" = "Cancel"; -------------------------------------------------------------------------------- /YZWpClient/Libs/SDKs/ShareSDK/ShareSDK.bundle/zh-Hans.lproj/ShareSDK.strings: -------------------------------------------------------------------------------- 1 | /* 2 | ShareSDKLocalizable.strings 3 | AppgoFramework 4 | 5 | 6 | Created by ShareSDK.cn on 13-1-14. 7 | 官网地址:http://www.mob.com 8 | 技术支持邮箱:support@sharesdk.cn 9 | 官方微信:ShareSDK (如果发布新版本的话,我们将会第一时间通过微信将版本更新内容推送给您。如果使用过程中有任何问题,也可以通过微信与我们取得联系,我们将会在24小时内给予回复) 10 | 商务QQ:4006852216 11 | Copyright (c) 2013年 ShareSDK.cn. All rights reserved. 12 | 13 | */ 14 | 15 | "AUTH_VIEW_TITLE" = "用户授权"; 16 | "AUTH_VIEW_CANCEL_BUTTON" = "取消"; 17 | -------------------------------------------------------------------------------- /YZWpClient/Libs/SDKs/ShareSDK/ShareSDK.framework/Headers/SSDKAuthView.h: -------------------------------------------------------------------------------- 1 | // 2 | // SSDKAuthView.h 3 | // ShareSDK 4 | // 5 | // Created by 冯 鸿杰 on 15/2/27. 6 | // Copyright (c) 2015年 掌淘科技. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "SSDKTypeDefine.h" 11 | 12 | /** 13 | * 授权视图 14 | */ 15 | @interface SSDKAuthView : UIView 16 | 17 | /** 18 | * 取消授权 19 | */ 20 | - (void)cancel; 21 | 22 | /** 23 | * 授权状态变更时触发 24 | * 25 | * @param stateChangedHandler 授权状态变更处理器 26 | */ 27 | - (void)onAuthStateChanged:(SSDKAuthorizeStateChangedHandler)stateChangedHandler; 28 | 29 | @end 30 | -------------------------------------------------------------------------------- /YZWpClient/Libs/SDKs/ShareSDK/ShareSDK.framework/Headers/SSDKData.h: -------------------------------------------------------------------------------- 1 | // 2 | // SSDKData.h 3 | // ShareSDK 4 | // 5 | // Created by fenghj on 15/6/5. 6 | // Copyright (c) 2015年 掌淘科技. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | /** 12 | * 数据 13 | */ 14 | @interface SSDKData : NSObject 15 | 16 | /** 17 | * 初始化数据 18 | * 19 | * @param URL 数据的地址 20 | * 21 | * @return 数据对象 22 | */ 23 | - (id)initWithURL:(NSURL *)URL; 24 | 25 | /** 26 | * 初始化数据 27 | * 28 | * @param data 原始数据对象 29 | * 30 | * @return 数据对象 31 | */ 32 | - (id)initWithData:(NSData *)data; 33 | 34 | @end 35 | -------------------------------------------------------------------------------- /YZWpClient/Libs/SDKs/ShareSDK/ShareSDK.framework/Headers/SSDKPlatform.h: -------------------------------------------------------------------------------- 1 | // 2 | // SSDKPlatform.h 3 | // ShareSDK 4 | // 5 | // Created by 冯 鸿杰 on 15/2/6. 6 | // Copyright (c) 2015年 掌淘科技. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "SSDKTypeDefine.h" 11 | 12 | /** 13 | * 分享平台信息 14 | */ 15 | @interface SSDKPlatform : NSObject 16 | 17 | /** 18 | * 平台类型 19 | */ 20 | @property (nonatomic) SSDKPlatformType type; 21 | 22 | /** 23 | * 平台名称 24 | */ 25 | @property (nonatomic, copy) NSString *name; 26 | 27 | /** 28 | * 平台图标 29 | */ 30 | @property (nonatomic, retain) UIImage *icon; 31 | 32 | @end 33 | -------------------------------------------------------------------------------- /YZWpClient/Libs/SDKs/ShareSDK/ShareSDK.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Libs/SDKs/ShareSDK/ShareSDK.framework/Info.plist -------------------------------------------------------------------------------- /YZWpClient/Libs/SDKs/ShareSDK/ShareSDK.framework/ShareSDK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Libs/SDKs/ShareSDK/ShareSDK.framework/ShareSDK -------------------------------------------------------------------------------- /YZWpClient/Libs/SDKs/ShareSDK/ShareSDKConnector.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Libs/SDKs/ShareSDK/ShareSDKConnector.framework/Info.plist -------------------------------------------------------------------------------- /YZWpClient/Libs/SDKs/ShareSDK/ShareSDKConnector.framework/ShareSDKConnector: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Libs/SDKs/ShareSDK/ShareSDKConnector.framework/ShareSDKConnector -------------------------------------------------------------------------------- /YZWpClient/Libs/SDKs/ShareSDK/ShareSDKExtension.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Libs/SDKs/ShareSDK/ShareSDKExtension.framework/Info.plist -------------------------------------------------------------------------------- /YZWpClient/Libs/SDKs/ShareSDK/ShareSDKExtension.framework/ShareSDKExtension: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Libs/SDKs/ShareSDK/ShareSDKExtension.framework/ShareSDKExtension -------------------------------------------------------------------------------- /YZWpClient/Libs/SDKs/ShareSDK/ShareSDKUI.bundle/ContentEditorImg/line@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Libs/SDKs/ShareSDK/ShareSDKUI.bundle/ContentEditorImg/line@2x.gif -------------------------------------------------------------------------------- /YZWpClient/Libs/SDKs/ShareSDK/ShareSDKUI.bundle/Icon/sns_icon_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Libs/SDKs/ShareSDK/ShareSDKUI.bundle/Icon/sns_icon_1.png -------------------------------------------------------------------------------- /YZWpClient/Libs/SDKs/ShareSDK/ShareSDKUI.bundle/Icon/sns_icon_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Libs/SDKs/ShareSDK/ShareSDKUI.bundle/Icon/sns_icon_10.png -------------------------------------------------------------------------------- /YZWpClient/Libs/SDKs/ShareSDK/ShareSDKUI.bundle/Icon/sns_icon_10@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Libs/SDKs/ShareSDK/ShareSDKUI.bundle/Icon/sns_icon_10@2x.png -------------------------------------------------------------------------------- /YZWpClient/Libs/SDKs/ShareSDK/ShareSDKUI.bundle/Icon/sns_icon_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Libs/SDKs/ShareSDK/ShareSDKUI.bundle/Icon/sns_icon_11.png -------------------------------------------------------------------------------- /YZWpClient/Libs/SDKs/ShareSDK/ShareSDKUI.bundle/Icon/sns_icon_11@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Libs/SDKs/ShareSDK/ShareSDKUI.bundle/Icon/sns_icon_11@2x.png -------------------------------------------------------------------------------- /YZWpClient/Libs/SDKs/ShareSDK/ShareSDKUI.bundle/Icon/sns_icon_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Libs/SDKs/ShareSDK/ShareSDKUI.bundle/Icon/sns_icon_18.png -------------------------------------------------------------------------------- /YZWpClient/Libs/SDKs/ShareSDK/ShareSDKUI.bundle/Icon/sns_icon_18@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Libs/SDKs/ShareSDK/ShareSDKUI.bundle/Icon/sns_icon_18@2x.png -------------------------------------------------------------------------------- /YZWpClient/Libs/SDKs/ShareSDK/ShareSDKUI.bundle/Icon/sns_icon_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Libs/SDKs/ShareSDK/ShareSDKUI.bundle/Icon/sns_icon_19.png -------------------------------------------------------------------------------- /YZWpClient/Libs/SDKs/ShareSDK/ShareSDKUI.bundle/Icon/sns_icon_19@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Libs/SDKs/ShareSDK/ShareSDKUI.bundle/Icon/sns_icon_19@2x.png -------------------------------------------------------------------------------- /YZWpClient/Libs/SDKs/ShareSDK/ShareSDKUI.bundle/Icon/sns_icon_1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Libs/SDKs/ShareSDK/ShareSDKUI.bundle/Icon/sns_icon_1@2x.png -------------------------------------------------------------------------------- /YZWpClient/Libs/SDKs/ShareSDK/ShareSDKUI.bundle/Icon/sns_icon_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Libs/SDKs/ShareSDK/ShareSDKUI.bundle/Icon/sns_icon_2.png -------------------------------------------------------------------------------- /YZWpClient/Libs/SDKs/ShareSDK/ShareSDKUI.bundle/Icon/sns_icon_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Libs/SDKs/ShareSDK/ShareSDKUI.bundle/Icon/sns_icon_21.png -------------------------------------------------------------------------------- /YZWpClient/Libs/SDKs/ShareSDK/ShareSDKUI.bundle/Icon/sns_icon_21@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Libs/SDKs/ShareSDK/ShareSDKUI.bundle/Icon/sns_icon_21@2x.png -------------------------------------------------------------------------------- /YZWpClient/Libs/SDKs/ShareSDK/ShareSDKUI.bundle/Icon/sns_icon_22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Libs/SDKs/ShareSDK/ShareSDKUI.bundle/Icon/sns_icon_22.png -------------------------------------------------------------------------------- /YZWpClient/Libs/SDKs/ShareSDK/ShareSDKUI.bundle/Icon/sns_icon_22@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Libs/SDKs/ShareSDK/ShareSDKUI.bundle/Icon/sns_icon_22@2x.png -------------------------------------------------------------------------------- /YZWpClient/Libs/SDKs/ShareSDK/ShareSDKUI.bundle/Icon/sns_icon_23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Libs/SDKs/ShareSDK/ShareSDKUI.bundle/Icon/sns_icon_23.png -------------------------------------------------------------------------------- /YZWpClient/Libs/SDKs/ShareSDK/ShareSDKUI.bundle/Icon/sns_icon_23@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Libs/SDKs/ShareSDK/ShareSDKUI.bundle/Icon/sns_icon_23@2x.png -------------------------------------------------------------------------------- /YZWpClient/Libs/SDKs/ShareSDK/ShareSDKUI.bundle/Icon/sns_icon_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Libs/SDKs/ShareSDK/ShareSDKUI.bundle/Icon/sns_icon_24.png -------------------------------------------------------------------------------- /YZWpClient/Libs/SDKs/ShareSDK/ShareSDKUI.bundle/Icon/sns_icon_24@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Libs/SDKs/ShareSDK/ShareSDKUI.bundle/Icon/sns_icon_24@2x.png -------------------------------------------------------------------------------- /YZWpClient/Libs/SDKs/ShareSDK/ShareSDKUI.bundle/Icon/sns_icon_2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Libs/SDKs/ShareSDK/ShareSDKUI.bundle/Icon/sns_icon_2@2x.png -------------------------------------------------------------------------------- /YZWpClient/Libs/SDKs/ShareSDK/ShareSDKUI.bundle/Icon/sns_icon_37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Libs/SDKs/ShareSDK/ShareSDKUI.bundle/Icon/sns_icon_37.png -------------------------------------------------------------------------------- /YZWpClient/Libs/SDKs/ShareSDK/ShareSDKUI.bundle/Icon/sns_icon_37@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Libs/SDKs/ShareSDK/ShareSDKUI.bundle/Icon/sns_icon_37@2x.png -------------------------------------------------------------------------------- /YZWpClient/Libs/SDKs/ShareSDK/ShareSDKUI.bundle/Icon/sns_icon_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Libs/SDKs/ShareSDK/ShareSDKUI.bundle/Icon/sns_icon_5.png -------------------------------------------------------------------------------- /YZWpClient/Libs/SDKs/ShareSDK/ShareSDKUI.bundle/Icon/sns_icon_5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Libs/SDKs/ShareSDK/ShareSDKUI.bundle/Icon/sns_icon_5@2x.png -------------------------------------------------------------------------------- /YZWpClient/Libs/SDKs/ShareSDK/ShareSDKUI.bundle/Icon/sns_icon_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Libs/SDKs/ShareSDK/ShareSDKUI.bundle/Icon/sns_icon_6.png -------------------------------------------------------------------------------- /YZWpClient/Libs/SDKs/ShareSDK/ShareSDKUI.bundle/Icon/sns_icon_6@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Libs/SDKs/ShareSDK/ShareSDKUI.bundle/Icon/sns_icon_6@2x.png -------------------------------------------------------------------------------- /YZWpClient/Libs/SDKs/ShareSDK/ShareSDKUI.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Libs/SDKs/ShareSDK/ShareSDKUI.framework/Info.plist -------------------------------------------------------------------------------- /YZWpClient/Libs/SDKs/ShareSDK/ShareSDKUI.framework/ShareSDKUI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Libs/SDKs/ShareSDK/ShareSDKUI.framework/ShareSDKUI -------------------------------------------------------------------------------- /YZWpClient/Libs/SDKs/ShareSDK/extends/QQSDK/TencentOpenAPI.framework/TencentOpenAPI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Libs/SDKs/ShareSDK/extends/QQSDK/TencentOpenAPI.framework/TencentOpenAPI -------------------------------------------------------------------------------- /YZWpClient/Libs/SDKs/ShareSDK/extends/QQSDK/TencentOpenApi_IOS_Bundle.bundle/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Libs/SDKs/ShareSDK/extends/QQSDK/TencentOpenApi_IOS_Bundle.bundle/Info.plist -------------------------------------------------------------------------------- /YZWpClient/Libs/SDKs/ShareSDK/extends/QQSDK/TencentOpenApi_IOS_Bundle.bundle/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Libs/SDKs/ShareSDK/extends/QQSDK/TencentOpenApi_IOS_Bundle.bundle/error.png -------------------------------------------------------------------------------- /YZWpClient/Libs/SDKs/ShareSDK/extends/QQSDK/TencentOpenApi_IOS_Bundle.bundle/qqicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Libs/SDKs/ShareSDK/extends/QQSDK/TencentOpenApi_IOS_Bundle.bundle/qqicon.png -------------------------------------------------------------------------------- /YZWpClient/Libs/SDKs/ShareSDK/extends/QQSDK/TencentOpenApi_IOS_Bundle.bundle/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Libs/SDKs/ShareSDK/extends/QQSDK/TencentOpenApi_IOS_Bundle.bundle/success.png -------------------------------------------------------------------------------- /YZWpClient/Libs/SDKs/ShareSDK/extends/SinaWeiboSDK/WBSDKBasicButton.h: -------------------------------------------------------------------------------- 1 | // 2 | // WBSDKBasicButton.h 3 | // WeiboSDK 4 | // 5 | // Created by DannionQiu on 14/10/24. 6 | // Copyright (c) 2014年 SINA iOS Team. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @class WBSDKBasicButton; 12 | typedef void (^WBSDKButtonHandler)(WBSDKBasicButton *button, 13 | BOOL isSuccess, 14 | NSDictionary *resultDict); 15 | 16 | @interface WBSDKBasicButton : UIButton 17 | 18 | @end 19 | -------------------------------------------------------------------------------- /YZWpClient/Libs/SDKs/ShareSDK/extends/SinaWeiboSDK/WeiboSDK.bundle/images/alert_error_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Libs/SDKs/ShareSDK/extends/SinaWeiboSDK/WeiboSDK.bundle/images/alert_error_icon@2x.png -------------------------------------------------------------------------------- /YZWpClient/Libs/SDKs/ShareSDK/extends/SinaWeiboSDK/WeiboSDK.bundle/images/alert_success_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Libs/SDKs/ShareSDK/extends/SinaWeiboSDK/WeiboSDK.bundle/images/alert_success_icon@2x.png -------------------------------------------------------------------------------- /YZWpClient/Libs/SDKs/ShareSDK/extends/SinaWeiboSDK/WeiboSDK.bundle/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Libs/SDKs/ShareSDK/extends/SinaWeiboSDK/WeiboSDK.bundle/images/close.png -------------------------------------------------------------------------------- /YZWpClient/Libs/SDKs/ShareSDK/extends/SinaWeiboSDK/WeiboSDK.bundle/images/close@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Libs/SDKs/ShareSDK/extends/SinaWeiboSDK/WeiboSDK.bundle/images/close@2x.png -------------------------------------------------------------------------------- /YZWpClient/Libs/SDKs/ShareSDK/extends/SinaWeiboSDK/WeiboSDK.bundle/images/common_button_big_blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Libs/SDKs/ShareSDK/extends/SinaWeiboSDK/WeiboSDK.bundle/images/common_button_big_blue@2x.png -------------------------------------------------------------------------------- /YZWpClient/Libs/SDKs/ShareSDK/extends/SinaWeiboSDK/WeiboSDK.bundle/images/common_button_big_blue_disable@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Libs/SDKs/ShareSDK/extends/SinaWeiboSDK/WeiboSDK.bundle/images/common_button_big_blue_disable@2x.png -------------------------------------------------------------------------------- /YZWpClient/Libs/SDKs/ShareSDK/extends/SinaWeiboSDK/WeiboSDK.bundle/images/common_button_big_blue_highlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Libs/SDKs/ShareSDK/extends/SinaWeiboSDK/WeiboSDK.bundle/images/common_button_big_blue_highlighted@2x.png -------------------------------------------------------------------------------- /YZWpClient/Libs/SDKs/ShareSDK/extends/SinaWeiboSDK/WeiboSDK.bundle/images/common_button_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Libs/SDKs/ShareSDK/extends/SinaWeiboSDK/WeiboSDK.bundle/images/common_button_white.png -------------------------------------------------------------------------------- /YZWpClient/Libs/SDKs/ShareSDK/extends/SinaWeiboSDK/WeiboSDK.bundle/images/common_button_white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Libs/SDKs/ShareSDK/extends/SinaWeiboSDK/WeiboSDK.bundle/images/common_button_white@2x.png -------------------------------------------------------------------------------- /YZWpClient/Libs/SDKs/ShareSDK/extends/SinaWeiboSDK/WeiboSDK.bundle/images/common_button_white_highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Libs/SDKs/ShareSDK/extends/SinaWeiboSDK/WeiboSDK.bundle/images/common_button_white_highlighted.png -------------------------------------------------------------------------------- /YZWpClient/Libs/SDKs/ShareSDK/extends/SinaWeiboSDK/WeiboSDK.bundle/images/common_button_white_highlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Libs/SDKs/ShareSDK/extends/SinaWeiboSDK/WeiboSDK.bundle/images/common_button_white_highlighted@2x.png -------------------------------------------------------------------------------- /YZWpClient/Libs/SDKs/ShareSDK/extends/SinaWeiboSDK/WeiboSDK.bundle/images/common_icon_arrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Libs/SDKs/ShareSDK/extends/SinaWeiboSDK/WeiboSDK.bundle/images/common_icon_arrow@2x.png -------------------------------------------------------------------------------- /YZWpClient/Libs/SDKs/ShareSDK/extends/SinaWeiboSDK/WeiboSDK.bundle/images/compose_keyboardbutton_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Libs/SDKs/ShareSDK/extends/SinaWeiboSDK/WeiboSDK.bundle/images/compose_keyboardbutton_background.png -------------------------------------------------------------------------------- /YZWpClient/Libs/SDKs/ShareSDK/extends/SinaWeiboSDK/WeiboSDK.bundle/images/compose_keyboardbutton_background@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Libs/SDKs/ShareSDK/extends/SinaWeiboSDK/WeiboSDK.bundle/images/compose_keyboardbutton_background@2x.png -------------------------------------------------------------------------------- /YZWpClient/Libs/SDKs/ShareSDK/extends/SinaWeiboSDK/WeiboSDK.bundle/images/compose_toolbar_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Libs/SDKs/ShareSDK/extends/SinaWeiboSDK/WeiboSDK.bundle/images/compose_toolbar_background.png -------------------------------------------------------------------------------- /YZWpClient/Libs/SDKs/ShareSDK/extends/SinaWeiboSDK/WeiboSDK.bundle/images/compose_toolbar_background@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Libs/SDKs/ShareSDK/extends/SinaWeiboSDK/WeiboSDK.bundle/images/compose_toolbar_background@2x.png -------------------------------------------------------------------------------- /YZWpClient/Libs/SDKs/ShareSDK/extends/SinaWeiboSDK/WeiboSDK.bundle/images/empty_failed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Libs/SDKs/ShareSDK/extends/SinaWeiboSDK/WeiboSDK.bundle/images/empty_failed.png -------------------------------------------------------------------------------- /YZWpClient/Libs/SDKs/ShareSDK/extends/SinaWeiboSDK/WeiboSDK.bundle/images/empty_failed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Libs/SDKs/ShareSDK/extends/SinaWeiboSDK/WeiboSDK.bundle/images/empty_failed@2x.png -------------------------------------------------------------------------------- /YZWpClient/Libs/SDKs/ShareSDK/extends/SinaWeiboSDK/WeiboSDK.bundle/images/login_background@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Libs/SDKs/ShareSDK/extends/SinaWeiboSDK/WeiboSDK.bundle/images/login_background@2x.png -------------------------------------------------------------------------------- /YZWpClient/Libs/SDKs/ShareSDK/extends/SinaWeiboSDK/WeiboSDK.bundle/images/login_country_background@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Libs/SDKs/ShareSDK/extends/SinaWeiboSDK/WeiboSDK.bundle/images/login_country_background@2x.png -------------------------------------------------------------------------------- /YZWpClient/Libs/SDKs/ShareSDK/extends/SinaWeiboSDK/WeiboSDK.bundle/images/login_country_background_highlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Libs/SDKs/ShareSDK/extends/SinaWeiboSDK/WeiboSDK.bundle/images/login_country_background_highlighted@2x.png -------------------------------------------------------------------------------- /YZWpClient/Libs/SDKs/ShareSDK/extends/SinaWeiboSDK/WeiboSDK.bundle/images/navigationbar_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Libs/SDKs/ShareSDK/extends/SinaWeiboSDK/WeiboSDK.bundle/images/navigationbar_background.png -------------------------------------------------------------------------------- /YZWpClient/Libs/SDKs/ShareSDK/extends/SinaWeiboSDK/WeiboSDK.bundle/images/navigationbar_background@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Libs/SDKs/ShareSDK/extends/SinaWeiboSDK/WeiboSDK.bundle/images/navigationbar_background@2x.png -------------------------------------------------------------------------------- /YZWpClient/Libs/SDKs/ShareSDK/extends/SinaWeiboSDK/WeiboSDK.bundle/images/navigationbar_background_os7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Libs/SDKs/ShareSDK/extends/SinaWeiboSDK/WeiboSDK.bundle/images/navigationbar_background_os7.png -------------------------------------------------------------------------------- /YZWpClient/Libs/SDKs/ShareSDK/extends/SinaWeiboSDK/WeiboSDK.bundle/images/navigationbar_background_os7@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Libs/SDKs/ShareSDK/extends/SinaWeiboSDK/WeiboSDK.bundle/images/navigationbar_background_os7@2x.png -------------------------------------------------------------------------------- /YZWpClient/Libs/SDKs/ShareSDK/extends/SinaWeiboSDK/WeiboSDK.bundle/images/progresshud_background@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Libs/SDKs/ShareSDK/extends/SinaWeiboSDK/WeiboSDK.bundle/images/progresshud_background@2x.png -------------------------------------------------------------------------------- /YZWpClient/Libs/SDKs/ShareSDK/extends/SinaWeiboSDK/WeiboSDK.bundle/images/sdk_weibo_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Libs/SDKs/ShareSDK/extends/SinaWeiboSDK/WeiboSDK.bundle/images/sdk_weibo_logo.png -------------------------------------------------------------------------------- /YZWpClient/Libs/SDKs/ShareSDK/extends/SinaWeiboSDK/WeiboSDK.bundle/images/sdk_weibo_logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Libs/SDKs/ShareSDK/extends/SinaWeiboSDK/WeiboSDK.bundle/images/sdk_weibo_logo@2x.png -------------------------------------------------------------------------------- /YZWpClient/Libs/SDKs/ShareSDK/extends/SinaWeiboSDK/WeiboSDK.bundle/images/sdk_weibo_logo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Libs/SDKs/ShareSDK/extends/SinaWeiboSDK/WeiboSDK.bundle/images/sdk_weibo_logo@3x.png -------------------------------------------------------------------------------- /YZWpClient/Libs/SDKs/ShareSDK/extends/SinaWeiboSDK/WeiboSDK.bundle/images/timeline_relationship_icon_addattention.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Libs/SDKs/ShareSDK/extends/SinaWeiboSDK/WeiboSDK.bundle/images/timeline_relationship_icon_addattention.png -------------------------------------------------------------------------------- /YZWpClient/Libs/SDKs/ShareSDK/extends/SinaWeiboSDK/WeiboSDK.bundle/images/timeline_relationship_icon_addattention@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Libs/SDKs/ShareSDK/extends/SinaWeiboSDK/WeiboSDK.bundle/images/timeline_relationship_icon_addattention@2x.png -------------------------------------------------------------------------------- /YZWpClient/Libs/SDKs/ShareSDK/extends/SinaWeiboSDK/WeiboSDK.bundle/images/timeline_relationship_icon_addattention@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Libs/SDKs/ShareSDK/extends/SinaWeiboSDK/WeiboSDK.bundle/images/timeline_relationship_icon_addattention@3x.png -------------------------------------------------------------------------------- /YZWpClient/Libs/SDKs/ShareSDK/extends/SinaWeiboSDK/WeiboSDK.bundle/images/timeline_relationship_icon_attention.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Libs/SDKs/ShareSDK/extends/SinaWeiboSDK/WeiboSDK.bundle/images/timeline_relationship_icon_attention.png -------------------------------------------------------------------------------- /YZWpClient/Libs/SDKs/ShareSDK/extends/SinaWeiboSDK/WeiboSDK.bundle/images/timeline_relationship_icon_attention@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Libs/SDKs/ShareSDK/extends/SinaWeiboSDK/WeiboSDK.bundle/images/timeline_relationship_icon_attention@2x.png -------------------------------------------------------------------------------- /YZWpClient/Libs/SDKs/ShareSDK/extends/SinaWeiboSDK/WeiboSDK.bundle/images/timeline_relationship_icon_attention@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Libs/SDKs/ShareSDK/extends/SinaWeiboSDK/WeiboSDK.bundle/images/timeline_relationship_icon_attention@3x.png -------------------------------------------------------------------------------- /YZWpClient/Libs/SDKs/ShareSDK/extends/SinaWeiboSDK/WeiboSDK.bundle/images/verify_code_button@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Libs/SDKs/ShareSDK/extends/SinaWeiboSDK/WeiboSDK.bundle/images/verify_code_button@2x.png -------------------------------------------------------------------------------- /YZWpClient/Libs/SDKs/ShareSDK/extends/SinaWeiboSDK/WeiboSDK.bundle/images/verify_code_button@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Libs/SDKs/ShareSDK/extends/SinaWeiboSDK/WeiboSDK.bundle/images/verify_code_button@3x.png -------------------------------------------------------------------------------- /YZWpClient/Libs/SDKs/ShareSDK/extends/SinaWeiboSDK/WeiboSDK.bundle/images/verify_code_button_highlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Libs/SDKs/ShareSDK/extends/SinaWeiboSDK/WeiboSDK.bundle/images/verify_code_button_highlighted@2x.png -------------------------------------------------------------------------------- /YZWpClient/Libs/SDKs/ShareSDK/extends/SinaWeiboSDK/WeiboSDK.bundle/images/verify_code_button_highlighted@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Libs/SDKs/ShareSDK/extends/SinaWeiboSDK/WeiboSDK.bundle/images/verify_code_button_highlighted@3x.png -------------------------------------------------------------------------------- /YZWpClient/Libs/SDKs/ShareSDK/extends/SinaWeiboSDK/WeiboSDK.bundle/others/mfp.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Libs/SDKs/ShareSDK/extends/SinaWeiboSDK/WeiboSDK.bundle/others/mfp.cer -------------------------------------------------------------------------------- /YZWpClient/Libs/SDKs/ShareSDK/extends/SinaWeiboSDK/libWeiboSDK.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Libs/SDKs/ShareSDK/extends/SinaWeiboSDK/libWeiboSDK.a -------------------------------------------------------------------------------- /YZWpClient/Libs/SDKs/ShareSDK/extends/WeChatSDK/libWeChatSDK.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Libs/SDKs/ShareSDK/extends/WeChatSDK/libWeChatSDK.a -------------------------------------------------------------------------------- /YZWpClient/Libs/ThirdPart/CycleScrollView/NSTimer+Addition.h: -------------------------------------------------------------------------------- 1 | // 2 | // NSTimer+Addition.h 3 | // PagedScrollView 4 | // 5 | // Created by 陈政 on 14-1-24. 6 | // Copyright (c) 2014年 Apple Inc. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface NSTimer (Addition) 12 | 13 | - (void)pauseTimer; 14 | - (void)resumeTimer; 15 | - (void)resumeTimerAfterTimeInterval:(NSTimeInterval)interval; 16 | @end 17 | -------------------------------------------------------------------------------- /YZWpClient/Libs/ThirdPart/FMDB/FMDB.h: -------------------------------------------------------------------------------- 1 | #import "FMDatabase.h" 2 | #import "FMResultSet.h" 3 | #import "FMDatabaseAdditions.h" 4 | #import "FMDatabaseQueue.h" 5 | #import "FMDatabasePool.h" 6 | -------------------------------------------------------------------------------- /YZWpClient/Libs/ThirdPart/FlatPillButton/FlatPillButton.h: -------------------------------------------------------------------------------- 1 | // 2 | // FlatPillButton.h 3 | // DrawingPlayground 4 | // 5 | // Created by Brian Michel on 11/11/12. 6 | // Copyright (c) 2012 Foureyes. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface FlatPillButton : UIButton 12 | 13 | //Sets a thicker outline 14 | @property (assign) BOOL bold; 15 | 16 | @property (nonatomic, strong)UIColor *fillColor; 17 | 18 | //For the lazy... 19 | + (FlatPillButton *)button; 20 | @end 21 | -------------------------------------------------------------------------------- /YZWpClient/Libs/ThirdPart/Hpple/XPathQuery.h: -------------------------------------------------------------------------------- 1 | // 2 | // XPathQuery.h 3 | // FuelFinder 4 | // 5 | // Created by Matt Gallagher on 4/08/08. 6 | // Copyright 2008 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | NSArray *PerformHTMLXPathQuery(NSData *document, NSString *query); 12 | NSArray *PerformHTMLXPathQueryWithEncoding(NSData *document, NSString *query,NSString *encoding); 13 | NSArray *PerformXMLXPathQuery(NSData *document, NSString *query); 14 | NSArray *PerformXMLXPathQueryWithEncoding(NSData *document, NSString *query,NSString *encoding); 15 | -------------------------------------------------------------------------------- /YZWpClient/Libs/ThirdPart/MJExtension/MJExtension.h: -------------------------------------------------------------------------------- 1 | // 2 | // MJExtension.h 3 | // MJExtension 4 | // 5 | // Created by mj on 14-1-15. 6 | // Copyright (c) 2014年 小码哥. All rights reserved. 7 | // 代码地址:https://github.com/CoderMJLee/MJExtension 8 | // 代码地址:http://code4app.com/ios/%E5%AD%97%E5%85%B8-JSON-%E4%B8%8E%E6%A8%A1%E5%9E%8B%E7%9A%84%E8%BD%AC%E6%8D%A2/5339992a933bf062608b4c57 9 | 10 | #import "NSObject+MJCoding.h" 11 | #import "NSObject+MJProperty.h" 12 | #import "NSObject+MJKeyValue.h" 13 | #import "NSString+MJExtension.h" 14 | -------------------------------------------------------------------------------- /YZWpClient/Libs/ThirdPart/MJExtension/MJFoundation.h: -------------------------------------------------------------------------------- 1 | // 2 | // MJFoundation.h 3 | // MJExtensionExample 4 | // 5 | // Created by MJ Lee on 14/7/16. 6 | // Copyright (c) 2014年 小码哥. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface MJFoundation : NSObject 12 | + (BOOL)isClassFromFoundation:(Class)c; 13 | @end 14 | -------------------------------------------------------------------------------- /YZWpClient/Libs/ThirdPart/MJExtension/NSString+MJExtension.h: -------------------------------------------------------------------------------- 1 | // 2 | // NSString+MJExtension.h 3 | // MJExtensionExample 4 | // 5 | // Created by MJ Lee on 15/6/7. 6 | // Copyright (c) 2015年 小码哥. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface NSString (MJExtension) 12 | /** 13 | * 驼峰转下划线(loveYou -> love_you) 14 | */ 15 | - (NSString *)underlineFromCamel; 16 | /** 17 | * 下划线转驼峰(love_you -> loveYou) 18 | */ 19 | - (NSString *)camelFromUnderline; 20 | /** 21 | * 首字母变大写 22 | */ 23 | - (NSString *)firstCharUpper; 24 | /** 25 | * 首字母变小写 26 | */ 27 | - (NSString *)firstCharLower; 28 | 29 | - (BOOL)isPureInt; 30 | @end 31 | -------------------------------------------------------------------------------- /YZWpClient/Libs/ThirdPart/MJRefresh/MJRefresh.bundle/arrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Libs/ThirdPart/MJRefresh/MJRefresh.bundle/arrow@2x.png -------------------------------------------------------------------------------- /YZWpClient/Libs/ThirdPart/MJRefresh/MJRefreshFooterView.h: -------------------------------------------------------------------------------- 1 | // 2 | // MJRefreshTableFooterView.h 3 | // MJRefresh 4 | // 5 | // Created by mj on 13-2-26. 6 | // Copyright (c) 2013年 itcast. All rights reserved. 7 | // 上拉加载更多 8 | 9 | #import "MJRefreshBaseView.h" 10 | 11 | @interface MJRefreshFooterView : MJRefreshBaseView 12 | + (instancetype)footer; 13 | @end -------------------------------------------------------------------------------- /YZWpClient/Libs/ThirdPart/MJRefresh/MJRefreshHeaderView.h: -------------------------------------------------------------------------------- 1 | // 2 | // MJRefreshHeaderView.h 3 | // MJRefresh 4 | // 5 | // Created by mj on 13-2-26. 6 | // Copyright (c) 2013年 itcast. All rights reserved. 7 | // 下拉刷新 8 | 9 | #import "MJRefreshBaseView.h" 10 | 11 | @interface MJRefreshHeaderView : MJRefreshBaseView 12 | 13 | @property (nonatomic, copy) NSString *dateKey; 14 | + (instancetype)header; 15 | 16 | @end -------------------------------------------------------------------------------- /YZWpClient/Libs/ThirdPart/MJRefresh/UIView+MJExtension.h: -------------------------------------------------------------------------------- 1 | // 2 | // UIView+Extension.h 3 | // MJRefreshExample 4 | // 5 | // Created by MJ Lee on 14-5-28. 6 | // Copyright (c) 2014年 itcast. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface UIView (MJExtension) 12 | @property (assign, nonatomic) CGFloat mj_x; 13 | @property (assign, nonatomic) CGFloat mj_y; 14 | @property (assign, nonatomic) CGFloat mj_width; 15 | @property (assign, nonatomic) CGFloat mj_height; 16 | @property (assign, nonatomic) CGSize mj_size; 17 | @property (assign, nonatomic) CGPoint mj_origin; 18 | @end 19 | -------------------------------------------------------------------------------- /YZWpClient/Libs/ThirdPart/PINCache/PINCache/Nullability.h: -------------------------------------------------------------------------------- 1 | // PINCache is a modified version of TMCache 2 | // Modifications by Garrett Moon 3 | // Copyright (c) 2015 Pinterest. All rights reserved. 4 | 5 | #ifndef PINCache_nullability_h 6 | #define PINCache_nullability_h 7 | 8 | #if !__has_feature(nullability) 9 | #define NS_ASSUME_NONNULL_BEGIN 10 | #define NS_ASSUME_NONNULL_END 11 | #define nullable 12 | #define nonnull 13 | #define null_unspecified 14 | #define null_resettable 15 | #define __nullable 16 | #define __nonnull 17 | #define __null_unspecified 18 | #endif 19 | 20 | #endif 21 | -------------------------------------------------------------------------------- /YZWpClient/Libs/ThirdPart/PINRemoteImage/Categories/NSData+ImageDetectors.h: -------------------------------------------------------------------------------- 1 | // 2 | // NSData+ImageDetectors.h 3 | // Pods 4 | // 5 | // Created by Garrett Moon on 11/19/14. 6 | // 7 | // 8 | 9 | @import Foundation; 10 | 11 | @interface NSData (PINImageDetectors) 12 | 13 | - (BOOL)pin_isGIF; 14 | #if __has_include() 15 | - (BOOL)pin_isWebP; 16 | #endif 17 | 18 | @end 19 | 20 | @interface NSData (PINImageDetectors_Deprecated) 21 | 22 | - (BOOL)isGIF __attribute((deprecated("use pin_isGIF"))); 23 | #if __has_include() 24 | - (BOOL)isWebP __attribute((deprecated("use pin_isWebP"))); 25 | #endif 26 | 27 | @end 28 | -------------------------------------------------------------------------------- /YZWpClient/Libs/ThirdPart/PINRemoteImage/Categories/UIImage+WebP.h: -------------------------------------------------------------------------------- 1 | // 2 | // UIImage+WebP.h 3 | // Pods 4 | // 5 | // Created by Garrett Moon on 11/18/14. 6 | // 7 | // 8 | 9 | #if __has_include() 10 | @import UIKit; 11 | 12 | @interface UIImage (PINWebP) 13 | 14 | + (UIImage *)pin_imageWithWebPData:(NSData *)webPData; 15 | 16 | @end 17 | 18 | @interface UIImage (PINWebP_Deprecated) 19 | 20 | + (UIImage *)imageWithWebPData:(NSData *)webPData __attribute((deprecated("use pin_imageWithWebPData:"))); 21 | 22 | @end 23 | #endif 24 | -------------------------------------------------------------------------------- /YZWpClient/Libs/ThirdPart/PINRemoteImage/Image Categories/FLAnimatedImageView+PINRemoteImage.h: -------------------------------------------------------------------------------- 1 | // 2 | // FLAnimatedImageView+PINRemoteImage.h 3 | // Pods 4 | // 5 | // Created by Garrett Moon on 8/17/14. 6 | // 7 | // 8 | 9 | #import "FLAnimatedImageView.h" 10 | 11 | #import "PINRemoteImageManager.h" 12 | #import "PINRemoteImageCategoryManager.h" 13 | 14 | @interface FLAnimatedImageView (PINRemoteImage) 15 | 16 | @end 17 | 18 | @interface FLAnimatedImageView (PINRemoteImage_Deprecated) 19 | 20 | @end 21 | -------------------------------------------------------------------------------- /YZWpClient/Libs/ThirdPart/PINRemoteImage/Image Categories/UIButton+PINRemoteImage.h: -------------------------------------------------------------------------------- 1 | // 2 | // UIButton+PINRemoteImage.h 3 | // Pods 4 | // 5 | // Created by Garrett Moon on 8/18/14. 6 | // 7 | // 8 | 9 | #import 10 | 11 | #import "PINRemoteImageManager.h" 12 | #import "PINRemoteImageCategoryManager.h" 13 | 14 | @interface UIButton (PINRemoteImage) 15 | 16 | @end 17 | 18 | @interface UIButton (PINRemoteImage_Deprecated) 19 | 20 | @end 21 | -------------------------------------------------------------------------------- /YZWpClient/Libs/ThirdPart/PINRemoteImage/Image Categories/UIImageView+PINRemoteImage.h: -------------------------------------------------------------------------------- 1 | // 2 | // UIImageView+PINRemoteImage.h 3 | // Pods 4 | // 5 | // Created by Garrett Moon on 8/17/14. 6 | // 7 | // 8 | 9 | #import 10 | 11 | #import "PINRemoteImageManager.h" 12 | #import "PINRemoteImageCategoryManager.h" 13 | 14 | @interface UIImageView (PINRemoteImage) 15 | 16 | @end 17 | 18 | @interface UIImageView (PINRemoteImage_Deprecated) 19 | 20 | @end 21 | -------------------------------------------------------------------------------- /YZWpClient/Libs/ThirdPart/PINRemoteImage/PINRemoteImageCallbacks.h: -------------------------------------------------------------------------------- 1 | // 2 | // PINRemoteImageCallbacks.h 3 | // Pods 4 | // 5 | // Created by Garrett Moon on 3/9/15. 6 | // 7 | // 8 | 9 | @import Foundation; 10 | #import "PINRemoteImageManager.h" 11 | 12 | @interface PINRemoteImageCallbacks : NSObject 13 | 14 | @property (nonatomic, strong) PINRemoteImageManagerImageCompletion completionBlock; 15 | @property (nonatomic, strong) PINRemoteImageManagerImageCompletion progressBlock; 16 | @property (nonatomic, assign) CFTimeInterval requestTime; 17 | 18 | @end 19 | -------------------------------------------------------------------------------- /YZWpClient/Libs/ThirdPart/PINRemoteImage/PINRemoteImageCallbacks.m: -------------------------------------------------------------------------------- 1 | // 2 | // PINRemoteImageCallbacks.m 3 | // Pods 4 | // 5 | // Created by Garrett Moon on 3/9/15. 6 | // 7 | // 8 | 9 | #import "PINRemoteImageCallbacks.h" 10 | 11 | @implementation PINRemoteImageCallbacks 12 | 13 | - (void)setCompletionBlock:(PINRemoteImageManagerImageCompletion)completionBlock 14 | { 15 | _completionBlock = [completionBlock copy]; 16 | self.requestTime = CACurrentMediaTime(); 17 | } 18 | 19 | @end 20 | -------------------------------------------------------------------------------- /YZWpClient/Libs/ThirdPart/PINRemoteImage/PINRemoteImageProcessorTask.h: -------------------------------------------------------------------------------- 1 | // 2 | // PINRemoteImageProcessorTask.h 3 | // Pods 4 | // 5 | // Created by Garrett Moon on 3/9/15. 6 | // 7 | // 8 | 9 | #import "PINRemoteImageTask.h" 10 | 11 | @interface PINRemoteImageProcessorTask : PINRemoteImageTask 12 | 13 | @property (nonatomic, strong) NSUUID *downloadTaskUUID; 14 | @property (nonatomic, strong) PINRemoteImageManagerImageProcessor processor; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /YZWpClient/Libs/ThirdPart/RNCryptor/RNCryptor-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'RNCrypt' target in the 'RNCrypt' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /YZWpClient/Libs/ThirdPart/SDWebImage/SDWebImage/SDWebImageDecoder.h: -------------------------------------------------------------------------------- 1 | /* 2 | * This file is part of the SDWebImage package. 3 | * (c) Olivier Poitrey 4 | * 5 | * Created by james on 9/28/11. 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | #import 12 | #import "SDWebImageCompat.h" 13 | 14 | @interface UIImage (ForceDecode) 15 | 16 | + (UIImage *)decodedImageWithImage:(UIImage *)image; 17 | 18 | @end 19 | -------------------------------------------------------------------------------- /YZWpClient/Libs/ThirdPart/SDWebImage/SDWebImage/SDWebImageOperation.h: -------------------------------------------------------------------------------- 1 | /* 2 | * This file is part of the SDWebImage package. 3 | * (c) Olivier Poitrey 4 | * 5 | * For the full copyright and license information, please view the LICENSE 6 | * file that was distributed with this source code. 7 | */ 8 | 9 | #import 10 | 11 | @protocol SDWebImageOperation 12 | 13 | - (void)cancel; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /YZWpClient/Libs/ThirdPart/SDWebImage/SDWebImage/UIImage+GIF.h: -------------------------------------------------------------------------------- 1 | // 2 | // UIImage+GIF.h 3 | // LBGIFImage 4 | // 5 | // Created by Laurin Brandner on 06.01.12. 6 | // Copyright (c) 2012 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface UIImage (GIF) 12 | 13 | + (UIImage *)sd_animatedGIFNamed:(NSString *)name; 14 | 15 | + (UIImage *)sd_animatedGIFWithData:(NSData *)data; 16 | 17 | - (UIImage *)sd_animatedImageByScalingAndCroppingToSize:(CGSize)size; 18 | 19 | @end 20 | -------------------------------------------------------------------------------- /YZWpClient/Libs/ThirdPart/SDWebImage/SDWebImage/UIImage+MultiFormat.h: -------------------------------------------------------------------------------- 1 | // 2 | // UIImage+MultiFormat.h 3 | // SDWebImage 4 | // 5 | // Created by Olivier Poitrey on 07/06/13. 6 | // Copyright (c) 2013 Dailymotion. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface UIImage (MultiFormat) 12 | 13 | + (UIImage *)sd_imageWithData:(NSData *)data; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /YZWpClient/Libs/ThirdPart/SVProgressHUD/SVIndefiniteAnimatedView.h: -------------------------------------------------------------------------------- 1 | // 2 | // SVIndefiniteAnimatedView.h 3 | // SVProgressHUD 4 | // 5 | // Created by Guillaume Campagna on 2014-12-05. 6 | // 7 | // 8 | 9 | #import 10 | 11 | @interface SVIndefiniteAnimatedView : UIView 12 | 13 | @property (nonatomic, assign) CGFloat strokeThickness; 14 | @property (nonatomic, assign) CGFloat radius; 15 | @property (nonatomic, strong) UIColor *strokeColor; 16 | 17 | @end 18 | 19 | -------------------------------------------------------------------------------- /YZWpClient/Libs/ThirdPart/SVProgressHUD/SVProgressHUD-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'SVProgressHUD' target in the 'SVProgressHUD' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /YZWpClient/Libs/ThirdPart/SVProgressHUD/SVProgressHUD.bundle/angle-mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Libs/ThirdPart/SVProgressHUD/SVProgressHUD.bundle/angle-mask.png -------------------------------------------------------------------------------- /YZWpClient/Libs/ThirdPart/SVProgressHUD/SVProgressHUD.bundle/angle-mask@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Libs/ThirdPart/SVProgressHUD/SVProgressHUD.bundle/angle-mask@2x.png -------------------------------------------------------------------------------- /YZWpClient/Libs/ThirdPart/SVProgressHUD/SVProgressHUD.bundle/angle-mask@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Libs/ThirdPart/SVProgressHUD/SVProgressHUD.bundle/angle-mask@3x.png -------------------------------------------------------------------------------- /YZWpClient/Libs/ThirdPart/SVProgressHUD/SVProgressHUD.bundle/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Libs/ThirdPart/SVProgressHUD/SVProgressHUD.bundle/error.png -------------------------------------------------------------------------------- /YZWpClient/Libs/ThirdPart/SVProgressHUD/SVProgressHUD.bundle/error@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Libs/ThirdPart/SVProgressHUD/SVProgressHUD.bundle/error@2x.png -------------------------------------------------------------------------------- /YZWpClient/Libs/ThirdPart/SVProgressHUD/SVProgressHUD.bundle/error@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Libs/ThirdPart/SVProgressHUD/SVProgressHUD.bundle/error@3x.png -------------------------------------------------------------------------------- /YZWpClient/Libs/ThirdPart/SVProgressHUD/SVProgressHUD.bundle/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Libs/ThirdPart/SVProgressHUD/SVProgressHUD.bundle/info.png -------------------------------------------------------------------------------- /YZWpClient/Libs/ThirdPart/SVProgressHUD/SVProgressHUD.bundle/info@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Libs/ThirdPart/SVProgressHUD/SVProgressHUD.bundle/info@2x.png -------------------------------------------------------------------------------- /YZWpClient/Libs/ThirdPart/SVProgressHUD/SVProgressHUD.bundle/info@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Libs/ThirdPart/SVProgressHUD/SVProgressHUD.bundle/info@3x.png -------------------------------------------------------------------------------- /YZWpClient/Libs/ThirdPart/SVProgressHUD/SVProgressHUD.bundle/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Libs/ThirdPart/SVProgressHUD/SVProgressHUD.bundle/success.png -------------------------------------------------------------------------------- /YZWpClient/Libs/ThirdPart/SVProgressHUD/SVProgressHUD.bundle/success@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Libs/ThirdPart/SVProgressHUD/SVProgressHUD.bundle/success@2x.png -------------------------------------------------------------------------------- /YZWpClient/Libs/ThirdPart/SVProgressHUD/SVProgressHUD.bundle/success@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Libs/ThirdPart/SVProgressHUD/SVProgressHUD.bundle/success@3x.png -------------------------------------------------------------------------------- /YZWpClient/Libs/ThirdPart/TopAlertView/fontawesome/FontAwesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Libs/ThirdPart/TopAlertView/fontawesome/FontAwesome.ttf -------------------------------------------------------------------------------- /YZWpClient/Libs/ThirdPart/TopAlertView/fontawesome/UIFont+FontAwesome.m: -------------------------------------------------------------------------------- 1 | // 2 | // UIFont+FontAwesome.m 3 | // FontAwesome-iOS Demo 4 | // 5 | // Created by Alex Usbergo on 1/16/13. 6 | // Copyright (c) 2013 Alex Usbergo. All rights reserved. 7 | // 8 | 9 | #import "UIFont+FontAwesome.h" 10 | #import "NSString+FontAwesome.h" 11 | 12 | @implementation UIFont (FontAwesome) 13 | 14 | #pragma mark - Public API 15 | + (UIFont*)fontAwesomeFontOfSize:(CGFloat)size { 16 | return [UIFont fontWithName:kFontAwesomeFamilyName size:size]; 17 | } 18 | 19 | @end 20 | -------------------------------------------------------------------------------- /YZWpClient/Resources/Fonts/HeiTiJian.TTF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Resources/Fonts/HeiTiJian.TTF -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/AppIcon.appiconset/AppIcon29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Resources/Images.xcassets/AppIcon.appiconset/AppIcon29x29@2x.png -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/AppIcon.appiconset/AppIcon40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Resources/Images.xcassets/AppIcon.appiconset/AppIcon40x40@2x.png -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/AppIcon.appiconset/AppIcon60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Resources/Images.xcassets/AppIcon.appiconset/AppIcon60x60@2x.png -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/LaunchImage.launchimage/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Resources/Images.xcassets/LaunchImage.launchimage/Default-568h@2x.png -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/LaunchImage.launchimage/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Resources/Images.xcassets/LaunchImage.launchimage/Default@2x.png -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/LaunchImage.launchimage/LaunchImage-800-667h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Resources/Images.xcassets/LaunchImage.launchimage/LaunchImage-800-667h@2x.png -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/LaunchImage.launchimage/LaunchImage-800-Portrait-736h@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Resources/Images.xcassets/LaunchImage.launchimage/LaunchImage-800-Portrait-736h@3x.png -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/PersonInfo/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/PersonInfo/person_info_email.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "个人资料_邮箱@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "个人资料_邮箱@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/PersonInfo/person_info_email.imageset/个人资料_邮箱@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Resources/Images.xcassets/PersonInfo/person_info_email.imageset/个人资料_邮箱@2x.png -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/PersonInfo/person_info_email.imageset/个人资料_邮箱@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Resources/Images.xcassets/PersonInfo/person_info_email.imageset/个人资料_邮箱@3x.png -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/PersonInfo/pwd_icon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "个人资料_密码@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "个人资料_密码@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/PersonInfo/pwd_icon.imageset/个人资料_密码@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Resources/Images.xcassets/PersonInfo/pwd_icon.imageset/个人资料_密码@2x.png -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/PersonInfo/pwd_icon.imageset/个人资料_密码@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Resources/Images.xcassets/PersonInfo/pwd_icon.imageset/个人资料_密码@3x.png -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/about/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/about/about_icon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "关于我们ICON@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "关于我们ICON@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/about/about_icon.imageset/关于我们ICON@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Resources/Images.xcassets/about/about_icon.imageset/关于我们ICON@2x.png -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/about/about_icon.imageset/关于我们ICON@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Resources/Images.xcassets/about/about_icon.imageset/关于我们ICON@3x.png -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/about/red_dote.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "red_dote@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "red_dote@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/about/red_dote.imageset/red_dote@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Resources/Images.xcassets/about/red_dote.imageset/red_dote@2x.png -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/about/red_dote.imageset/red_dote@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Resources/Images.xcassets/about/red_dote.imageset/red_dote@3x.png -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/category/addCategory.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x", 10 | "filename" : "addCategory@2x.png" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x", 15 | "filename" : "addCategory@3x.png" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/category/addCategory.imageset/addCategory@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Resources/Images.xcassets/category/addCategory.imageset/addCategory@2x.png -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/category/addCategory.imageset/addCategory@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Resources/Images.xcassets/category/addCategory.imageset/addCategory@3x.png -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/category/buttonClose.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x", 10 | "filename" : "buttonClose@2x.png" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x", 15 | "filename" : "buttonClose@3x.png" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/category/buttonClose.imageset/buttonClose@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Resources/Images.xcassets/category/buttonClose.imageset/buttonClose@2x.png -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/category/buttonClose.imageset/buttonClose@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Resources/Images.xcassets/category/buttonClose.imageset/buttonClose@3x.png -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/category/categoryClose.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x", 10 | "filename" : "categoryClose@2x.png" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x", 15 | "filename" : "categoryClose@3x.png" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/category/categoryClose.imageset/categoryClose@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Resources/Images.xcassets/category/categoryClose.imageset/categoryClose@2x.png -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/category/categoryClose.imageset/categoryClose@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Resources/Images.xcassets/category/categoryClose.imageset/categoryClose@3x.png -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/comment_confirm_button.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x", 10 | "filename" : "comment_confirm_button@2x.png" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/comment_confirm_button.imageset/comment_confirm_button@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Resources/Images.xcassets/comment_confirm_button.imageset/comment_confirm_button@2x.png -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/comment_confirm_button_down.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x" 10 | }, 11 | { 12 | "idiom" : "universal", 13 | "scale" : "3x", 14 | "filename" : "comment_confirm_button_down@3x.png" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/comment_confirm_button_down.imageset/comment_confirm_button_down@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Resources/Images.xcassets/comment_confirm_button_down.imageset/comment_confirm_button_down@3x.png -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/defaultImage.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "defaultImage@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/defaultImage.imageset/defaultImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Resources/Images.xcassets/defaultImage.imageset/defaultImage@2x.png -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/default_image.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x", 10 | "filename" : "default_image@2x.png" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x", 15 | "filename" : "default_image@3x.png" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/default_image.imageset/default_image@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Resources/Images.xcassets/default_image.imageset/default_image@2x.png -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/default_image.imageset/default_image@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Resources/Images.xcassets/default_image.imageset/default_image@3x.png -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/default_image_230160.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x", 10 | "filename" : "default_image_230160@2x.png" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/default_image_230160.imageset/default_image_230160@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Resources/Images.xcassets/default_image_230160.imageset/default_image_230160@2x.png -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/font_icon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x", 10 | "filename" : "font_icon@2x.png" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x", 15 | "filename" : "font_icon@3x.png" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/font_icon.imageset/font_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Resources/Images.xcassets/font_icon.imageset/font_icon@2x.png -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/font_icon.imageset/font_icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Resources/Images.xcassets/font_icon.imageset/font_icon@3x.png -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/font_set_button.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x", 10 | "filename" : "font_set_button@2x.png" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x", 15 | "filename" : "font_set_button@3x.png" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/font_set_button.imageset/font_set_button@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Resources/Images.xcassets/font_set_button.imageset/font_set_button@2x.png -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/font_set_button.imageset/font_set_button@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Resources/Images.xcassets/font_set_button.imageset/font_set_button@3x.png -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/home/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/home/article_detail_coment_icon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x", 10 | "filename" : "article_detail_coment_icon@2x.png" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x", 15 | "filename" : "article_detail_coment_icon@3x.png" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/home/article_detail_coment_icon.imageset/article_detail_coment_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Resources/Images.xcassets/home/article_detail_coment_icon.imageset/article_detail_coment_icon@2x.png -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/home/article_detail_coment_icon.imageset/article_detail_coment_icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Resources/Images.xcassets/home/article_detail_coment_icon.imageset/article_detail_coment_icon@3x.png -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/home/close_comment_button.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x", 10 | "filename" : "close_comment_button@2x.png" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x", 15 | "filename" : "close_comment_button@3x.png" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/home/close_comment_button.imageset/close_comment_button@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Resources/Images.xcassets/home/close_comment_button.imageset/close_comment_button@2x.png -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/home/close_comment_button.imageset/close_comment_button@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Resources/Images.xcassets/home/close_comment_button.imageset/close_comment_button@3x.png -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/home/comment_send_button.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x", 10 | "filename" : "comment_send_button@2x.png" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x", 15 | "filename" : "comment_send_button@3x.png" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/home/comment_send_button.imageset/comment_send_button@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Resources/Images.xcassets/home/comment_send_button.imageset/comment_send_button@2x.png -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/home/comment_send_button.imageset/comment_send_button@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Resources/Images.xcassets/home/comment_send_button.imageset/comment_send_button@3x.png -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/home/home_detail_collection.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x", 10 | "filename" : "home_detail_ collection@2x.png" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x", 15 | "filename" : "home_detail_ collection@3x.png" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/home/home_detail_collection.imageset/home_detail_ collection@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Resources/Images.xcassets/home/home_detail_collection.imageset/home_detail_ collection@2x.png -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/home/home_detail_collection.imageset/home_detail_ collection@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Resources/Images.xcassets/home/home_detail_collection.imageset/home_detail_ collection@3x.png -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/home/home_detail_collection_down.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x", 10 | "filename" : "home_detail_ collection_down@2x.png" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x", 15 | "filename" : "home_detail_ collection_down@3x.png" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/home/home_detail_collection_down.imageset/home_detail_ collection_down@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Resources/Images.xcassets/home/home_detail_collection_down.imageset/home_detail_ collection_down@2x.png -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/home/home_detail_collection_down.imageset/home_detail_ collection_down@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Resources/Images.xcassets/home/home_detail_collection_down.imageset/home_detail_ collection_down@3x.png -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/home/home_detail_comment_button.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x", 10 | "filename" : "home_detail_comment_button@2x.png" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x", 15 | "filename" : "home_detail_comment_button@3x.png" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/home/home_detail_comment_button.imageset/home_detail_comment_button@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Resources/Images.xcassets/home/home_detail_comment_button.imageset/home_detail_comment_button@2x.png -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/home/home_detail_comment_button.imageset/home_detail_comment_button@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Resources/Images.xcassets/home/home_detail_comment_button.imageset/home_detail_comment_button@3x.png -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/home/home_detail_share.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x", 10 | "filename" : "home_detail_share@2x.png" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x", 15 | "filename" : "home_detail_share@3x.png" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/home/home_detail_share.imageset/home_detail_share@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Resources/Images.xcassets/home/home_detail_share.imageset/home_detail_share@2x.png -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/home/home_detail_share.imageset/home_detail_share@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Resources/Images.xcassets/home/home_detail_share.imageset/home_detail_share@3x.png -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/home/home_edit_commetn_button.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x", 10 | "filename" : "home_edit_commetn_button@2x.png" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x", 15 | "filename" : "home_edit_commetn_button@3x.png" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/home/home_edit_commetn_button.imageset/home_edit_commetn_button@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Resources/Images.xcassets/home/home_edit_commetn_button.imageset/home_edit_commetn_button@2x.png -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/home/home_edit_commetn_button.imageset/home_edit_commetn_button@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Resources/Images.xcassets/home/home_edit_commetn_button.imageset/home_edit_commetn_button@3x.png -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/home/home_nav_user_icon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x", 10 | "filename" : "home_nav_user_icon@2x.png" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/home/home_nav_user_icon.imageset/home_nav_user_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Resources/Images.xcassets/home/home_nav_user_icon.imageset/home_nav_user_icon@2x.png -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/ico_page_dot.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x", 10 | "filename" : "ico_page_dot@2x.png" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/ico_page_dot.imageset/ico_page_dot@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Resources/Images.xcassets/ico_page_dot.imageset/ico_page_dot@2x.png -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/ico_page_dot_on.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x", 10 | "filename" : "ico_page_dot_on@2x.png" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/ico_page_dot_on.imageset/ico_page_dot_on@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Resources/Images.xcassets/ico_page_dot_on.imageset/ico_page_dot_on@2x.png -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/lauch_defult_image.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x", 10 | "filename" : "lauch_defult_image.jpg" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/lauch_defult_image.imageset/lauch_defult_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Resources/Images.xcassets/lauch_defult_image.imageset/lauch_defult_image.jpg -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/left_view/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/left_view/default_user_icon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x", 10 | "filename" : "default_user_icon@2x.png" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x", 15 | "filename" : "default_user_icon@3x.png" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/left_view/default_user_icon.imageset/default_user_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Resources/Images.xcassets/left_view/default_user_icon.imageset/default_user_icon@2x.png -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/left_view/default_user_icon.imageset/default_user_icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Resources/Images.xcassets/left_view/default_user_icon.imageset/default_user_icon@3x.png -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/left_view/left_comment_highlighted.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x", 10 | "filename" : "left_comment_highlighted@2x.png" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x", 15 | "filename" : "left_comment_highlighted@3x.png" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/left_view/left_comment_highlighted.imageset/left_comment_highlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Resources/Images.xcassets/left_view/left_comment_highlighted.imageset/left_comment_highlighted@2x.png -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/left_view/left_comment_highlighted.imageset/left_comment_highlighted@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Resources/Images.xcassets/left_view/left_comment_highlighted.imageset/left_comment_highlighted@3x.png -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/left_view/left_comment_normal.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x", 10 | "filename" : "left_comment_normal@2x.png" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x", 15 | "filename" : "left_comment_normal@3x.png" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/left_view/left_comment_normal.imageset/left_comment_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Resources/Images.xcassets/left_view/left_comment_normal.imageset/left_comment_normal@2x.png -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/left_view/left_comment_normal.imageset/left_comment_normal@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Resources/Images.xcassets/left_view/left_comment_normal.imageset/left_comment_normal@3x.png -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/left_view/left_fav_highlighted.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x", 10 | "filename" : "left_fav_highlighted@2x.png" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x", 15 | "filename" : "left_fav_highlighted@3x.png" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/left_view/left_fav_highlighted.imageset/left_fav_highlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Resources/Images.xcassets/left_view/left_fav_highlighted.imageset/left_fav_highlighted@2x.png -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/left_view/left_fav_highlighted.imageset/left_fav_highlighted@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Resources/Images.xcassets/left_view/left_fav_highlighted.imageset/left_fav_highlighted@3x.png -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/left_view/left_fav_normal.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x", 10 | "filename" : "left_fav_normal@2x.png" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x", 15 | "filename" : "left_fav_normal@3x.png" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/left_view/left_fav_normal.imageset/left_fav_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Resources/Images.xcassets/left_view/left_fav_normal.imageset/left_fav_normal@2x.png -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/left_view/left_fav_normal.imageset/left_fav_normal@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Resources/Images.xcassets/left_view/left_fav_normal.imageset/left_fav_normal@3x.png -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/left_view/left_history_normal.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "left_history_normal@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "left_history_normal@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/left_view/left_history_normal.imageset/left_history_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Resources/Images.xcassets/left_view/left_history_normal.imageset/left_history_normal@2x.png -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/left_view/left_history_normal.imageset/left_history_normal@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Resources/Images.xcassets/left_view/left_history_normal.imageset/left_history_normal@3x.png -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/left_view/left_logout_bg.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x", 10 | "filename" : "left_logout_bg@2x.png" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x", 15 | "filename" : "left_logout_bg@3x.png" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/left_view/left_logout_bg.imageset/left_logout_bg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Resources/Images.xcassets/left_view/left_logout_bg.imageset/left_logout_bg@2x.png -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/left_view/left_logout_bg.imageset/left_logout_bg@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Resources/Images.xcassets/left_view/left_logout_bg.imageset/left_logout_bg@3x.png -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/left_view/left_setting_highlighted.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x", 10 | "filename" : "left_setting_highlighted@2x.png" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x", 15 | "filename" : "left_setting_highlighted@3x.png" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/left_view/left_setting_highlighted.imageset/left_setting_highlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Resources/Images.xcassets/left_view/left_setting_highlighted.imageset/left_setting_highlighted@2x.png -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/left_view/left_setting_highlighted.imageset/left_setting_highlighted@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Resources/Images.xcassets/left_view/left_setting_highlighted.imageset/left_setting_highlighted@3x.png -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/left_view/left_setting_normal.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x", 10 | "filename" : "left_setting_normal@2x.png" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x", 15 | "filename" : "left_setting_normal@3x.png" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/left_view/left_setting_normal.imageset/left_setting_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Resources/Images.xcassets/left_view/left_setting_normal.imageset/left_setting_normal@2x.png -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/left_view/left_setting_normal.imageset/left_setting_normal@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Resources/Images.xcassets/left_view/left_setting_normal.imageset/left_setting_normal@3x.png -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/login/cell_separatory_line.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "cell_separatory_line@2x.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/login/cell_separatory_line.imageset/cell_separatory_line@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Resources/Images.xcassets/login/cell_separatory_line.imageset/cell_separatory_line@2x.png -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/login/login_close.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x", 10 | "filename" : "login_close@2x.png" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x", 15 | "filename" : "login_close@3x.png" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/login/login_close.imageset/login_close@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Resources/Images.xcassets/login/login_close.imageset/login_close@2x.png -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/login/login_close.imageset/login_close@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Resources/Images.xcassets/login/login_close.imageset/login_close@3x.png -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/login/login_logo.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "login_logo@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "login_logo@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/login/login_logo.imageset/login_logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Resources/Images.xcassets/login/login_logo.imageset/login_logo@2x.png -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/login/login_logo.imageset/login_logo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Resources/Images.xcassets/login/login_logo.imageset/login_logo@3x.png -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/login/login_qq.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x", 10 | "filename" : "login_qq@2x.png" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x", 15 | "filename" : "login_qq@3x.png" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/login/login_qq.imageset/login_qq@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Resources/Images.xcassets/login/login_qq.imageset/login_qq@2x.png -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/login/login_qq.imageset/login_qq@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Resources/Images.xcassets/login/login_qq.imageset/login_qq@3x.png -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/login/login_weibo.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x", 10 | "filename" : "login_weibo@2x.png" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x", 15 | "filename" : "login_weibo@3x.png" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/login/login_weibo.imageset/login_weibo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Resources/Images.xcassets/login/login_weibo.imageset/login_weibo@2x.png -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/login/login_weibo.imageset/login_weibo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Resources/Images.xcassets/login/login_weibo.imageset/login_weibo@3x.png -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/login/login_weixin.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x", 10 | "filename" : "login_weixin@2x.png" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x", 15 | "filename" : "login_weixin@3x.png" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/login/login_weixin.imageset/login_weixin@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Resources/Images.xcassets/login/login_weixin.imageset/login_weixin@2x.png -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/login/login_weixin.imageset/login_weixin@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Resources/Images.xcassets/login/login_weixin.imageset/login_weixin@3x.png -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/login/separatory_line.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x", 10 | "filename" : "separatory_line@2x.png" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/login/separatory_line.imageset/separatory_line@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Resources/Images.xcassets/login/separatory_line.imageset/separatory_line@2x.png -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/nav_back.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x", 10 | "filename" : "nav_back@2x.png" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/nav_back.imageset/nav_back@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Resources/Images.xcassets/nav_back.imageset/nav_back@2x.png -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/nav_tal.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x", 10 | "filename" : "nav_tal@2x.png" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/nav_tal.imageset/nav_tal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Resources/Images.xcassets/nav_tal.imageset/nav_tal@2x.png -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/nav_tal_new.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x", 10 | "filename" : "nav_tal_new@2x.png" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x", 15 | "filename" : "nav_tal_new@3x.png" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/nav_tal_new.imageset/nav_tal_new@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Resources/Images.xcassets/nav_tal_new.imageset/nav_tal_new@2x.png -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/nav_tal_new.imageset/nav_tal_new@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Resources/Images.xcassets/nav_tal_new.imageset/nav_tal_new@3x.png -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/search/home_search_icon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x", 10 | "filename" : "home_search_icon@2x.png" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x", 15 | "filename" : "home_search_icon@3x.png" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/search/home_search_icon.imageset/home_search_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Resources/Images.xcassets/search/home_search_icon.imageset/home_search_icon@2x.png -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/search/home_search_icon.imageset/home_search_icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Resources/Images.xcassets/search/home_search_icon.imageset/home_search_icon@3x.png -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/search/search_history.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x", 10 | "filename" : "search_history@2x.png" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x", 15 | "filename" : "search_history@3x.png" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/search/search_history.imageset/search_history@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Resources/Images.xcassets/search/search_history.imageset/search_history@2x.png -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/search/search_history.imageset/search_history@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Resources/Images.xcassets/search/search_history.imageset/search_history@3x.png -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/search/search_history_arrow.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x", 10 | "filename" : "search_history_arrow@2x.png" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x", 15 | "filename" : "search_history_arrow@3x.png" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/search/search_history_arrow.imageset/search_history_arrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Resources/Images.xcassets/search/search_history_arrow.imageset/search_history_arrow@2x.png -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/search/search_history_arrow.imageset/search_history_arrow@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Resources/Images.xcassets/search/search_history_arrow.imageset/search_history_arrow@3x.png -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/search/search_icon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x", 10 | "filename" : "search_icon@2x.png" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x", 15 | "filename" : "search_icon@3x.png" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/search/search_icon.imageset/search_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Resources/Images.xcassets/search/search_icon.imageset/search_icon@2x.png -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/search/search_icon.imageset/search_icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Resources/Images.xcassets/search/search_icon.imageset/search_icon@3x.png -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/shareIcon/share_QQ.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x", 10 | "filename" : "share_QQ@2x.png" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x", 15 | "filename" : "share_QQ@3x.png" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/shareIcon/share_QQ.imageset/share_QQ@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Resources/Images.xcassets/shareIcon/share_QQ.imageset/share_QQ@2x.png -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/shareIcon/share_QQ.imageset/share_QQ@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Resources/Images.xcassets/shareIcon/share_QQ.imageset/share_QQ@3x.png -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/shareIcon/share_copy_link.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x", 10 | "filename" : "share_copy_link@2x.png" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x", 15 | "filename" : "share_copy_link@3x.png" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/shareIcon/share_copy_link.imageset/share_copy_link@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Resources/Images.xcassets/shareIcon/share_copy_link.imageset/share_copy_link@2x.png -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/shareIcon/share_copy_link.imageset/share_copy_link@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Resources/Images.xcassets/shareIcon/share_copy_link.imageset/share_copy_link@3x.png -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/shareIcon/share_qzone.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x", 10 | "filename" : "share_qzone@2x.png" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x", 15 | "filename" : "share_qzone@3x.png" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/shareIcon/share_qzone.imageset/share_qzone@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Resources/Images.xcassets/shareIcon/share_qzone.imageset/share_qzone@2x.png -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/shareIcon/share_qzone.imageset/share_qzone@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Resources/Images.xcassets/shareIcon/share_qzone.imageset/share_qzone@3x.png -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/shareIcon/share_webo.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x", 10 | "filename" : "share_webo@2x.png" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x", 15 | "filename" : "share_webo@3x.png" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/shareIcon/share_webo.imageset/share_webo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Resources/Images.xcassets/shareIcon/share_webo.imageset/share_webo@2x.png -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/shareIcon/share_webo.imageset/share_webo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Resources/Images.xcassets/shareIcon/share_webo.imageset/share_webo@3x.png -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/shareIcon/share_wechat.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x", 10 | "filename" : "share_wechat@2x.png" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x", 15 | "filename" : "share_wechat@3x.png" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/shareIcon/share_wechat.imageset/share_wechat@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Resources/Images.xcassets/shareIcon/share_wechat.imageset/share_wechat@2x.png -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/shareIcon/share_wechat.imageset/share_wechat@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Resources/Images.xcassets/shareIcon/share_wechat.imageset/share_wechat@3x.png -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/shareIcon/share_wechat_friend.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x", 10 | "filename" : "share_wechat_friend@2x.png" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x", 15 | "filename" : "share_wechat_friend@3x.png" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/shareIcon/share_wechat_friend.imageset/share_wechat_friend@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Resources/Images.xcassets/shareIcon/share_wechat_friend.imageset/share_wechat_friend@2x.png -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/shareIcon/share_wechat_friend.imageset/share_wechat_friend@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Resources/Images.xcassets/shareIcon/share_wechat_friend.imageset/share_wechat_friend@3x.png -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/white_image.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "white_image.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /YZWpClient/Resources/Images.xcassets/white_image.imageset/white_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Resources/Images.xcassets/white_image.imageset/white_image.png -------------------------------------------------------------------------------- /YZWpClient/Resources/Text/defaultImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Resources/Text/defaultImage.png -------------------------------------------------------------------------------- /YZWpClient/Resources/Text/detail_click_show_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Resources/Text/detail_click_show_img.png -------------------------------------------------------------------------------- /YZWpClient/Resources/Text/detail_default_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Resources/Text/detail_default_img.png -------------------------------------------------------------------------------- /YZWpClient/Resources/Text/detail_loading_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Resources/Text/detail_loading_img.png -------------------------------------------------------------------------------- /YZWpClient/Src/Application/VersionConfig/Model/YZServerConfig.h: -------------------------------------------------------------------------------- 1 | // 2 | // YZServerConfig.h 3 | // YZWpClient 4 | // 5 | // Created by chaoliangmei on 15/9/22. 6 | // Copyright © 2015年 com.youzu. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "MJExtension.h" 11 | @interface YZServerConfig : NSObject 12 | 13 | @property (strong,nonatomic)NSString *users_can_register; 14 | @property (nonatomic)NSInteger thread_comments; 15 | @property (strong,nonatomic)NSString *version_api_url; 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /YZWpClient/Src/Application/VersionConfig/Model/YZServerConfig.m: -------------------------------------------------------------------------------- 1 | // 2 | // YZServerConfig.m 3 | // YZWpClient 4 | // 5 | // Created by chaoliangmei on 15/9/22. 6 | // Copyright © 2015年 com.youzu. All rights reserved. 7 | // 8 | 9 | #import "YZServerConfig.h" 10 | 11 | @implementation YZServerConfig 12 | 13 | @synthesize users_can_register,thread_comments,version_api_url; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /YZWpClient/Src/Application/YZLauchViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // YZLauchViewController.h 3 | // YZWpClient 4 | // 5 | // Created by zhoutl on 15/8/3. 6 | // Copyright (c) 2015年 com.youzu. All rights reserved. 7 | // 启动页 8 | 9 | #import 10 | 11 | @interface YZLauchViewController : UIViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /YZWpClient/Src/Application/YZLeftViewCell.h: -------------------------------------------------------------------------------- 1 | // 2 | // YZLeftViewCell.h 3 | // YZWpClient 4 | // 5 | // Created by zhoutl on 15/7/27. 6 | // Copyright (c) 2015年 com.youzu. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface YZLeftViewCell : UITableViewCell 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /YZWpClient/Src/Application/YZLeftViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // YZLeftViewController.h 3 | // YZWpClient 4 | // 5 | // Created by zhoutl on 15/7/27. 6 | // Copyright (c) 2015年 com.youzu. All rights reserved. 7 | // 8 | 9 | 10 | #import "ICSDrawerController.h" 11 | 12 | @interface YZLeftViewController : UIViewController 13 | 14 | @property(nonatomic, weak) ICSDrawerController *drawer; 15 | 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /YZWpClient/Src/Application/YZMainController.h: -------------------------------------------------------------------------------- 1 | // 2 | // YZMainController.h 3 | // YZWpClient 4 | // 5 | // Created by zhoutl on 15/7/19. 6 | // Copyright (c) 2015年 com.youzu. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "ICSDrawerController.h" 11 | #import "XLButtonBarPagerTabStripViewController.h" 12 | 13 | @interface YZMainController : XLButtonBarPagerTabStripViewController 14 | 15 | @property(nonatomic, weak) ICSDrawerController *drawer; 16 | @end 17 | -------------------------------------------------------------------------------- /YZWpClient/Src/Category/CatoryModel.h: -------------------------------------------------------------------------------- 1 | // 2 | // CatoryModel.h 3 | // YZWpClient 4 | // 5 | // Created by chaoliangmei on 15/8/27. 6 | // Copyright (c) 2015年 com.youzu. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "MJExtension.h" 11 | #import "PlistFileOperation.h" 12 | 13 | @interface CatoryModel : NSObject 14 | 15 | @property(strong,nonatomic)NSString *categoryName; 16 | @property(assign,nonatomic)NSInteger categoryId; 17 | 18 | @end 19 | -------------------------------------------------------------------------------- /YZWpClient/Src/Category/CatoryModel.m: -------------------------------------------------------------------------------- 1 | // 2 | // CatoryModel.m 3 | // YZWpClient 4 | // 5 | // Created by chaoliangmei on 15/8/27. 6 | // Copyright (c) 2015年 com.youzu. All rights reserved. 7 | // 8 | 9 | #import "CatoryModel.h" 10 | 11 | @implementation CatoryModel 12 | 13 | @synthesize categoryId,categoryName; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /YZWpClient/Src/Category/YZCategoryViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // YZCategoryViewController.h 3 | // YZWpClient 4 | // 5 | // Created by chaoliangmei on 15/8/26. 6 | // Copyright (c) 2015年 com.youzu. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | #define DefaultCategoryNum 6 12 | 13 | 14 | @protocol CategoryBackDelegate 15 | 16 | - (void)categoryBackArray:(NSMutableArray *)myCategoryArray; 17 | 18 | @end 19 | 20 | 21 | @interface YZCategoryViewController : UIViewController 22 | 23 | @property(strong,nonatomic)iddelegate; 24 | 25 | @end 26 | -------------------------------------------------------------------------------- /YZWpClient/Src/Comments/YZCommentController.h: -------------------------------------------------------------------------------- 1 | // 2 | // YZCommentController.h 3 | // YZWpClient 4 | // 5 | // Created by zhoutl on 15/8/12. 6 | // Copyright (c) 2015年 com.youzu. All rights reserved. 7 | // 匿名用户评论 8 | 9 | #import "YZBaseViewController.h" 10 | #import "YZArticleDetailController.h" 11 | @interface YZCommentController : YZBaseViewController 12 | @property (nonatomic, weak)YZArticleDetailController *delegate; 13 | 14 | @end 15 | -------------------------------------------------------------------------------- /YZWpClient/Src/Comments/YZCommentRecordsController.h: -------------------------------------------------------------------------------- 1 | // 2 | // YZCommentRecordsController.h 3 | // YZWpClient 4 | // 5 | // Created by zhoutl on 15/8/17. 6 | // Copyright (c) 2015年 com.youzu. All rights reserved. 7 | // 8 | 9 | #import "YZBaseViewController.h" 10 | 11 | @interface YZCommentRecordsController : YZBaseViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /YZWpClient/Src/Constants/HttpURLConstant.h: -------------------------------------------------------------------------------- 1 | // 2 | // HttpURLConstant.h 3 | // YZWpClient 4 | // 5 | // Created by zhoutl on 15/7/9. 6 | // Copyright (c) 2015年 com.youzu. All rights reserved. 7 | // 8 | 9 | #ifndef YZWpClient_HttpURLConstant_h 10 | #define YZWpClient_HttpURLConstant_h 11 | 12 | //导航分类 url 13 | #define kGetNavListUrl @"/?yz_app=1&api_route=taxonomies&action=get_nav_list" 14 | 15 | 16 | #endif 17 | -------------------------------------------------------------------------------- /YZWpClient/Src/History/SDBManager.h: -------------------------------------------------------------------------------- 1 | // 2 | // SDBManager.h 3 | // SDatabase 4 | // 5 | // Created by SunJiangting on 12-10-20. 6 | // Copyright (c) 2012年 sun. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "FMDatabaseAdditions.h" 11 | 12 | @class FMDatabase; 13 | 14 | /** 15 | * @brief 对数据链接进行管理,包括链接,关闭连接 16 | * 可以建立长连接 长连接 17 | */ 18 | @interface SDBManager : NSObject { 19 | NSString * _name; 20 | } 21 | /// 数据库操作对象,当数据库被建立时,会存在次至 22 | @property (nonatomic, readonly) FMDatabase * dataBase; // 数据库操作对象 23 | /// 单例模式 24 | +(SDBManager *) defaultDBManager; 25 | 26 | // 关闭数据库 27 | - (void) close; 28 | 29 | @end 30 | -------------------------------------------------------------------------------- /YZWpClient/Src/History/YZHistory.h: -------------------------------------------------------------------------------- 1 | // 2 | // YZHistory.h 3 | // YZWpClient 4 | // 5 | // Created by chaoliangmei on 15/9/30. 6 | // Copyright © 2015年 com.youzu. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface YZHistory : NSObject 12 | 13 | @property (strong,nonatomic)NSString *ID; 14 | @property (nonatomic,strong)NSString *historyTitle; 15 | @property (nonatomic,strong)NSString *historyDate; 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /YZWpClient/Src/History/YZHistory.m: -------------------------------------------------------------------------------- 1 | // 2 | // YZHistory.m 3 | // YZWpClient 4 | // 5 | // Created by chaoliangmei on 15/9/30. 6 | // Copyright © 2015年 com.youzu. All rights reserved. 7 | // 8 | 9 | #import "YZHistory.h" 10 | 11 | @implementation YZHistory 12 | 13 | @synthesize ID,historyTitle,historyDate; 14 | 15 | - (id)init 16 | { 17 | self = [super init]; 18 | if (self) { 19 | NSDateFormatter *sdf = [[NSDateFormatter alloc]init]; 20 | [sdf setDateFormat:@"yyyy年MM月dd日"]; 21 | self.historyDate = [sdf stringFromDate:[NSDate date]]; 22 | } 23 | return self; 24 | } 25 | 26 | @end 27 | -------------------------------------------------------------------------------- /YZWpClient/Src/History/YZHistoryCell.h: -------------------------------------------------------------------------------- 1 | // 2 | // YZHistoryCell.h 3 | // YZWpClient 4 | // 5 | // Created by chaoliangmei on 15/10/12. 6 | // Copyright © 2015年 com.youzu. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "YZTableViewCell.h" 11 | 12 | #define kSearchHistoryCellRow 44 13 | 14 | @interface YZHistoryCell : YZTableViewCell 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /YZWpClient/Src/History/YZHistoryController.h: -------------------------------------------------------------------------------- 1 | // 2 | // YZHistoryController.h 3 | // YZWpClient 4 | // 5 | // Created by chaoliangmei on 15/9/25. 6 | // Copyright © 2015年 com.youzu. All rights reserved. 7 | // 8 | 9 | #import "YZBaseViewController.h" 10 | 11 | @interface YZHistoryController : YZBaseViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /YZWpClient/Src/Home/Category/BYConditionBar.h: -------------------------------------------------------------------------------- 1 | // 2 | // BYConditionBar.h 3 | // BYDailyNews 4 | // 5 | // Created by bassamyan on 15/1/17. 6 | // Copyright (c) 2015年 apple. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface BYConditionBar : UIScrollView 12 | @end 13 | 14 | // 版权属于原作者 15 | // http://code4app.com (cn) http://code4app.net (en) 16 | // 发布代码于最专业的源码分享网站: Code4App.com 17 | -------------------------------------------------------------------------------- /YZWpClient/Src/Home/Category/BYSelectNewBar.h: -------------------------------------------------------------------------------- 1 | // 2 | // BYSelectNewBar.h 3 | // BYDailyNews 4 | // 5 | // Created by bassamyan on 15/1/18. 6 | // Copyright (c) 2015年 apple. All rights reserved. 7 | // 8 | 9 | #import 10 | @interface BYSelectNewBar : UIView 11 | @end 12 | 13 | // 版权属于原作者 14 | // http://code4app.com (cn) http://code4app.net (en) 15 | // 发布代码于最专业的源码分享网站: Code4App.com 16 | -------------------------------------------------------------------------------- /YZWpClient/Src/Home/Category/SelectionButton.h: -------------------------------------------------------------------------------- 1 | // 2 | // SelectionButton.h 3 | // BYDailyNews 4 | // 5 | // Created by bassamyan on 15/1/18. 6 | // Copyright (c) 2015年 apple. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @class BYSelectionDetails; 12 | @class BYSelectNewBar; 13 | 14 | @interface SelectionButton : UIButton 15 | @property (nonatomic,strong) BYSelectionDetails *Detail; 16 | @property (nonatomic,strong) BYSelectNewBar *Newbar; 17 | @end 18 | // 版权属于原作者 19 | // http://code4app.com (cn) http://code4app.net (en) 20 | // 发布代码于最专业的源码分享网站: Code4App.com 21 | -------------------------------------------------------------------------------- /YZWpClient/Src/Home/YZADetailAuthor.m: -------------------------------------------------------------------------------- 1 | // 2 | // YZADetailAuthor.m 3 | // 4 | // Create by 桃林 周 on 29/7/2015 5 | // Copyright © 2015. All rights reserved. 6 | // Model file Generated using JSONExport: https://github.com/Ahmed-Ali/JSONExport 7 | 8 | 9 | 10 | #import "YZADetailAuthor.h" 11 | 12 | @interface YZADetailAuthor () 13 | @end 14 | @implementation YZADetailAuthor 15 | 16 | 17 | 18 | @end -------------------------------------------------------------------------------- /YZWpClient/Src/Home/YZADetailCommentModel.m: -------------------------------------------------------------------------------- 1 | // 2 | // YZADetailData.m 3 | // 4 | // Create by 桃林 周 on 29/7/2015 5 | // Copyright © 2015. All rights reserved. 6 | // Model file Generated using JSONExport: https://github.com/Ahmed-Ali/JSONExport 7 | 8 | 9 | 10 | #import "YZADetailCommentModel.h" 11 | 12 | @interface YZADetailCommentModel () 13 | @end 14 | @implementation YZADetailCommentModel 15 | 16 | 17 | @end -------------------------------------------------------------------------------- /YZWpClient/Src/Home/YZADetailLink.h: -------------------------------------------------------------------------------- 1 | // 2 | // YZADetailLink.h 3 | // 4 | // Create by 桃林 周 on 29/7/2015 5 | // Copyright © 2015. All rights reserved. 6 | // 7 | 8 | // Model file Generated using JSONExport: https://github.com/Ahmed-Ali/JSONExport 9 | 10 | #import 11 | 12 | @interface YZADetailLink : NSObject 13 | 14 | @property (nonatomic, strong) NSString * archives; 15 | @property (nonatomic, strong) NSString * self; 16 | 17 | 18 | @end -------------------------------------------------------------------------------- /YZWpClient/Src/Home/YZADetailLink.m: -------------------------------------------------------------------------------- 1 | // 2 | // YZADetailLink.m 3 | // 4 | // Create by 桃林 周 on 29/7/2015 5 | // Copyright © 2015. All rights reserved. 6 | // Model file Generated using JSONExport: https://github.com/Ahmed-Ali/JSONExport 7 | 8 | 9 | 10 | #import "YZADetailLink.h" 11 | 12 | @interface YZADetailLink () 13 | @end 14 | @implementation YZADetailLink 15 | 16 | 17 | 18 | @end -------------------------------------------------------------------------------- /YZWpClient/Src/Home/YZADetailMeta.h: -------------------------------------------------------------------------------- 1 | // 2 | // YZADetailMeta.h 3 | // 4 | // Create by 桃林 周 on 29/7/2015 5 | // Copyright © 2015. All rights reserved. 6 | // 7 | 8 | // Model file Generated using JSONExport: https://github.com/Ahmed-Ali/JSONExport 9 | 10 | #import 11 | #import "YZADetailLink.h" 12 | 13 | @interface YZADetailMeta : NSObject 14 | 15 | @property (nonatomic, strong) YZADetailLink * links; 16 | 17 | 18 | @end -------------------------------------------------------------------------------- /YZWpClient/Src/Home/YZADetailMeta.m: -------------------------------------------------------------------------------- 1 | // 2 | // YZADetailMeta.m 3 | // 4 | // Create by 桃林 周 on 29/7/2015 5 | // Copyright © 2015. All rights reserved. 6 | // Model file Generated using JSONExport: https://github.com/Ahmed-Ali/JSONExport 7 | 8 | 9 | 10 | #import "YZADetailMeta.h" 11 | 12 | @interface YZADetailMeta () 13 | @end 14 | @implementation YZADetailMeta 15 | 16 | 17 | @end -------------------------------------------------------------------------------- /YZWpClient/Src/Home/YZArticelAuthorModel.m: -------------------------------------------------------------------------------- 1 | // 2 | // YZArticelAuthor.m 3 | // 4 | // Create by 桃林 周 on 20/7/2015 5 | // Copyright © 2015. All rights reserved. 6 | 7 | 8 | 9 | #import "YZArticelAuthorModel.h" 10 | 11 | @interface YZArticelAuthorModel () 12 | @end 13 | @implementation YZArticelAuthorModel 14 | 15 | 16 | @end -------------------------------------------------------------------------------- /YZWpClient/Src/Home/YZArticelCategory.m: -------------------------------------------------------------------------------- 1 | // 2 | // YZArticelCategory.m 3 | // 4 | // Create by 桃林 周 on 20/7/2015 5 | // Copyright © 2015. All rights reserved. 6 | 7 | 8 | 9 | #import "YZArticelCategory.h" 10 | 11 | @interface YZArticelCategory () 12 | @end 13 | @implementation YZArticelCategory 14 | 15 | @end -------------------------------------------------------------------------------- /YZWpClient/Src/Home/YZArticelDetailModel.m: -------------------------------------------------------------------------------- 1 | // 2 | // YZArticelDetail.m 3 | // 4 | // Create by 桃林 周 on 20/7/2015 5 | // Copyright © 2015. All rights reserved. 6 | 7 | 8 | 9 | #import "YZArticelDetailModel.h" 10 | 11 | @interface YZArticelDetailModel () 12 | @end 13 | @implementation YZArticelDetailModel 14 | 15 | 16 | @end -------------------------------------------------------------------------------- /YZWpClient/Src/Home/YZArticelLink.h: -------------------------------------------------------------------------------- 1 | // 2 | // YZArticelLink.h 3 | // 4 | // Create by 桃林 周 on 20/7/2015 5 | // Copyright © 2015. All rights reserved. 6 | // 7 | 8 | 9 | #import 10 | 11 | @interface YZArticelLink : NSObject 12 | 13 | @property (nonatomic, strong) NSString * archives; 14 | @property (nonatomic, strong) NSString * self; 15 | 16 | 17 | @end -------------------------------------------------------------------------------- /YZWpClient/Src/Home/YZArticelLink.m: -------------------------------------------------------------------------------- 1 | // 2 | // YZArticelLink.m 3 | // 4 | // Create by 桃林 周 on 20/7/2015 5 | // Copyright © 2015. All rights reserved. 6 | 7 | 8 | 9 | #import "YZArticelLink.h" 10 | 11 | @interface YZArticelLink () 12 | @end 13 | @implementation YZArticelLink 14 | 15 | @end -------------------------------------------------------------------------------- /YZWpClient/Src/Home/YZArticelMeta.h: -------------------------------------------------------------------------------- 1 | // 2 | // YZArticelMeta.h 3 | // 4 | // Create by 桃林 周 on 20/7/2015 5 | // Copyright © 2015. All rights reserved. 6 | // 7 | 8 | 9 | #import 10 | #import "YZArticelLink.h" 11 | 12 | @interface YZArticelMeta : NSObject 13 | 14 | @property (nonatomic, strong) YZArticelLink * links; 15 | 16 | 17 | @end -------------------------------------------------------------------------------- /YZWpClient/Src/Home/YZArticelMeta.m: -------------------------------------------------------------------------------- 1 | // 2 | // YZArticelMeta.m 3 | // 4 | // Create by 桃林 周 on 20/7/2015 5 | // Copyright © 2015. All rights reserved. 6 | 7 | 8 | 9 | #import "YZArticelMeta.h" 10 | 11 | @interface YZArticelMeta () 12 | @end 13 | @implementation YZArticelMeta 14 | 15 | @end -------------------------------------------------------------------------------- /YZWpClient/Src/Home/YZArticelTerm.h: -------------------------------------------------------------------------------- 1 | // 2 | // YZArticelTerm.h 3 | // 4 | // Create by 桃林 周 on 20/7/2015 5 | // Copyright © 2015. All rights reserved. 6 | // 7 | 8 | 9 | #import 10 | #import "YZArticelCategory.h" 11 | 12 | @interface YZArticelTerm : NSObject 13 | 14 | @property (nonatomic, strong) NSArray * category; 15 | 16 | 17 | @end -------------------------------------------------------------------------------- /YZWpClient/Src/Home/YZArticelTerm.m: -------------------------------------------------------------------------------- 1 | // 2 | // YZArticelTerm.m 3 | // 4 | // Create by 桃林 周 on 20/7/2015 5 | // Copyright © 2015. All rights reserved. 6 | 7 | 8 | 9 | #import "YZArticelTerm.h" 10 | 11 | @interface YZArticelTerm () 12 | @end 13 | @implementation YZArticelTerm 14 | 15 | @end -------------------------------------------------------------------------------- /YZWpClient/Src/Home/YZArticleDetailBottomBar.h: -------------------------------------------------------------------------------- 1 | // 2 | // YZArticleDetailBottomBar.h 3 | // YZWpClient 4 | // 5 | // Created by zhoutl on 15/7/28. 6 | // Copyright (c) 2015年 com.youzu. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface YZArticleDetailBottomBar : UIToolbar 12 | 13 | 14 | @property (nonatomic, strong)UIImageView *iconView; 15 | 16 | @property (nonatomic, strong)UIButton *sendCommentBtn; 17 | 18 | @property (nonatomic, strong)UIButton *commentLocateBtn;//定位到评论列表位置 19 | 20 | @property (nonatomic, strong)UIButton *favBtn;//收藏 21 | 22 | @property (nonatomic, strong)UIButton *shareBtn;//分享 23 | 24 | 25 | 26 | @end 27 | -------------------------------------------------------------------------------- /YZWpClient/Src/Home/YZCategoryViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // YZCategoryViewController.h 3 | // YZWpClient 4 | // 5 | // Created by chaoliangmei on 15/8/26. 6 | // Copyright (c) 2015年 com.youzu. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface YZCategoryViewController : UIViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /YZWpClient/Src/Home/YZDetailCommentCell.h: -------------------------------------------------------------------------------- 1 | // 2 | // YZDetailCommentCell.h 3 | // YZWpClient 4 | // 5 | // Created by zhoutl on 15/7/28. 6 | // Copyright (c) 2015年 com.youzu. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @class YZDetailCommentViewModel; 12 | 13 | @interface YZDetailCommentCell : YZTableViewCell 14 | 15 | @property (nonatomic, strong)YZDetailCommentViewModel *viewModel; 16 | 17 | @property (nonatomic, assign)BOOL lineHidden; 18 | 19 | @property (nonatomic, strong)UILabel *dataLabel; 20 | 21 | @property (nonatomic, strong)UIButton *openMoreBtn; 22 | 23 | @end 24 | -------------------------------------------------------------------------------- /YZWpClient/Src/Home/YZHomeCell.h: -------------------------------------------------------------------------------- 1 | // 2 | // YZHomeCell.h 3 | // YZWpClient 4 | // 5 | // Created by zhoutl on 15/7/17. 6 | // Copyright (c) 2015年 com.youzu. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "YZHomeViewModel.h" 11 | 12 | @interface YZHomeCell : YZTableViewCell 13 | 14 | @property (nonatomic, strong) YZHomeViewModel *viewModel; 15 | 16 | @property (nonatomic, strong) UIView *imageListView; 17 | @property (nonatomic, strong) UILabel *articleDataLabel; 18 | @property (nonatomic, strong) UILabel *titleTextLabel; 19 | @property (nonatomic, strong) UILabel *commentsTextLabel; 20 | 21 | 22 | @end 23 | -------------------------------------------------------------------------------- /YZWpClient/Src/Home/YZHomeController.h: -------------------------------------------------------------------------------- 1 | // 2 | // YZHomeController.h 3 | // YZWpClient 4 | // 5 | // Created by zhoutl on 15/7/17. 6 | // Copyright (c) 2015年 com.youzu. All rights reserved. 7 | // 8 | //首页 9 | 10 | #import 11 | #import "YZBaseViewController.h" 12 | 13 | 14 | @class YZNavListModel; 15 | @interface YZHomeController : YZBaseViewController 16 | 17 | @property(nonatomic, assign)BOOL isBannerShow; 18 | 19 | @property(nonatomic, weak)UIViewController *pagasContainer; 20 | 21 | @property(nonatomic, strong)YZNavListModel *categoryModel;//当前分类 22 | 23 | - (void)loadRereshing; 24 | 25 | - (void)releseViewAndData; 26 | 27 | @end 28 | -------------------------------------------------------------------------------- /YZWpClient/Src/Home/YZLinkViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // YZLinkViewController.h 3 | // YZWpClient 4 | // 5 | // Created by zhoutl on 15/7/31. 6 | // Copyright (c) 2015年 com.youzu. All rights reserved. 7 | // 8 | 9 | #import "YZBaseViewController.h" 10 | 11 | @interface YZLinkViewController : YZBaseViewController 12 | @property (nonatomic, strong)NSString *urlString; 13 | 14 | @end 15 | -------------------------------------------------------------------------------- /YZWpClient/Src/Home/YZNavLink.h: -------------------------------------------------------------------------------- 1 | // 2 | // YZNavLink.h 3 | // 4 | // Create by 桃林 周 on 22/7/2015 5 | // Copyright © 2015. All rights reserved. 6 | // 7 | 8 | 9 | #import 10 | 11 | @interface YZNavLink : NSObject 12 | 13 | @property (nonatomic, strong) NSString * collection; 14 | @property (nonatomic, strong) NSString * self; 15 | 16 | 17 | @end -------------------------------------------------------------------------------- /YZWpClient/Src/Home/YZNavLink.m: -------------------------------------------------------------------------------- 1 | // 2 | // YZNavLink.m 3 | // 4 | // Create by 桃林 周 on 22/7/2015 5 | // Copyright © 2015. All rights reserved. 6 | 7 | 8 | 9 | #import "YZNavLink.h" 10 | 11 | @interface YZNavLink () 12 | @end 13 | @implementation YZNavLink 14 | 15 | @end -------------------------------------------------------------------------------- /YZWpClient/Src/Home/YZNavListModel.m: -------------------------------------------------------------------------------- 1 | // 2 | // YZNavListModel.m 3 | // 4 | // Create by 桃林 周 on 22/7/2015 5 | // Copyright © 2015. All rights reserved. 6 | 7 | 8 | 9 | #import "YZNavListModel.h" 10 | #import "MJExtension.h" 11 | @interface YZNavListModel () 12 | @end 13 | @implementation YZNavListModel 14 | 15 | - (void)setBanner_list:(NSArray *)bannerList{ 16 | _banner_list = [YZBannerList objectArrayWithKeyValuesArray:bannerList]; 17 | } 18 | 19 | @end 20 | 21 | 22 | 23 | @interface YZBannerList () 24 | @end 25 | @implementation YZBannerList 26 | 27 | @end -------------------------------------------------------------------------------- /YZWpClient/Src/Home/YZNavMeta.h: -------------------------------------------------------------------------------- 1 | // 2 | // YZNavMeta.h 3 | // 4 | // Create by 桃林 周 on 22/7/2015 5 | // Copyright © 2015. All rights reserved. 6 | // 7 | 8 | 9 | #import 10 | #import "YZNavLink.h" 11 | 12 | @interface YZNavMeta : NSObject 13 | 14 | @property (nonatomic, strong) YZNavLink * links; 15 | 16 | @end -------------------------------------------------------------------------------- /YZWpClient/Src/Home/YZNavMeta.m: -------------------------------------------------------------------------------- 1 | // 2 | // YZNavMeta.m 3 | // 4 | // Create by 桃林 周 on 22/7/2015 5 | // Copyright © 2015. All rights reserved. 6 | 7 | 8 | 9 | #import "YZNavMeta.h" 10 | 11 | @interface YZNavMeta () 12 | @end 13 | @implementation YZNavMeta 14 | 15 | 16 | @end -------------------------------------------------------------------------------- /YZWpClient/Src/Home/YZNavParent.m: -------------------------------------------------------------------------------- 1 | // 2 | // YZNavParent.m 3 | // 4 | // Create by 桃林 周 on 22/7/2015 5 | // Copyright © 2015. All rights reserved. 6 | 7 | 8 | 9 | #import "YZNavParent.h" 10 | 11 | @interface YZNavParent () 12 | @end 13 | @implementation YZNavParent 14 | 15 | @end -------------------------------------------------------------------------------- /YZWpClient/Src/Home/YZPostInfoModel.h: -------------------------------------------------------------------------------- 1 | // 2 | // YZPostInfoModel.h 3 | // YZWpClient 4 | // 5 | // Created by zhoutl on 15/8/18. 6 | // Copyright (c) 2015年 com.youzu. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface YZPostInfoModel : NSObject 12 | @property (nonatomic, strong) NSString * title; 13 | @property (nonatomic, strong) NSString * link; 14 | @end 15 | -------------------------------------------------------------------------------- /YZWpClient/Src/Home/YZPostInfoModel.m: -------------------------------------------------------------------------------- 1 | // 2 | // YZPostInfoModel.m 3 | // YZWpClient 4 | // 5 | // Created by zhoutl on 15/8/18. 6 | // Copyright (c) 2015年 com.youzu. All rights reserved. 7 | // 8 | 9 | #import "YZPostInfoModel.h" 10 | 11 | @implementation YZPostInfoModel 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /YZWpClient/Src/Home/YZWriteCommentView.h: -------------------------------------------------------------------------------- 1 | // 2 | // YZWriteCommentView.h 3 | // YZWpClient 4 | // 5 | // Created by zhoutl on 15/7/30. 6 | // Copyright (c) 2015年 com.youzu. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface YZWriteCommentView : UIView 12 | 13 | @property (nonatomic, strong)UITextView *contentText; 14 | @property (nonatomic, strong)UIButton *closeBtn; 15 | @property (nonatomic, strong)UIButton *sendCommentBtn; 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /YZWpClient/Src/Login&Register/YZLoginController.h: -------------------------------------------------------------------------------- 1 | // 2 | // YZLoginController.h 3 | // YZWpClient 4 | // 5 | // Created by zhoutl on 15/7/16. 6 | // Copyright (c) 2015年 com.youzu. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface YZLoginController : UITableViewController 12 | 13 | 14 | @end 15 | -------------------------------------------------------------------------------- /YZWpClient/Src/Login&Register/YZLoginModel.m: -------------------------------------------------------------------------------- 1 | // 2 | // YZLoginModel.m 3 | // YZWpClient 4 | // 5 | // Created by zhoutl on 15/7/2015 6 | // Copyright © 2015. All rights reserved. 7 | 8 | 9 | 10 | 11 | #import "YZLoginModel.h" 12 | 13 | @interface YZLoginModel () 14 | @end 15 | @implementation YZLoginModel 16 | 17 | + (NSString *)replacedKeyFromPropertyName121:(NSString *)propertyName 18 | { 19 | // nickName -> nick_name 20 | return [propertyName underlineFromCamel]; 21 | } 22 | @end 23 | 24 | @implementation YZMobLoginModel 25 | 26 | @end -------------------------------------------------------------------------------- /YZWpClient/Src/PersonInformation/View/YZPersonInfoCell.h: -------------------------------------------------------------------------------- 1 | // 2 | // YZPersonInfoCell.h 3 | // YZWpClient 4 | // 5 | // Created by chaoliangmei on 15/10/15. 6 | // Copyright © 2015年 com.youzu. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface YZPersonInfoCell : UITableViewCell 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /YZWpClient/Src/PersonInformation/YZModifyInfoController.h: -------------------------------------------------------------------------------- 1 | // 2 | // YZModifyInfoController.h 3 | // YZWpClient 4 | // 5 | // Created by chaoliangmei on 15/10/15. 6 | // Copyright © 2015年 com.youzu. All rights reserved. 7 | // 8 | 9 | #import "YZBaseViewController.h" 10 | 11 | @interface YZModifyInfoController : YZBaseViewController 12 | 13 | @property (strong,nonatomic)NSString *infoStr; 14 | 15 | @property (strong,nonatomic)void(^drawBackPersonInfo)(NSString *personInfo); 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /YZWpClient/Src/PersonInformation/YZModifyNicknameController.h: -------------------------------------------------------------------------------- 1 | // 2 | // YZModifyNicknameController.h 3 | // YZWpClient 4 | // 5 | // Created by chaoliangmei on 15/10/15. 6 | // Copyright © 2015年 com.youzu. All rights reserved. 7 | // 8 | 9 | #import "YZBaseViewController.h" 10 | 11 | @interface YZModifyNicknameController : YZBaseViewController 12 | 13 | @property (strong,nonatomic)NSString *nickNameStr; 14 | 15 | @property (strong,nonatomic)void(^drawBackNickName)(NSString *nickName); 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /YZWpClient/Src/PersonInformation/YZModifyPwdViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // YZModifyPwdViewController.h 3 | // YZWpClient 4 | // 5 | // Created by chaoliangmei on 15/10/15. 6 | // Copyright © 2015年 com.youzu. All rights reserved. 7 | // 8 | 9 | #import "YZBaseViewController.h" 10 | 11 | @interface YZModifyPwdViewController : YZBaseViewController 12 | 13 | @property (strong,nonatomic)void(^drawBackPersonPwd)(NSString *personNeWpaw); 14 | 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /YZWpClient/Src/PersonInformation/YZPersonInfoController.h: -------------------------------------------------------------------------------- 1 | // 2 | // YZPersonInfoController.h 3 | // YZWpClient 4 | // 5 | // Created by chaoliangmei on 15/10/14. 6 | // Copyright © 2015年 com.youzu. All rights reserved. 7 | // 8 | 9 | #import "YZBaseViewController.h" 10 | 11 | @interface YZPersonInfoController : YZBaseViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /YZWpClient/Src/Search/SearchCell.h: -------------------------------------------------------------------------------- 1 | // 2 | // SearchCell.h 3 | // YZWpClient 4 | // 5 | // Created by chaoliangmei on 15/10/8. 6 | // Copyright © 2015年 com.youzu. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "YZTableViewCell.h" 11 | 12 | #define kSearchHistoryCellRow 44 13 | 14 | @interface SearchCell : YZTableViewCell 15 | 16 | @property(strong,nonatomic)void(^searchTitleBlock)(NSString *); 17 | 18 | @end 19 | -------------------------------------------------------------------------------- /YZWpClient/Src/Search/YZSearchController.h: -------------------------------------------------------------------------------- 1 | // 2 | // YZSearchController.h 3 | // YZWpClient 4 | // 5 | // Created by zhoutl on 15/8/12. 6 | // Copyright (c) 2015年 com.youzu. All rights reserved. 7 | // 8 | 9 | #import "YZBaseViewController.h" 10 | 11 | @interface YZSearchController : UIViewController 12 | 13 | -(void)doSearchTagWithUrl:(NSString *)urlString; 14 | @end 15 | -------------------------------------------------------------------------------- /YZWpClient/Src/Setting/YZAboutController.h: -------------------------------------------------------------------------------- 1 | // 2 | // YZAboutController.h 3 | // YZWpClient 4 | // 5 | // Created by chaoliangmei on 15/9/22. 6 | // Copyright © 2015年 com.youzu. All rights reserved. 7 | // 8 | 9 | #import "YZBaseViewController.h" 10 | 11 | #define SVNVerSionNo @"5579" 12 | 13 | @interface YZAboutController : YZBaseViewController 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /YZWpClient/Src/Setting/YZFavoriteController.h: -------------------------------------------------------------------------------- 1 | // 2 | // YZFavoriteController.h 3 | // YZWpClient 4 | // 5 | // Created by zhoutl on 15/8/17. 6 | // Copyright (c) 2015年 com.youzu. All rights reserved. 7 | // 8 | 9 | #import "YZBaseViewController.h" 10 | 11 | @interface YZFavoriteController : YZBaseViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /YZWpClient/Src/Setting/YZHistoryController.h: -------------------------------------------------------------------------------- 1 | // 2 | // YZHistoryController.h 3 | // YZWpClient 4 | // 5 | // Created by chaoliangmei on 15/9/25. 6 | // Copyright © 2015年 com.youzu. All rights reserved. 7 | // 8 | 9 | #import "YZBaseViewController.h" 10 | 11 | @interface YZHistoryController : YZBaseViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /YZWpClient/Src/Setting/YZOffLineDownloadController.h: -------------------------------------------------------------------------------- 1 | // 2 | // YZOffLineDownloadController.h 3 | // YZWpClient 4 | // 5 | // Created by zhoutl on 15/10/20. 6 | // Copyright © 2015年 com.youzu. All rights reserved. 7 | // 8 | 9 | #import "YZBaseViewController.h" 10 | 11 | @interface YZOffLineDownloadController : YZBaseViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /YZWpClient/Src/Setting/YZSettingController.h: -------------------------------------------------------------------------------- 1 | // 2 | // SettingController.h 3 | // YZWpClient 4 | // 5 | // Created by zhoutl on 15/8/7. 6 | // Copyright (c) 2015年 com.youzu. All rights reserved. 7 | // 8 | 9 | #import "YZBaseViewController.h" 10 | 11 | @interface YZSettingController : YZBaseViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /YZWpClient/Src/Special/Model/YZSpecialModel.m: -------------------------------------------------------------------------------- 1 | // 2 | // YZSpecialModel.m 3 | // YZWpClient 4 | // 5 | // Created by chaoliangmei on 15/10/22. 6 | // Copyright © 2015年 com.youzu. All rights reserved. 7 | // 8 | 9 | #import "YZSpecialModel.h" 10 | 11 | @implementation YZSpecialModel 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /YZWpClient/Src/Special/YZSpecialController.h: -------------------------------------------------------------------------------- 1 | // 2 | // YZSpecialController.h 3 | // YZWpClient 4 | // 5 | // Created by chaoliangmei on 15/10/22. 6 | // Copyright © 2015年 com.youzu. All rights reserved. 7 | // 8 | 9 | #import "YZBaseViewController.h" 10 | 11 | @interface YZSpecialController : YZBaseViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /YZWpClient/Src/Special/YZSubSpecialController.h: -------------------------------------------------------------------------------- 1 | // 2 | // YZSubSpecialController.h 3 | // YZWpClient 4 | // 5 | // Created by chaoliangmei on 15/10/22. 6 | // Copyright © 2015年 com.youzu. All rights reserved. 7 | // 8 | 9 | #import "YZBaseViewController.h" 10 | 11 | @interface YZSubSpecialController : YZBaseViewController 12 | 13 | @property (strong,nonatomic)NSString *urlStr; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /YZWpClient/Src/Theme&Skin/Resource/Night/addCategory@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Src/Theme&Skin/Resource/Night/addCategory@2x.png -------------------------------------------------------------------------------- /YZWpClient/Src/Theme&Skin/Resource/Night/addCategory@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Src/Theme&Skin/Resource/Night/addCategory@3x.png -------------------------------------------------------------------------------- /YZWpClient/Src/Theme&Skin/Resource/Night/corner_circle@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Src/Theme&Skin/Resource/Night/corner_circle@2x.png -------------------------------------------------------------------------------- /YZWpClient/Src/Theme&Skin/Resource/Night/defaultImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Src/Theme&Skin/Resource/Night/defaultImage@2x.png -------------------------------------------------------------------------------- /YZWpClient/Src/Theme&Skin/Resource/Night/default_image_230160@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Src/Theme&Skin/Resource/Night/default_image_230160@2x.png -------------------------------------------------------------------------------- /YZWpClient/Src/Theme&Skin/Resource/Night/font_set_button@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Src/Theme&Skin/Resource/Night/font_set_button@2x.png -------------------------------------------------------------------------------- /YZWpClient/Src/Theme&Skin/Resource/Night/home_search_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Src/Theme&Skin/Resource/Night/home_search_icon@2x.png -------------------------------------------------------------------------------- /YZWpClient/Src/Theme&Skin/Resource/Night/home_search_icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Src/Theme&Skin/Resource/Night/home_search_icon@3x.png -------------------------------------------------------------------------------- /YZWpClient/Src/Theme&Skin/Resource/Night/nav_back@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Src/Theme&Skin/Resource/Night/nav_back@2x.png -------------------------------------------------------------------------------- /YZWpClient/Src/Theme&Skin/Resource/Night/nav_tal_new@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Src/Theme&Skin/Resource/Night/nav_tal_new@2x.png -------------------------------------------------------------------------------- /YZWpClient/Src/Theme&Skin/Resource/Night/nav_tal_new@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Src/Theme&Skin/Resource/Night/nav_tal_new@3x.png -------------------------------------------------------------------------------- /YZWpClient/Src/Theme&Skin/Resource/Night/separatory_line1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Src/Theme&Skin/Resource/Night/separatory_line1@2x.png -------------------------------------------------------------------------------- /YZWpClient/Src/Theme&Skin/Resource/Normal/addCategory@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Src/Theme&Skin/Resource/Normal/addCategory@2x.png -------------------------------------------------------------------------------- /YZWpClient/Src/Theme&Skin/Resource/Normal/addCategory@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Src/Theme&Skin/Resource/Normal/addCategory@3x.png -------------------------------------------------------------------------------- /YZWpClient/Src/Theme&Skin/Resource/Normal/corner_circle@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Src/Theme&Skin/Resource/Normal/corner_circle@2x.png -------------------------------------------------------------------------------- /YZWpClient/Src/Theme&Skin/Resource/Normal/defaultImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Src/Theme&Skin/Resource/Normal/defaultImage@2x.png -------------------------------------------------------------------------------- /YZWpClient/Src/Theme&Skin/Resource/Normal/default_image_230160@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Src/Theme&Skin/Resource/Normal/default_image_230160@2x.png -------------------------------------------------------------------------------- /YZWpClient/Src/Theme&Skin/Resource/Normal/detail_font_icon_white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Src/Theme&Skin/Resource/Normal/detail_font_icon_white@2x.png -------------------------------------------------------------------------------- /YZWpClient/Src/Theme&Skin/Resource/Normal/detail_font_icon_white@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Src/Theme&Skin/Resource/Normal/detail_font_icon_white@3x.png -------------------------------------------------------------------------------- /YZWpClient/Src/Theme&Skin/Resource/Normal/font_set_button@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Src/Theme&Skin/Resource/Normal/font_set_button@2x.png -------------------------------------------------------------------------------- /YZWpClient/Src/Theme&Skin/Resource/Normal/home_search_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Src/Theme&Skin/Resource/Normal/home_search_icon@2x.png -------------------------------------------------------------------------------- /YZWpClient/Src/Theme&Skin/Resource/Normal/home_search_icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Src/Theme&Skin/Resource/Normal/home_search_icon@3x.png -------------------------------------------------------------------------------- /YZWpClient/Src/Theme&Skin/Resource/Normal/home_search_icon_white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Src/Theme&Skin/Resource/Normal/home_search_icon_white@2x.png -------------------------------------------------------------------------------- /YZWpClient/Src/Theme&Skin/Resource/Normal/home_search_icon_white@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Src/Theme&Skin/Resource/Normal/home_search_icon_white@3x.png -------------------------------------------------------------------------------- /YZWpClient/Src/Theme&Skin/Resource/Normal/nav_back@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Src/Theme&Skin/Resource/Normal/nav_back@2x.png -------------------------------------------------------------------------------- /YZWpClient/Src/Theme&Skin/Resource/Normal/nav_back_white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Src/Theme&Skin/Resource/Normal/nav_back_white@2x.png -------------------------------------------------------------------------------- /YZWpClient/Src/Theme&Skin/Resource/Normal/nav_back_white@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Src/Theme&Skin/Resource/Normal/nav_back_white@3x.png -------------------------------------------------------------------------------- /YZWpClient/Src/Theme&Skin/Resource/Normal/nav_tal_new@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Src/Theme&Skin/Resource/Normal/nav_tal_new@2x.png -------------------------------------------------------------------------------- /YZWpClient/Src/Theme&Skin/Resource/Normal/nav_tal_new@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Src/Theme&Skin/Resource/Normal/nav_tal_new@3x.png -------------------------------------------------------------------------------- /YZWpClient/Src/Theme&Skin/Resource/Normal/nav_tal_white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Src/Theme&Skin/Resource/Normal/nav_tal_white@2x.png -------------------------------------------------------------------------------- /YZWpClient/Src/Theme&Skin/Resource/Normal/nav_tal_white@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Src/Theme&Skin/Resource/Normal/nav_tal_white@3x.png -------------------------------------------------------------------------------- /YZWpClient/Src/Theme&Skin/Resource/Normal/separatory_line1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/YZWpClient/Src/Theme&Skin/Resource/Normal/separatory_line1@2x.png -------------------------------------------------------------------------------- /YZWpClient/Src/Theme&Skin/UIKit-Skin/UIColor+Skin.h: -------------------------------------------------------------------------------- 1 | // 2 | // UIColor+Skin.h 3 | // NightMode 4 | // 5 | // Created by chaoliangmei on 15/9/2. 6 | // Copyright (c) 2015年 chaoliangmei. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface UIColor (Skin) 12 | 13 | + (UIColor *)colorWithHex:(int)hexValue alpha:(CGFloat)alpha; 14 | 15 | + (UIColor *)colorWithHex:(int )hexValue; 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /YZWpClient/Src/Theme&Skin/UIKit-Skin/UIImageView+Skin.h: -------------------------------------------------------------------------------- 1 | // 2 | // UIImageView+Skin.h 3 | // NightMode 4 | // 5 | // Created by chaoliangmei on 15/9/6. 6 | // Copyright (c) 2015年 chaoliangmei. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface UIImageView (Skin) 12 | 13 | - (void)setThemeBackgroudImage:(NSString *)backgroudImage; 14 | - (void)openThemeSkin; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /YZWpClient/Src/Theme&Skin/UIKit-Skin/UILabel+Skin.h: -------------------------------------------------------------------------------- 1 | // 2 | // UILabel+Skin.h 3 | // NightMode 4 | // 5 | // Created by chaoliangmei on 15/9/2. 6 | // Copyright (c) 2015年 chaoliangmei. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface UILabel (Skin) 12 | 13 | - (void)openThemeSkin; 14 | 15 | - (void)setThemeLabBackgroundColor:(NSString *)themBackgroundColor; 16 | - (void)setThemeTextColor:(NSString *)themeColor; 17 | 18 | @end 19 | -------------------------------------------------------------------------------- /YZWpClient/Src/Theme&Skin/UIKit-Skin/UINavigationBar+Skin.h: -------------------------------------------------------------------------------- 1 | // 2 | // UINavigationBar+Skin.h 3 | // NightMode 4 | // 5 | // Created by chaoliangmei on 15/9/6. 6 | // Copyright (c) 2015年 chaoliangmei. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface UINavigationBar (Skin) 12 | 13 | - (void)openThemeSkin; 14 | - (void)setThemeBackgroudImage:(NSString *)imageName; 15 | - (void)setThemeTintColor:(NSString *)colorName; 16 | - (void)setThemeBarTintColor:(NSString *)colorName; 17 | - (void)setThemeTitleColor:(NSString *)colorName; 18 | 19 | @end 20 | -------------------------------------------------------------------------------- /YZWpClient/Src/Theme&Skin/UIKit-Skin/UIView+Skin.h: -------------------------------------------------------------------------------- 1 | // 2 | // UIView+Skin.h 3 | // YZWpClient 4 | // 5 | // Created by chaoliangmei on 15/9/7. 6 | // Copyright (c) 2015年 com.youzu. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | 12 | 13 | @interface UIView (Skin) 14 | 15 | - (void)setThemeViewBackgroudColor:(NSString *)backgroudColor; 16 | - (void)openThemeSkin; 17 | - (void)closeThemeSkin; 18 | 19 | 20 | @end 21 | -------------------------------------------------------------------------------- /YZWpClient/Src/Theme&Skin/UIKit-Skin/UIWebView+Skin.h: -------------------------------------------------------------------------------- 1 | // 2 | // UIWebView+Skin.h 3 | // YZWpClient 4 | // 5 | // Created by chaoliangmei on 15/9/7. 6 | // Copyright (c) 2015年 com.youzu. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface UIWebView (Skin) 12 | 13 | - (void)openThemeSkin; 14 | 15 | - (void)setThemeWebBackgroundColor:(NSString *)themBackgroundColor; 16 | - (void)setThemeWebTextColor:(NSString *)themeColor; 17 | - (void)configureViews; 18 | 19 | @end 20 | -------------------------------------------------------------------------------- /YZWpClient/Src/Theme&Skin/UIKit-Skin/YZButton.h: -------------------------------------------------------------------------------- 1 | // 2 | // YZButton.h 3 | // YZWpClient 4 | // 5 | // Created by chaoliangmei on 15/9/9. 6 | // Copyright (c) 2015年 com.youzu. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface YZButton : UIButton 12 | 13 | - (void)setThemeButtonBackgroudColor:(NSString *)backgroudColor; 14 | - (void)setThemeButtonImage:(NSString *)backgroudImage; 15 | - (void)setthemeTextColor:(NSString *)themeColor; 16 | 17 | - (void)openThemeSkin; 18 | 19 | @end 20 | -------------------------------------------------------------------------------- /YZWpClient/Src/Theme&Skin/UIKit-Skin/YZCollectionView.h: -------------------------------------------------------------------------------- 1 | // 2 | // YZCollectionView.h 3 | // YZWpClient 4 | // 5 | // Created by chaoliangmei on 15/9/9. 6 | // Copyright (c) 2015年 com.youzu. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface YZCollectionView : UICollectionView 12 | 13 | - (void)setThemeCollectionViewBackgroudColor:(NSString *)backgroudColor; 14 | - (void)openThemeSkin; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /YZWpClient/Src/Theme&Skin/UIKit-Skin/YZImageView.h: -------------------------------------------------------------------------------- 1 | // 2 | // YZImageView.h 3 | // YZWpClient 4 | // 5 | // Created by chaoliangmei on 15/9/9. 6 | // Copyright (c) 2015年 com.youzu. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface YZImageView : UIImageView 12 | 13 | - (void)setThemeBackgroudImage:(NSString *)backgroudImage; 14 | - (void)openThemeSkin; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /YZWpClient/Src/Theme&Skin/UIKit-Skin/YZLabel.h: -------------------------------------------------------------------------------- 1 | // 2 | // YZLabel.h 3 | // YZWpClient 4 | // 5 | // Created by chaoliangmei on 15/9/9. 6 | // Copyright (c) 2015年 com.youzu. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface YZLabel : UILabel 12 | 13 | - (void)openThemeSkin; 14 | 15 | - (void)setThemeLabBackgroundColor:(NSString *)themBackgroundColor; 16 | - (void)setThemeTextColor:(NSString *)themeColor; 17 | 18 | @end 19 | -------------------------------------------------------------------------------- /YZWpClient/Src/Theme&Skin/UIKit-Skin/YZNavigationBar.h: -------------------------------------------------------------------------------- 1 | // 2 | // YZNavigationBar.h 3 | // YZWpClient 4 | // 5 | // Created by chaoliangmei on 15/9/9. 6 | // Copyright (c) 2015年 com.youzu. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface YZNavigationBar : UINavigationBar 12 | 13 | - (void)openThemeSkin; 14 | - (void)setThemeBackgroudImage:(NSString *)imageName; 15 | - (void)setThemeTintColor:(NSString *)colorName; 16 | - (void)setThemeBarTintColor:(NSString *)colorName; 17 | - (void)setThemeTitleColor:(NSString *)colorName; 18 | 19 | @end 20 | -------------------------------------------------------------------------------- /YZWpClient/Src/Theme&Skin/UIKit-Skin/YZTableViewCell.h: -------------------------------------------------------------------------------- 1 | // 2 | // YZTableViewCell.h 3 | // YZWpClient 4 | // 5 | // Created by chaoliangmei on 15/9/9. 6 | // Copyright (c) 2015年 com.youzu. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface YZTableViewCell : UITableViewCell 12 | 13 | - (void)setThemeCellBackgroudColor:(NSString *)backgroudColor; 14 | - (void)setThemeCellTextColor:(NSString *)backgroudColor; 15 | - (void)setThemeCellDetailTextColor:(NSString *)backgroudColor; 16 | - (void)openThemeSkin; 17 | 18 | @end 19 | -------------------------------------------------------------------------------- /YZWpClient/Src/Theme&Skin/UIKit-Skin/YZView.h: -------------------------------------------------------------------------------- 1 | // 2 | // YZView.h 3 | // YZWpClient 4 | // 5 | // Created by chaoliangmei on 15/9/9. 6 | // Copyright (c) 2015年 com.youzu. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface YZView : UIView 12 | 13 | - (void)setThemeViewBackgroudColor:(NSString *)backgroudColor; 14 | - (void)openThemeSkin; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /YZWpClient/Src/Theme&Skin/UIKit-Skin/YZWebView.h: -------------------------------------------------------------------------------- 1 | // 2 | // YZWebView.h 3 | // YZWpClient 4 | // 5 | // Created by chaoliangmei on 15/9/9. 6 | // Copyright (c) 2015年 com.youzu. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface YZWebView : UIWebView 12 | 13 | - (void)openThemeSkin; 14 | 15 | - (void)setThemeWebBackgroundColor:(NSString *)themBackgroundColor; 16 | - (void)setThemeWebTextColor:(NSString *)themeColor; 17 | - (void)configureViews; 18 | 19 | @end 20 | -------------------------------------------------------------------------------- /YZWpClient/Src/Utils/Additions/Additions.h: -------------------------------------------------------------------------------- 1 | // 2 | // Additions.h 3 | // SNFramework 4 | // 5 | // Created by robin on 5/15/13. 6 | // Copyright (c) 2013 liukun. All rights reserved. 7 | // 8 | 9 | #import "NSData+SNAdditions.h" 10 | #import "NSString+SNAdditions.h" 11 | #import "UIColor+SNAdditions.h" 12 | #import "NSDate+SNAdditions.h" 13 | #import "UIImage+SNAdditions.h" 14 | #import "NSNumber+SNAdditions.h" 15 | #import "UIViewExt.h" 16 | #import "UIButton+TouchBlock.h" 17 | 18 | #import "NSString+Additions.h" 19 | #import "NSString+MD5.h" 20 | #import "NSString+DES.h" 21 | 22 | #import "NSData+Base64.h" 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /YZWpClient/Src/Utils/Additions/NSData+SNAdditions.h: -------------------------------------------------------------------------------- 1 | // 2 | // NSData+Base64.h 3 | // SNFramework 4 | // 5 | // Created by liukun on 13-1-9. 6 | // Copyright (c) Suning. All rights reserved. 7 | // 8 | // http://www.cocoadev.com/index.pl?BaseSixtyFour 9 | 10 | #import 11 | 12 | @interface NSData (SNAdditions) 13 | 14 | - (NSString *)MD5EncodedString; 15 | - (NSData *)HMACSHA1EncodedDataWithKey:(NSString *)key; 16 | 17 | + (id)dataWithBase64EncodedString:(NSString *)string; 18 | - (NSString *)base64EncodedString; 19 | 20 | @end 21 | -------------------------------------------------------------------------------- /YZWpClient/Src/Utils/Additions/NSDate+SNAdditions.h: -------------------------------------------------------------------------------- 1 | // 2 | // NSDate+SNAdditions.h 3 | // SNFramework 4 | // 5 | // Created by liukun on 13-1-14. 6 | // Copyright (c) Suning. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface NSDate (SNAdditions) 12 | 13 | + (NSDate *)dateFromString:(NSString *)string withFormat:(NSString *)formatString; 14 | 15 | + (NSString *)stringFromDate:(NSDate *)date withFormat:(NSString *)formatString; 16 | 17 | + (NSUInteger)timeStamp; 18 | 19 | - (NSString *)stringWithDateFormat:(NSString *)format; 20 | 21 | @end 22 | -------------------------------------------------------------------------------- /YZWpClient/Src/Utils/Additions/NSNumber+SNAdditions.m: -------------------------------------------------------------------------------- 1 | // 2 | // NSNumber+SNAdditions.m 3 | // SNFramework 4 | // 5 | // Created by liukun on 13-1-26. 6 | // Copyright (c) Suning. All rights reserved. 7 | // 8 | 9 | #import "NSNumber+SNAdditions.h" 10 | 11 | @implementation NSNumber (SNAdditions) 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /YZWpClient/Src/Utils/Additions/NSString+DES.h: -------------------------------------------------------------------------------- 1 | // 2 | // NSString+DES.h 3 | // SuningEBuy 4 | // 5 | // Created by liukun on 12-11-15. 6 | // Copyright (c) 2012年 Suning. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "NSData+Base64.h" 11 | @interface NSString (DES) 12 | 13 | +(NSString *) encryptUseDES:(NSString *)clearText key:(NSString *)key; 14 | 15 | +(NSString *) decryptUseDES:(NSString *)plainText key:(NSString *)key; 16 | 17 | 18 | @end 19 | -------------------------------------------------------------------------------- /YZWpClient/Src/Utils/Additions/NSString+MD5.h: -------------------------------------------------------------------------------- 1 | // 2 | // NSString-NULL.h 3 | // WingLetter 4 | // 5 | // Created by zhaojw on 10-9-23. 6 | // Copyright 2010 Wingletter. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | 12 | @interface NSString (NSString_MD5) 13 | 14 | + (NSString*)md5HexDigest:(NSString*)input; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /YZWpClient/Src/Utils/Additions/UIButton+TouchBlock.h: -------------------------------------------------------------------------------- 1 | // 2 | // UIButton+TouchBlock.h 3 | // SNYifubao 4 | // 5 | // Created by zhoutl on 14-7-23. 6 | // Copyright (c) 2014年 Suning. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | typedef void (^TouchBlock)(UIButton *btn); 12 | 13 | @interface UIButton (TouchBlock) 14 | 15 | @property(nonatomic,readwrite) BOOL disable; 16 | 17 | - (void)addAction:(TouchBlock)block; 18 | - (void)addAction:(TouchBlock)block forControlEvents:(UIControlEvents)controlEvents; 19 | 20 | @end 21 | -------------------------------------------------------------------------------- /YZWpClient/Src/Utils/Additions/UIColor+SNAdditions.h: -------------------------------------------------------------------------------- 1 | // 2 | // UIColor+SNAdditions.h 3 | // SNFramework 4 | // 5 | // Created by liukun on 13-1-14. 6 | // Copyright (c) Suning. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | 12 | 13 | #undef HEX_RGB 14 | #define HEX_RGB(V) [UIColor colorWithRGBHex:V] 15 | 16 | @interface UIColor (SNAdditions) 17 | 18 | + (UIColor *)colorWithRGBHex:(UInt32)hex; 19 | + (UIColor *)colorWithHexString:(NSString *)stringToConvert; 20 | 21 | + (UIColor *)colorWithCssName:(NSString *)cssColorName; 22 | 23 | @end 24 | -------------------------------------------------------------------------------- /YZWpClient/Src/Utils/Additions/UIViewController+YZProgressHUD.h: -------------------------------------------------------------------------------- 1 | // 2 | // UIViewController+YZProgressHUD.h 3 | // YZWpClient 4 | // 5 | // Created by zhoutl on 15/7/22. 6 | // Copyright (c) 2015年 com.youzu. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface UIViewController (YZProgressHUD) 12 | 13 | - (void)showLoadingAddedTo:(UIView *)view; 14 | 15 | - (void)showLoadingWithTitle:(NSString *)title AddedTo:(UIView *)view; 16 | 17 | - (void)dismissHuDForView:(UIView *)view; 18 | 19 | - (void)presentSheet:(NSString *)indiTitle ForView:(UIView *)view; 20 | 21 | @end 22 | -------------------------------------------------------------------------------- /YZWpClient/Src/Utils/Additions/YZQueryComponents.h: -------------------------------------------------------------------------------- 1 | // 2 | // YZQueryComponents.h 3 | // YZWpClient 4 | // 5 | // Created by zhoutl on 15/10/20. 6 | // Copyright © 2015年 com.youzu. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface NSString (XQueryComponents) 12 | - (NSString *)stringByDecodingURLFormat; 13 | - (NSString *)stringByEncodingURLFormat; 14 | - (NSMutableDictionary *)dictionaryFromQueryComponents; 15 | @end 16 | 17 | @interface NSURL (XQueryComponents) 18 | - (NSMutableDictionary *)queryComponents; 19 | @end 20 | 21 | @interface NSDictionary (XQueryComponents) 22 | - (NSString *)stringFromQueryComponents; 23 | @end 24 | -------------------------------------------------------------------------------- /YZWpClient/Src/Utils/BaseView/YZBaseModel.h: -------------------------------------------------------------------------------- 1 | // 2 | // YZBaseModel.h 3 | // YZWpClient 4 | // 5 | // Created by zhoutl on 15/7/17. 6 | // Copyright (c) 2015年 com.youzu. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "MJExtension.h" 11 | @interface YZBaseModel : NSObject 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /YZWpClient/Src/Utils/BaseView/YZBaseModel.m: -------------------------------------------------------------------------------- 1 | // 2 | // YZBaseModel.m 3 | // YZWpClient 4 | // 5 | // Created by zhoutl on 15/7/17. 6 | // Copyright (c) 2015年 com.youzu. All rights reserved. 7 | // 8 | 9 | #import "YZBaseModel.h" 10 | 11 | @implementation YZBaseModel 12 | 13 | +(NSDictionary *)replacedKeyFromPropertyName{ 14 | return @{ 15 | @"postiD" : @"ID", 16 | @"contents" : @"content", 17 | }; 18 | } 19 | 20 | 21 | @end 22 | -------------------------------------------------------------------------------- /YZWpClient/Src/Utils/BaseView/YZBaseNavgationController.h: -------------------------------------------------------------------------------- 1 | // 2 | // YZBaseNavgationController.h 3 | // YZWpClient 4 | // 5 | // Created by zhoutl on 15/7/19. 6 | // Copyright (c) 2015年 com.youzu. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "ICSDrawerController.h" 11 | @interface YZBaseNavgationController : UINavigationController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /YZWpClient/Src/Utils/BaseView/YZBaseViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // YZBaseViewController.h 3 | // YZWpClient 4 | // 5 | // Created by zhoutl on 15/7/18. 6 | // Copyright (c) 2015年 com.youzu. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "BuildConfig.h" 11 | #import "XLPagerTabStripViewController.h" 12 | @interface YZBaseViewController : UITableViewController 13 | 14 | @property(nonatomic, assign)BOOL isBackBarButtonItemShow; 15 | 16 | 17 | @property (nonatomic,strong)void(^RightBarButtonItem)(NSInteger type); 18 | 19 | - (void)setRightItemTitle:(NSString *)itemName; 20 | 21 | @end 22 | -------------------------------------------------------------------------------- /YZWpClient/Src/Utils/DAO/DAO.h: -------------------------------------------------------------------------------- 1 | // 2 | // DAO.m 3 | // YZWpClient 4 | // 5 | // Created by zhoutl on 15/7/9. 6 | // Copyright (c) 2015年 com.youzu. All rights reserved. 7 | 8 | #import 9 | #import "FMDatabase.h" 10 | #import "FMDatabaseAdditions.h" 11 | #import "FMDatabaseQueue.h" 12 | #define CurrentDataBaseVersionCode 1000 13 | @interface DAO : NSObject { 14 | @protected 15 | FMDatabaseQueue *_databaseQueue; 16 | } 17 | 18 | @end 19 | 20 | @interface DAO () 21 | 22 | @property (nonatomic, retain) FMDatabaseQueue *databaseQueue; 23 | 24 | + (void)createTablesNeeded; 25 | 26 | @end 27 | -------------------------------------------------------------------------------- /YZWpClient/Src/Utils/FontSetSheet/FontSetSheetModel.h: -------------------------------------------------------------------------------- 1 | // 2 | // FontSetSheetModel.h 3 | // FontSetSheet 4 | // YZWpClient 5 | // 6 | // Created by zhoutl on 15/8/11. 7 | // Copyright (c) 2015年 com.youzu. All rights reserved. 8 | #import 9 | 10 | @interface FontSetSheetModel : NSObject 11 | @property(nonatomic,strong) NSString *icon; 12 | @property(nonatomic,strong) NSString *icon_on; 13 | @property(nonatomic,strong) NSString *title; 14 | @property(nonatomic,strong) UIColor *color; 15 | @end 16 | 17 | -------------------------------------------------------------------------------- /YZWpClient/Src/Utils/FontSetSheet/FontSetSheetModel.m: -------------------------------------------------------------------------------- 1 | // 2 | // FontSetSheetModel.m 3 | // YZWpClient 4 | // 5 | // Created by zhoutl on 15/8/11. 6 | // Copyright (c) 2015年 com.youzu. All rights reserved. 7 | 8 | // 9 | 10 | #import "FontSetSheetModel.h" 11 | 12 | @implementation FontSetSheetModel 13 | 14 | @end 15 | -------------------------------------------------------------------------------- /YZWpClient/Src/Utils/OffLine/YZCacheHelper.h: -------------------------------------------------------------------------------- 1 | // 2 | // YZCacheHelper.h 3 | // YZWpClient 4 | // 5 | // Created by zhoutl on 15/10/23. 6 | // Copyright © 2015年 com.youzu. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface YZCacheHelper : NSObject 12 | 13 | 14 | //导航分类cachekey 15 | + (NSString *)getNavListCacheKey; 16 | @end 17 | -------------------------------------------------------------------------------- /YZWpClient/Src/Utils/OffLine/YZOffLineDownloadTool.h: -------------------------------------------------------------------------------- 1 | // 2 | // YZOffLineDownload.h 3 | // YZWpClient 4 | // 5 | // Created by zhoutl on 15/10/22. 6 | // Copyright © 2015年 com.youzu. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface YZOffLineDownloadTool : NSObject 12 | 13 | @property (nonatomic, copy) void (^callback)(NSString *offlineStatus); 14 | 15 | + (void)startOffLine; 16 | 17 | + (void)startOffLine:(void (^)(NSString *))callback; 18 | 19 | @end 20 | -------------------------------------------------------------------------------- /YZWpClient/Src/Utils/ShareActionSheet/YZShareActionCell.h: -------------------------------------------------------------------------------- 1 | // 2 | // ShareActionCell.h 3 | // YZWpClient 4 | // 5 | // Created by zhoutl on 15/8/26. 6 | // Copyright (c) 2015年 com.youzu. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface YZShareActionCell : UICollectionViewCell 12 | 13 | @property (nonatomic, strong) UIImageView *imageView; 14 | 15 | @property (nonatomic, strong) UILabel *titleView; 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /YZWpClient/Src/Utils/YZHttpClient/YZNetworkStatusManager.h: -------------------------------------------------------------------------------- 1 | // 2 | // SNNetworkStatusManager.h 3 | // SNYifubao 4 | // 5 | // Created by wangrui on 15/4/8. 6 | // Copyright (c) 2015年 Suning. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface YZNetworkStatusManager : NSObject 12 | 13 | + (instancetype)sharedInstance; 14 | 15 | - (void)startMonitoring; 16 | 17 | /** 18 | Whether or not the network is currently reachable. 19 | */ 20 | @property (readonly, nonatomic, assign, getter = isReachable) BOOL reachable; 21 | 22 | @end 23 | -------------------------------------------------------------------------------- /YZWpClient/Src/YZShareLoginView.h: -------------------------------------------------------------------------------- 1 | // 2 | // YZShareLoginView.h 3 | // YZWpClient 4 | // 5 | // Created by zhoutl on 15/7/22. 6 | // Copyright (c) 2015年 com.youzu. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface YZShareLoginView : UIView 12 | 13 | @property (nonatomic, strong)UIButton *weichatBtn; 14 | @property (nonatomic, strong)UIButton *qqBtn; 15 | @property (nonatomic, strong)UIButton *weiboBtn; 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /YZWpClient/ViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.h 3 | // YZWpClient 4 | // 5 | // Created by zhoutl on 15/7/9. 6 | // Copyright (c) 2015年 com.youzu. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface ViewController : UIViewController 12 | 13 | 14 | @end 15 | 16 | -------------------------------------------------------------------------------- /YZWpClient/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* 2 | InfoPlist.strings 3 | YZWpClient 4 | 5 | Created by chaoliangmei on 15/8/24. 6 | Copyright (c) 2015年 com.youzu. All rights reserved. 7 | */ 8 | 9 | -------------------------------------------------------------------------------- /YZWpClient/en.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "UILabel"; text = " Copyright (c) 2015年 com.youzu. All rights reserved."; ObjectID = "8ie-xW-0ye"; */ 3 | "8ie-xW-0ye.text" = " Copyright (c) 2015年 com.youzu. All rights reserved."; 4 | 5 | /* Class = "UILabel"; text = "YZWpClient"; ObjectID = "kId-c2-rCX"; */ 6 | "kId-c2-rCX.text" = "YZWpClient"; 7 | -------------------------------------------------------------------------------- /YZWpClient/en.lproj/Main.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "UIButton"; normalTitle = "首页"; ObjectID = "iwg-jW-Dss"; */ 3 | "iwg-jW-Dss.normalTitle" = "首页"; 4 | 5 | /* Class = "UIButton"; normalTitle = "登陆"; ObjectID = "oQM-Bt-A4v"; */ 6 | "oQM-Bt-A4v.normalTitle" = "登陆"; 7 | -------------------------------------------------------------------------------- /YZWpClient/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // YZWpClient 4 | // 5 | // Created by zhoutl on 15/7/9. 6 | // Copyright (c) 2015年 com.youzu. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "AppDelegate.h" 11 | 12 | int main(int argc, char * argv[]) { 13 | @autoreleasepool { 14 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /YZWpClient/zh-Hans.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* 2 | InfoPlist.strings 3 | YZWpClient 4 | 5 | Created by chaoliangmei on 15/8/24. 6 | Copyright (c) 2015年 com.youzu. All rights reserved. 7 | */ 8 | 9 | -------------------------------------------------------------------------------- /YZWpClient/zh-Hans.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "UILabel"; text = " Copyright (c) 2015年 com.youzu. All rights reserved."; ObjectID = "8ie-xW-0ye"; */ 3 | "8ie-xW-0ye.text" = " Copyright (c) 2015年 com.youzu. All rights reserved."; 4 | 5 | /* Class = "UILabel"; text = "YZWpClient"; ObjectID = "kId-c2-rCX"; */ 6 | "kId-c2-rCX.text" = "YZWpClient"; 7 | -------------------------------------------------------------------------------- /YZWpClient/zh-Hans.lproj/Main.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "UIButton"; normalTitle = "首页"; ObjectID = "iwg-jW-Dss"; */ 3 | "iwg-jW-Dss.normalTitle" = "首页"; 4 | 5 | /* Class = "UIButton"; normalTitle = "登陆"; ObjectID = "oQM-Bt-A4v"; */ 6 | "oQM-Bt-A4v.normalTitle" = "登陆"; 7 | -------------------------------------------------------------------------------- /YZWpClient/zh-Hant.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* 2 | InfoPlist.strings 3 | YZWpClient 4 | 5 | Created by chaoliangmei on 15/8/24. 6 | Copyright (c) 2015年 com.youzu. All rights reserved. 7 | */ 8 | 9 | -------------------------------------------------------------------------------- /YZWpClient/zh-Hant.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "UILabel"; text = " Copyright (c) 2015年 com.youzu. All rights reserved."; ObjectID = "8ie-xW-0ye"; */ 3 | "8ie-xW-0ye.text" = " Copyright (c) 2015年 com.youzu. All rights reserved."; 4 | 5 | /* Class = "UILabel"; text = "YZWpClient"; ObjectID = "kId-c2-rCX"; */ 6 | "kId-c2-rCX.text" = "YZWpClient"; 7 | -------------------------------------------------------------------------------- /YZWpClient/zh-Hant.lproj/Main.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "UIButton"; normalTitle = "首页"; ObjectID = "iwg-jW-Dss"; */ 3 | "iwg-jW-Dss.normalTitle" = "首页"; 4 | 5 | /* Class = "UIButton"; normalTitle = "登陆"; ObjectID = "oQM-Bt-A4v"; */ 6 | "oQM-Bt-A4v.normalTitle" = "登陆"; 7 | -------------------------------------------------------------------------------- /screenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigAppOS/BigApp_WordPress_iOS/adf3be9bfe8c5f72e0585d0640f9e14342892e0a/screenshots/1.png --------------------------------------------------------------------------------