├── .DS_Store ├── .gitignore ├── LICENSE ├── LZBYKLive ├── .DS_Store ├── LZBYKLive.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── LZBYKLive.xcworkspace │ └── contents.xcworkspacedata ├── LZBYKLive │ ├── .DS_Store │ ├── Base.lproj │ │ ├── .DS_Store │ │ └── LaunchScreen.storyboard │ ├── Categrories │ │ ├── UIButton+ImageTitleSpace.h │ │ ├── UIButton+ImageTitleSpace.m │ │ ├── UIDevice+Extension.h │ │ ├── UIDevice+Extension.m │ │ ├── UIImage+Common.h │ │ ├── UIImage+Common.m │ │ ├── UIView+Border.h │ │ ├── UIView+Border.m │ │ ├── UIView+ClipAngle.h │ │ ├── UIView+ClipAngle.m │ │ ├── UIView+Frame.h │ │ └── UIView+Frame.m │ ├── Common │ │ ├── .DS_Store │ │ ├── Base │ │ │ ├── .DS_Store │ │ │ ├── Model │ │ │ │ ├── BaseDBModel.h │ │ │ │ ├── BaseDBModel.m │ │ │ │ ├── BaseDataManger.h │ │ │ │ ├── BaseDataManger.m │ │ │ │ ├── BaseInterfaceDM.h │ │ │ │ ├── BaseInterfaceDM.m │ │ │ │ ├── BaseModel.h │ │ │ │ └── BaseModel.m │ │ │ └── ViewController │ │ │ │ ├── BaseNC.h │ │ │ │ ├── BaseNC.m │ │ │ │ ├── BaseTC.h │ │ │ │ ├── BaseTC.m │ │ │ │ ├── BaseVC.h │ │ │ │ └── BaseVC.m │ │ ├── Constants │ │ │ ├── AppConstants.h │ │ │ ├── AppConstants.m │ │ │ ├── AppManger │ │ │ │ ├── LZBYKShareSDKManger.h │ │ │ │ ├── LZBYKShareSDKManger.m │ │ │ │ ├── YKAppCacheDataManger.h │ │ │ │ ├── YKAppCacheDataManger.m │ │ │ │ ├── YKAppManger.h │ │ │ │ └── YKAppManger.m │ │ │ ├── UIConstant.h │ │ │ ├── UIConstant.m │ │ │ ├── UIConstantColor.h │ │ │ ├── UIConstantColor.m │ │ │ ├── UIConstantFont.h │ │ │ ├── UIConstantFont.m │ │ │ ├── UITypes.h │ │ │ └── UITypes.m │ │ ├── CustomView │ │ │ ├── LZBYKAutoFooter.h │ │ │ ├── LZBYKAutoFooter.m │ │ │ ├── LZBYKDefaultNoDataView.h │ │ │ ├── LZBYKDefaultNoDataView.m │ │ │ ├── LZBYKGifHeader.h │ │ │ ├── LZBYKGifHeader.m │ │ │ ├── LZBYKTabBar.h │ │ │ └── LZBYKTabBar.m │ │ ├── Macros │ │ │ └── LZBCommonMacros.h │ │ ├── Manger │ │ │ ├── YKAppCacheDataManger.h │ │ │ └── YKAppCacheDataManger.m │ │ ├── Network │ │ │ ├── BaseModel │ │ │ │ ├── BaseHttpDataManger.h │ │ │ │ ├── BaseHttpDataManger.m │ │ │ │ ├── BaseHttpModel.h │ │ │ │ ├── BaseHttpModel.m │ │ │ │ ├── BaseResponseModel.h │ │ │ │ ├── BaseResponseModel.m │ │ │ │ ├── BaseResquestModel.h │ │ │ │ └── BaseResquestModel.m │ │ │ └── Tool │ │ │ │ ├── LZBReachabilityManager.h │ │ │ │ ├── LZBReachabilityManager.m │ │ │ │ ├── NetWorkResquestTool.h │ │ │ │ └── NetWorkResquestTool.m │ │ ├── Tool │ │ │ └── RecordTool │ │ │ │ ├── LZBRecordProcessView.h │ │ │ │ ├── LZBRecordProcessView.m │ │ │ │ ├── LZBRecordVideoTool.h │ │ │ │ └── LZBRecordVideoTool.m │ │ └── config.h │ ├── Info.plist │ ├── Library │ │ └── ShareSDK │ │ │ ├── PlatformSDK │ │ │ ├── QQSDK │ │ │ │ ├── .DS_Store │ │ │ │ ├── TencentOpenAPI.framework │ │ │ │ │ ├── Headers │ │ │ │ │ │ ├── QQApiInterface.h │ │ │ │ │ │ ├── QQApiInterfaceObject.h │ │ │ │ │ │ ├── TencentApiInterface.h │ │ │ │ │ │ ├── TencentMessageObject.h │ │ │ │ │ │ ├── TencentOAuth.h │ │ │ │ │ │ ├── TencentOAuthObject.h │ │ │ │ │ │ └── sdkdef.h │ │ │ │ │ ├── Resources │ │ │ │ │ │ └── ios_open_sdk_3.1.0.3_iphone │ │ │ │ │ └── TencentOpenAPI │ │ │ │ └── TencentOpenApi_IOS_Bundle.bundle │ │ │ │ │ ├── error.png │ │ │ │ │ ├── local.html │ │ │ │ │ ├── qqicon.png │ │ │ │ │ └── success.png │ │ │ ├── SinaWeiboSDK │ │ │ │ ├── .DS_Store │ │ │ │ ├── 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 │ │ │ │ ├── .DS_Store │ │ │ │ ├── README.txt │ │ │ │ ├── WXApi.h │ │ │ │ ├── WXApiObject.h │ │ │ │ ├── WechatAuthSDK.h │ │ │ │ ├── libWeChatSDK.a │ │ │ │ └── read_me.txt │ │ │ ├── Required │ │ │ ├── MOBFoundation.framework │ │ │ │ ├── .DS_Store │ │ │ │ ├── Headers │ │ │ │ │ ├── IMOBFPlugin.h │ │ │ │ │ ├── MOBFApplication.h │ │ │ │ │ ├── MOBFBigInteger.h │ │ │ │ │ ├── MOBFColor.h │ │ │ │ │ ├── MOBFData.h │ │ │ │ │ ├── MOBFDataService.h │ │ │ │ │ ├── MOBFDate.h │ │ │ │ │ ├── MOBFDebug.h │ │ │ │ │ ├── MOBFDevice.h │ │ │ │ │ ├── MOBFHttpPostedFile.h │ │ │ │ │ ├── MOBFHttpService.h │ │ │ │ │ ├── MOBFImage.h │ │ │ │ │ ├── MOBFImageGetter.h │ │ │ │ │ ├── MOBFImageObserver.h │ │ │ │ │ ├── MOBFImageService.h │ │ │ │ │ ├── MOBFImageServiceTypeDef.h │ │ │ │ │ ├── MOBFJSContext.h │ │ │ │ │ ├── MOBFJSTypeDefine.h │ │ │ │ │ ├── MOBFJson.h │ │ │ │ │ ├── MOBFMedia.h │ │ │ │ │ ├── MOBFNetworkFlowInfo.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 │ │ │ │ ├── ConfigurationFile │ │ │ │ │ ├── Map.plist │ │ │ │ │ ├── ShareContent.xml │ │ │ │ │ └── ShareSDK.xml │ │ │ │ ├── ScriptCore │ │ │ │ │ ├── NativeExt.js │ │ │ │ │ ├── ShareSDK.js │ │ │ │ │ └── platforms │ │ │ │ │ │ ├── Mail.js │ │ │ │ │ │ ├── QQ.js │ │ │ │ │ │ ├── SMS.js │ │ │ │ │ │ ├── SinaWeibo.js │ │ │ │ │ │ ├── TencentWeibo.js │ │ │ │ │ │ └── WeChat.js │ │ │ │ ├── en.lproj │ │ │ │ │ └── ShareSDK.strings │ │ │ │ └── zh-Hans.lproj │ │ │ │ │ └── ShareSDK.strings │ │ │ ├── ShareSDKConnector.framework │ │ │ │ ├── .DS_Store │ │ │ │ ├── Headers │ │ │ │ │ └── ShareSDKConnector.h │ │ │ │ ├── Info.plist │ │ │ │ └── ShareSDKConnector │ │ │ └── ShareSDKExtension.framework │ │ │ │ ├── .DS_Store │ │ │ │ ├── Headers │ │ │ │ ├── SSEBaseUser.h │ │ │ │ ├── SSEShareHelper.h │ │ │ │ ├── SSEThirdPartyLoginHelper.h │ │ │ │ └── ShareSDK+Extension.h │ │ │ │ ├── Info.plist │ │ │ │ └── ShareSDKExtension │ │ │ └── ShareSDK.framework │ │ │ ├── .DS_Store │ │ │ ├── Headers │ │ │ ├── ISSDKAuthView.h │ │ │ ├── NSMutableDictionary+SSDKInit.h │ │ │ ├── NSMutableDictionary+SSDKShare.h │ │ │ ├── SSDKAuthViewStyle.h │ │ │ ├── SSDKContentEntity.h │ │ │ ├── SSDKCredential.h │ │ │ ├── SSDKData.h │ │ │ ├── SSDKFriendsPaging.h │ │ │ ├── SSDKGooglePlusControllerStyle.h │ │ │ ├── SSDKImage.h │ │ │ ├── SSDKMailViewControllerStyle.h │ │ │ ├── SSDKPlatform.h │ │ │ ├── SSDKSMSViewControllerStyle.h │ │ │ ├── SSDKTypeDefine.h │ │ │ ├── SSDKUser.h │ │ │ ├── SSDKUserQueryConditional.h │ │ │ ├── ShareSDK+Base.h │ │ │ └── ShareSDK.h │ │ │ ├── Info.plist │ │ │ └── ShareSDK │ ├── Modules │ │ ├── Center │ │ │ ├── Controller │ │ │ │ ├── LZBYKCenterViewController.h │ │ │ │ └── LZBYKCenterViewController.m │ │ │ └── Model │ │ │ │ ├── .DS_Store │ │ │ │ └── DM │ │ │ │ ├── LZBCenterInterfaceDM.h │ │ │ │ └── LZBCenterInterfaceDM.m │ │ ├── Main │ │ │ ├── .DS_Store │ │ │ ├── Controller │ │ │ │ ├── LZBRecordVideoVC.h │ │ │ │ ├── LZBRecordVideoVC.m │ │ │ │ ├── LZBYKAttentionViewController.h │ │ │ │ ├── LZBYKAttentionViewController.m │ │ │ │ ├── LZBYKHotViewController.h │ │ │ │ ├── LZBYKHotViewController.m │ │ │ │ ├── LZBYKMainTabVC.h │ │ │ │ ├── LZBYKMainTabVC.m │ │ │ │ ├── LZBYKMainViewController.h │ │ │ │ ├── LZBYKMainViewController.m │ │ │ │ ├── LZBYKNearViewController.h │ │ │ │ └── LZBYKNearViewController.m │ │ │ ├── Model │ │ │ │ ├── DM │ │ │ │ │ ├── LZBYKMainHttpDM.h │ │ │ │ │ ├── LZBYKMainHttpDM.m │ │ │ │ │ ├── LZBYKMainInterfaceDM.h │ │ │ │ │ └── LZBYKMainInterfaceDM.m │ │ │ │ ├── Http │ │ │ │ │ ├── LZBYKMainListResquestModel.h │ │ │ │ │ ├── LZBYKMainListResquestModel.m │ │ │ │ │ ├── LZBYKNearResqustModel.h │ │ │ │ │ └── LZBYKNearResqustModel.m │ │ │ │ ├── LZBMainLiveModel.h │ │ │ │ ├── LZBMainLiveModel.m │ │ │ │ ├── LZBYKCreatorModel.h │ │ │ │ ├── LZBYKCreatorModel.m │ │ │ │ ├── LZBYKSlideStyleModel.h │ │ │ │ └── LZBYKSlideStyleModel.m │ │ │ ├── Resource │ │ │ │ ├── default_head@2x.png │ │ │ │ ├── default_head@3x.png │ │ │ │ ├── default_photo@2x.png │ │ │ │ ├── default_photo@3x.png │ │ │ │ ├── live_empty_bg@2x.png │ │ │ │ ├── live_empty_bg@3x.png │ │ │ │ ├── live_tag_live@2x.png │ │ │ │ ├── live_tag_live@3x.png │ │ │ │ ├── me_other_followed@2x.png │ │ │ │ ├── me_other_followed@3x.png │ │ │ │ ├── nearby_icon_now_live@2x.png │ │ │ │ ├── nearby_icon_now_live@3x.png │ │ │ │ ├── searchbar_search@2x.png │ │ │ │ ├── searchbar_search@3x.png │ │ │ │ ├── shortvideo_launch_close@2x.png │ │ │ │ ├── shortvideo_launch_close@3x.png │ │ │ │ ├── shortvideo_main_live@2x.png │ │ │ │ ├── shortvideo_main_live@3x.png │ │ │ │ ├── shortvideo_main_video@2x.png │ │ │ │ ├── shortvideo_main_video@3x.png │ │ │ │ ├── tab_launch@2x.png │ │ │ │ ├── tab_launch@3x.png │ │ │ │ ├── tab_live@2x.png │ │ │ │ ├── tab_live@3x.png │ │ │ │ ├── tab_live_p@2x.png │ │ │ │ ├── tab_live_p@3x.png │ │ │ │ ├── tab_me@2x.png │ │ │ │ ├── tab_me@3x.png │ │ │ │ ├── tab_me_p@2x.png │ │ │ │ └── tab_me_p@3x.png │ │ │ └── View │ │ │ │ ├── LZBCenterChooseView.h │ │ │ │ ├── LZBCenterChooseView.m │ │ │ │ ├── LZBInifiteScrollView.h │ │ │ │ ├── LZBInifiteScrollView.m │ │ │ │ ├── LZBYKMainHotCell.h │ │ │ │ ├── LZBYKMainHotCell.m │ │ │ │ ├── LZBYKMainNearCell.h │ │ │ │ ├── LZBYKMainNearCell.m │ │ │ │ ├── LZBYKMainNearHeadView.h │ │ │ │ ├── LZBYKMainNearHeadView.m │ │ │ │ ├── LZBYKMainSlideView.h │ │ │ │ └── LZBYKMainSlideView.m │ │ ├── My │ │ │ ├── .DS_Store │ │ │ ├── Controller │ │ │ │ ├── LZBYKMyViewController.h │ │ │ │ └── LZBYKMyViewController.m │ │ │ └── Model │ │ │ │ └── DM │ │ │ │ ├── LZBMyInterfaceDM.h │ │ │ │ └── LZBMyInterfaceDM.m │ │ └── Other │ │ │ ├── .DS_Store │ │ │ ├── Controller │ │ │ ├── LZBYKAdvertisementVC.h │ │ │ ├── LZBYKAdvertisementVC.m │ │ │ ├── LZBYKLoginVC.h │ │ │ └── LZBYKLoginVC.m │ │ │ ├── Model │ │ │ ├── DM │ │ │ │ ├── LZBYKLoginManger.h │ │ │ │ ├── LZBYKLoginManger.m │ │ │ │ ├── LonginInterfaceDM.h │ │ │ │ └── LonginInterfaceDM.m │ │ │ └── Other │ │ │ │ ├── YKAPPConfigModel.h │ │ │ │ └── YKAPPConfigModel.m │ │ │ └── Resource │ │ │ ├── .DS_Store │ │ │ ├── login_bg_cloud_1@2x.png │ │ │ ├── login_bg_cloud_1@3x.png │ │ │ ├── login_bg_cloud_2@2x.png │ │ │ ├── login_bg_cloud_2@3x.png │ │ │ ├── login_dx@2x.png │ │ │ ├── login_dx@3x.png │ │ │ ├── login_qq@2x.png │ │ │ ├── login_qq@3x.png │ │ │ ├── login_tree@2x.png │ │ │ ├── login_tree@3x.png │ │ │ ├── login_weibo@2x.png │ │ │ ├── login_weibo@3x.png │ │ │ ├── login_wx@2x.png │ │ │ ├── login_wx@3x.png │ │ │ └── wenxin_tuanguan_icon.jpg │ ├── Resource │ │ ├── LaunchImage-700-568h@2x.png │ │ ├── default_ticker.png │ │ ├── refresh_fly_0001.png │ │ ├── refresh_fly_0002.png │ │ ├── refresh_fly_0003.png │ │ ├── refresh_fly_0004.png │ │ ├── refresh_fly_0005.png │ │ ├── refresh_fly_0006.png │ │ ├── refresh_fly_0007.png │ │ ├── refresh_fly_0008.png │ │ ├── refresh_fly_0009.png │ │ ├── refresh_fly_0010.png │ │ ├── refresh_fly_0011.png │ │ ├── refresh_fly_0012.png │ │ ├── refresh_fly_0013.png │ │ ├── refresh_fly_0014.png │ │ ├── refresh_fly_0015.png │ │ ├── refresh_fly_0016.png │ │ ├── refresh_fly_0017.png │ │ ├── refresh_fly_0018.png │ │ ├── refresh_fly_0019.png │ │ ├── refresh_fly_0020.png │ │ ├── refresh_fly_0021.png │ │ ├── refresh_fly_0022.png │ │ ├── refresh_fly_0023.png │ │ ├── refresh_fly_0024.png │ │ ├── refresh_fly_0025.png │ │ ├── refresh_fly_0026.png │ │ ├── refresh_fly_0027.png │ │ ├── refresh_fly_0028.png │ │ ├── refresh_fly_0029.png │ │ ├── room_pop_up_lamp@2x.png │ │ ├── room_pop_up_lamp@3x.png │ │ ├── room_task_video_start@2x.png │ │ ├── room_task_video_start@3x.png │ │ ├── room_task_video_start_fold@2x.png │ │ ├── room_task_video_start_fold@3x.png │ │ ├── shortvideo_button_close@2x.png │ │ ├── shortvideo_button_close@3x.png │ │ ├── shortvideo_download_5_refresh@2x.png │ │ └── shortvideo_download_5_refresh@3x.png │ ├── System │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ ├── AppIcon20x20@2x.png │ │ │ │ ├── AppIcon20x20@3x.png │ │ │ │ ├── AppIcon29x29@2x.png │ │ │ │ ├── AppIcon29x29@3x.png │ │ │ │ ├── AppIcon40x40@2x.png │ │ │ │ ├── AppIcon40x40@3x.png │ │ │ │ ├── AppIcon60x60@2x.png │ │ │ │ ├── AppIcon60x60@3x.png │ │ │ │ └── Contents.json │ │ ├── LZBYKPrefixHeader.pch │ │ └── main.m │ └── Utils │ │ ├── HUD.h │ │ ├── HUD.m │ │ ├── LZBCommonTool.h │ │ ├── LZBCommonTool.m │ │ ├── LZBDataConversionManger.h │ │ ├── LZBDataConversionManger.m │ │ ├── LZBFuncTools.h │ │ └── LZBFuncTools.m ├── Podfile ├── Podfile.lock └── Pods │ ├── .DS_Store │ ├── AFNetworking │ ├── AFNetworking │ │ ├── AFHTTPRequestOperation.h │ │ ├── AFHTTPRequestOperation.m │ │ ├── AFHTTPRequestOperationManager.h │ │ ├── AFHTTPRequestOperationManager.m │ │ ├── AFHTTPSessionManager.h │ │ ├── AFHTTPSessionManager.m │ │ ├── AFNetworkReachabilityManager.h │ │ ├── AFNetworkReachabilityManager.m │ │ ├── AFNetworking.h │ │ ├── AFSecurityPolicy.h │ │ ├── AFSecurityPolicy.m │ │ ├── AFURLConnectionOperation.h │ │ ├── AFURLConnectionOperation.m │ │ ├── AFURLRequestSerialization.h │ │ ├── AFURLRequestSerialization.m │ │ ├── AFURLResponseSerialization.h │ │ ├── AFURLResponseSerialization.m │ │ ├── AFURLSessionManager.h │ │ └── AFURLSessionManager.m │ ├── LICENSE │ ├── README.md │ └── UIKit+AFNetworking │ │ ├── AFNetworkActivityIndicatorManager.h │ │ ├── AFNetworkActivityIndicatorManager.m │ │ ├── UIActivityIndicatorView+AFNetworking.h │ │ ├── UIActivityIndicatorView+AFNetworking.m │ │ ├── UIAlertView+AFNetworking.h │ │ ├── UIAlertView+AFNetworking.m │ │ ├── UIButton+AFNetworking.h │ │ ├── UIButton+AFNetworking.m │ │ ├── UIImage+AFNetworking.h │ │ ├── UIImageView+AFNetworking.h │ │ ├── UIImageView+AFNetworking.m │ │ ├── UIKit+AFNetworking.h │ │ ├── UIProgressView+AFNetworking.h │ │ ├── UIProgressView+AFNetworking.m │ │ ├── UIRefreshControl+AFNetworking.h │ │ ├── UIRefreshControl+AFNetworking.m │ │ ├── UIWebView+AFNetworking.h │ │ └── UIWebView+AFNetworking.m │ ├── Headers │ ├── Private │ │ ├── AFNetworking │ │ │ ├── AFHTTPRequestOperation.h │ │ │ ├── AFHTTPRequestOperationManager.h │ │ │ ├── AFHTTPSessionManager.h │ │ │ ├── AFNetworkActivityIndicatorManager.h │ │ │ ├── AFNetworkReachabilityManager.h │ │ │ ├── AFNetworking.h │ │ │ ├── AFSecurityPolicy.h │ │ │ ├── AFURLConnectionOperation.h │ │ │ ├── AFURLRequestSerialization.h │ │ │ ├── AFURLResponseSerialization.h │ │ │ ├── AFURLSessionManager.h │ │ │ ├── UIActivityIndicatorView+AFNetworking.h │ │ │ ├── UIAlertView+AFNetworking.h │ │ │ ├── UIButton+AFNetworking.h │ │ │ ├── UIImage+AFNetworking.h │ │ │ ├── UIImageView+AFNetworking.h │ │ │ ├── UIKit+AFNetworking.h │ │ │ ├── UIProgressView+AFNetworking.h │ │ │ ├── UIRefreshControl+AFNetworking.h │ │ │ └── UIWebView+AFNetworking.h │ │ ├── MJRefresh │ │ │ ├── MJRefresh.h │ │ │ ├── MJRefreshAutoFooter.h │ │ │ ├── MJRefreshAutoGifFooter.h │ │ │ ├── MJRefreshAutoNormalFooter.h │ │ │ ├── MJRefreshAutoStateFooter.h │ │ │ ├── MJRefreshBackFooter.h │ │ │ ├── MJRefreshBackGifFooter.h │ │ │ ├── MJRefreshBackNormalFooter.h │ │ │ ├── MJRefreshBackStateFooter.h │ │ │ ├── MJRefreshComponent.h │ │ │ ├── MJRefreshConst.h │ │ │ ├── MJRefreshFooter.h │ │ │ ├── MJRefreshGifHeader.h │ │ │ ├── MJRefreshHeader.h │ │ │ ├── MJRefreshNormalHeader.h │ │ │ ├── MJRefreshStateHeader.h │ │ │ ├── UIScrollView+MJExtension.h │ │ │ ├── UIScrollView+MJRefresh.h │ │ │ └── UIView+MJExtension.h │ │ ├── Mantle │ │ │ ├── EXTKeyPathCoding.h │ │ │ ├── EXTRuntimeExtensions.h │ │ │ ├── EXTScope.h │ │ │ ├── MTLJSONAdapter.h │ │ │ ├── MTLModel+NSCoding.h │ │ │ ├── MTLModel.h │ │ │ ├── MTLReflection.h │ │ │ ├── MTLTransformerErrorHandling.h │ │ │ ├── MTLValueTransformer.h │ │ │ ├── Mantle.h │ │ │ ├── NSArray+MTLManipulationAdditions.h │ │ │ ├── NSDictionary+MTLJSONKeyPath.h │ │ │ ├── NSDictionary+MTLManipulationAdditions.h │ │ │ ├── NSDictionary+MTLMappingAdditions.h │ │ │ ├── NSError+MTLModelException.h │ │ │ ├── NSObject+MTLComparisonAdditions.h │ │ │ ├── NSValueTransformer+MTLInversionAdditions.h │ │ │ ├── NSValueTransformer+MTLPredefinedTransformerAdditions.h │ │ │ └── metamacros.h │ │ ├── Masonry │ │ │ ├── MASCompositeConstraint.h │ │ │ ├── MASConstraint+Private.h │ │ │ ├── MASConstraint.h │ │ │ ├── MASConstraintMaker.h │ │ │ ├── MASLayoutConstraint.h │ │ │ ├── MASUtilities.h │ │ │ ├── MASViewAttribute.h │ │ │ ├── MASViewConstraint.h │ │ │ ├── Masonry.h │ │ │ ├── NSArray+MASAdditions.h │ │ │ ├── NSArray+MASShorthandAdditions.h │ │ │ ├── NSLayoutConstraint+MASDebugAdditions.h │ │ │ ├── View+MASAdditions.h │ │ │ ├── View+MASShorthandAdditions.h │ │ │ └── ViewController+MASAdditions.h │ │ ├── ReactiveCocoa │ │ │ ├── MKAnnotationView+RACSignalSupport.h │ │ │ ├── NSArray+RACSequenceAdditions.h │ │ │ ├── NSData+RACSupport.h │ │ │ ├── NSDictionary+RACSequenceAdditions.h │ │ │ ├── NSEnumerator+RACSequenceAdditions.h │ │ │ ├── NSFileHandle+RACSupport.h │ │ │ ├── NSIndexSet+RACSequenceAdditions.h │ │ │ ├── NSInvocation+RACTypeParsing.h │ │ │ ├── NSNotificationCenter+RACSupport.h │ │ │ ├── NSObject+RACDeallocating.h │ │ │ ├── NSObject+RACDescription.h │ │ │ ├── NSObject+RACKVOWrapper.h │ │ │ ├── NSObject+RACLifting.h │ │ │ ├── NSObject+RACPropertySubscribing.h │ │ │ ├── NSObject+RACSelectorSignal.h │ │ │ ├── NSOrderedSet+RACSequenceAdditions.h │ │ │ ├── NSSet+RACSequenceAdditions.h │ │ │ ├── NSString+RACKeyPathUtilities.h │ │ │ ├── NSString+RACSequenceAdditions.h │ │ │ ├── NSString+RACSupport.h │ │ │ ├── NSURLConnection+RACSupport.h │ │ │ ├── NSUserDefaults+RACSupport.h │ │ │ ├── RACArraySequence.h │ │ │ ├── RACBehaviorSubject.h │ │ │ ├── RACBlockTrampoline.h │ │ │ ├── RACChannel.h │ │ │ ├── RACCommand.h │ │ │ ├── RACCompoundDisposable.h │ │ │ ├── RACDelegateProxy.h │ │ │ ├── RACDisposable.h │ │ │ ├── RACDynamicSequence.h │ │ │ ├── RACDynamicSignal.h │ │ │ ├── RACEXTKeyPathCoding.h │ │ │ ├── RACEXTRuntimeExtensions.h │ │ │ ├── RACEXTScope.h │ │ │ ├── RACEagerSequence.h │ │ │ ├── RACEmptySequence.h │ │ │ ├── RACEmptySignal.h │ │ │ ├── RACErrorSignal.h │ │ │ ├── RACEvent.h │ │ │ ├── RACGroupedSignal.h │ │ │ ├── RACImmediateScheduler.h │ │ │ ├── RACIndexSetSequence.h │ │ │ ├── RACKVOChannel.h │ │ │ ├── RACKVOProxy.h │ │ │ ├── RACKVOTrampoline.h │ │ │ ├── RACMulticastConnection+Private.h │ │ │ ├── RACMulticastConnection.h │ │ │ ├── RACObjCRuntime.h │ │ │ ├── RACPassthroughSubscriber.h │ │ │ ├── RACQueueScheduler+Subclass.h │ │ │ ├── RACQueueScheduler.h │ │ │ ├── RACReplaySubject.h │ │ │ ├── RACReturnSignal.h │ │ │ ├── RACScheduler+Private.h │ │ │ ├── RACScheduler+Subclass.h │ │ │ ├── RACScheduler.h │ │ │ ├── RACScopedDisposable.h │ │ │ ├── RACSequence.h │ │ │ ├── RACSerialDisposable.h │ │ │ ├── RACSignal+Operations.h │ │ │ ├── RACSignal.h │ │ │ ├── RACSignalSequence.h │ │ │ ├── RACStream+Private.h │ │ │ ├── RACStream.h │ │ │ ├── RACStringSequence.h │ │ │ ├── RACSubject.h │ │ │ ├── RACSubscriber+Private.h │ │ │ ├── RACSubscriber.h │ │ │ ├── RACSubscriptingAssignmentTrampoline.h │ │ │ ├── RACSubscriptionScheduler.h │ │ │ ├── RACTargetQueueScheduler.h │ │ │ ├── RACTestScheduler.h │ │ │ ├── RACTuple.h │ │ │ ├── RACTupleSequence.h │ │ │ ├── RACUnarySequence.h │ │ │ ├── RACUnit.h │ │ │ ├── RACValueTransformer.h │ │ │ ├── RACmetamacros.h │ │ │ ├── ReactiveCocoa.h │ │ │ ├── UIActionSheet+RACSignalSupport.h │ │ │ ├── UIAlertView+RACSignalSupport.h │ │ │ ├── UIBarButtonItem+RACCommandSupport.h │ │ │ ├── UIButton+RACCommandSupport.h │ │ │ ├── UICollectionReusableView+RACSignalSupport.h │ │ │ ├── UIControl+RACSignalSupport.h │ │ │ ├── UIControl+RACSignalSupportPrivate.h │ │ │ ├── UIDatePicker+RACSignalSupport.h │ │ │ ├── UIGestureRecognizer+RACSignalSupport.h │ │ │ ├── UIImagePickerController+RACSignalSupport.h │ │ │ ├── UIRefreshControl+RACCommandSupport.h │ │ │ ├── UISegmentedControl+RACSignalSupport.h │ │ │ ├── UISlider+RACSignalSupport.h │ │ │ ├── UIStepper+RACSignalSupport.h │ │ │ ├── UISwitch+RACSignalSupport.h │ │ │ ├── UITableViewCell+RACSignalSupport.h │ │ │ ├── UITableViewHeaderFooterView+RACSignalSupport.h │ │ │ ├── UITextField+RACSignalSupport.h │ │ │ └── UITextView+RACSignalSupport.h │ │ ├── SDWebImage │ │ │ ├── NSData+ImageContentType.h │ │ │ ├── SDImageCache.h │ │ │ ├── SDWebImageCompat.h │ │ │ ├── SDWebImageDecoder.h │ │ │ ├── SDWebImageDownloader.h │ │ │ ├── SDWebImageDownloaderOperation.h │ │ │ ├── SDWebImageManager.h │ │ │ ├── SDWebImageOperation.h │ │ │ ├── SDWebImagePrefetcher.h │ │ │ ├── UIButton+WebCache.h │ │ │ ├── UIImage+GIF.h │ │ │ ├── UIImage+MultiFormat.h │ │ │ ├── UIImageView+HighlightedWebCache.h │ │ │ ├── UIImageView+WebCache.h │ │ │ └── UIView+WebCacheOperation.h │ │ └── SVProgressHUD │ │ │ ├── SVIndefiniteAnimatedView.h │ │ │ └── SVProgressHUD.h │ └── Public │ │ ├── AFNetworking │ │ ├── AFHTTPRequestOperation.h │ │ ├── AFHTTPRequestOperationManager.h │ │ ├── AFHTTPSessionManager.h │ │ ├── AFNetworkActivityIndicatorManager.h │ │ ├── AFNetworkReachabilityManager.h │ │ ├── AFNetworking.h │ │ ├── AFSecurityPolicy.h │ │ ├── AFURLConnectionOperation.h │ │ ├── AFURLRequestSerialization.h │ │ ├── AFURLResponseSerialization.h │ │ ├── AFURLSessionManager.h │ │ ├── UIActivityIndicatorView+AFNetworking.h │ │ ├── UIAlertView+AFNetworking.h │ │ ├── UIButton+AFNetworking.h │ │ ├── UIImage+AFNetworking.h │ │ ├── UIImageView+AFNetworking.h │ │ ├── UIKit+AFNetworking.h │ │ ├── UIProgressView+AFNetworking.h │ │ ├── UIRefreshControl+AFNetworking.h │ │ └── UIWebView+AFNetworking.h │ │ ├── MJRefresh │ │ ├── MJRefresh.h │ │ ├── MJRefreshAutoFooter.h │ │ ├── MJRefreshAutoGifFooter.h │ │ ├── MJRefreshAutoNormalFooter.h │ │ ├── MJRefreshAutoStateFooter.h │ │ ├── MJRefreshBackFooter.h │ │ ├── MJRefreshBackGifFooter.h │ │ ├── MJRefreshBackNormalFooter.h │ │ ├── MJRefreshBackStateFooter.h │ │ ├── MJRefreshComponent.h │ │ ├── MJRefreshConst.h │ │ ├── MJRefreshFooter.h │ │ ├── MJRefreshGifHeader.h │ │ ├── MJRefreshHeader.h │ │ ├── MJRefreshNormalHeader.h │ │ ├── MJRefreshStateHeader.h │ │ ├── UIScrollView+MJExtension.h │ │ ├── UIScrollView+MJRefresh.h │ │ └── UIView+MJExtension.h │ │ ├── Mantle │ │ ├── MTLJSONAdapter.h │ │ ├── MTLModel+NSCoding.h │ │ ├── MTLModel.h │ │ ├── MTLReflection.h │ │ ├── MTLTransformerErrorHandling.h │ │ ├── MTLValueTransformer.h │ │ ├── Mantle.h │ │ ├── NSArray+MTLManipulationAdditions.h │ │ ├── NSDictionary+MTLJSONKeyPath.h │ │ ├── NSDictionary+MTLManipulationAdditions.h │ │ ├── NSDictionary+MTLMappingAdditions.h │ │ ├── NSError+MTLModelException.h │ │ ├── NSObject+MTLComparisonAdditions.h │ │ ├── NSValueTransformer+MTLInversionAdditions.h │ │ └── NSValueTransformer+MTLPredefinedTransformerAdditions.h │ │ ├── Masonry │ │ ├── MASCompositeConstraint.h │ │ ├── MASConstraint+Private.h │ │ ├── MASConstraint.h │ │ ├── MASConstraintMaker.h │ │ ├── MASLayoutConstraint.h │ │ ├── MASUtilities.h │ │ ├── MASViewAttribute.h │ │ ├── MASViewConstraint.h │ │ ├── Masonry.h │ │ ├── NSArray+MASAdditions.h │ │ ├── NSArray+MASShorthandAdditions.h │ │ ├── NSLayoutConstraint+MASDebugAdditions.h │ │ ├── View+MASAdditions.h │ │ ├── View+MASShorthandAdditions.h │ │ └── ViewController+MASAdditions.h │ │ ├── ReactiveCocoa │ │ ├── MKAnnotationView+RACSignalSupport.h │ │ ├── NSArray+RACSequenceAdditions.h │ │ ├── NSData+RACSupport.h │ │ ├── NSDictionary+RACSequenceAdditions.h │ │ ├── NSEnumerator+RACSequenceAdditions.h │ │ ├── NSFileHandle+RACSupport.h │ │ ├── NSIndexSet+RACSequenceAdditions.h │ │ ├── NSInvocation+RACTypeParsing.h │ │ ├── NSNotificationCenter+RACSupport.h │ │ ├── NSObject+RACDeallocating.h │ │ ├── NSObject+RACDescription.h │ │ ├── NSObject+RACKVOWrapper.h │ │ ├── NSObject+RACLifting.h │ │ ├── NSObject+RACPropertySubscribing.h │ │ ├── NSObject+RACSelectorSignal.h │ │ ├── NSOrderedSet+RACSequenceAdditions.h │ │ ├── NSSet+RACSequenceAdditions.h │ │ ├── NSString+RACKeyPathUtilities.h │ │ ├── NSString+RACSequenceAdditions.h │ │ ├── NSString+RACSupport.h │ │ ├── NSURLConnection+RACSupport.h │ │ ├── NSUserDefaults+RACSupport.h │ │ ├── RACArraySequence.h │ │ ├── RACBehaviorSubject.h │ │ ├── RACBlockTrampoline.h │ │ ├── RACChannel.h │ │ ├── RACCommand.h │ │ ├── RACCompoundDisposable.h │ │ ├── RACDelegateProxy.h │ │ ├── RACDisposable.h │ │ ├── RACDynamicSequence.h │ │ ├── RACDynamicSignal.h │ │ ├── RACEXTKeyPathCoding.h │ │ ├── RACEXTRuntimeExtensions.h │ │ ├── RACEXTScope.h │ │ ├── RACEagerSequence.h │ │ ├── RACEmptySequence.h │ │ ├── RACEmptySignal.h │ │ ├── RACErrorSignal.h │ │ ├── RACEvent.h │ │ ├── RACGroupedSignal.h │ │ ├── RACImmediateScheduler.h │ │ ├── RACIndexSetSequence.h │ │ ├── RACKVOChannel.h │ │ ├── RACKVOProxy.h │ │ ├── RACKVOTrampoline.h │ │ ├── RACMulticastConnection.h │ │ ├── RACObjCRuntime.h │ │ ├── RACPassthroughSubscriber.h │ │ ├── RACQueueScheduler+Subclass.h │ │ ├── RACQueueScheduler.h │ │ ├── RACReplaySubject.h │ │ ├── RACReturnSignal.h │ │ ├── RACScheduler+Subclass.h │ │ ├── RACScheduler.h │ │ ├── RACScopedDisposable.h │ │ ├── RACSequence.h │ │ ├── RACSerialDisposable.h │ │ ├── RACSignal+Operations.h │ │ ├── RACSignal.h │ │ ├── RACSignalSequence.h │ │ ├── RACStream.h │ │ ├── RACStringSequence.h │ │ ├── RACSubject.h │ │ ├── RACSubscriber.h │ │ ├── RACSubscriptingAssignmentTrampoline.h │ │ ├── RACSubscriptionScheduler.h │ │ ├── RACTargetQueueScheduler.h │ │ ├── RACTestScheduler.h │ │ ├── RACTuple.h │ │ ├── RACTupleSequence.h │ │ ├── RACUnarySequence.h │ │ ├── RACUnit.h │ │ ├── RACValueTransformer.h │ │ ├── RACmetamacros.h │ │ ├── ReactiveCocoa.h │ │ ├── UIActionSheet+RACSignalSupport.h │ │ ├── UIAlertView+RACSignalSupport.h │ │ ├── UIBarButtonItem+RACCommandSupport.h │ │ ├── UIButton+RACCommandSupport.h │ │ ├── UICollectionReusableView+RACSignalSupport.h │ │ ├── UIControl+RACSignalSupport.h │ │ ├── UIControl+RACSignalSupportPrivate.h │ │ ├── UIDatePicker+RACSignalSupport.h │ │ ├── UIGestureRecognizer+RACSignalSupport.h │ │ ├── UIImagePickerController+RACSignalSupport.h │ │ ├── UIRefreshControl+RACCommandSupport.h │ │ ├── UISegmentedControl+RACSignalSupport.h │ │ ├── UISlider+RACSignalSupport.h │ │ ├── UIStepper+RACSignalSupport.h │ │ ├── UISwitch+RACSignalSupport.h │ │ ├── UITableViewCell+RACSignalSupport.h │ │ ├── UITableViewHeaderFooterView+RACSignalSupport.h │ │ ├── UITextField+RACSignalSupport.h │ │ └── UITextView+RACSignalSupport.h │ │ ├── SDWebImage │ │ ├── NSData+ImageContentType.h │ │ ├── SDImageCache.h │ │ ├── SDWebImageCompat.h │ │ ├── SDWebImageDecoder.h │ │ ├── SDWebImageDownloader.h │ │ ├── SDWebImageDownloaderOperation.h │ │ ├── SDWebImageManager.h │ │ ├── SDWebImageOperation.h │ │ ├── SDWebImagePrefetcher.h │ │ ├── UIButton+WebCache.h │ │ ├── UIImage+GIF.h │ │ ├── UIImage+MultiFormat.h │ │ ├── UIImageView+HighlightedWebCache.h │ │ ├── UIImageView+WebCache.h │ │ └── UIView+WebCacheOperation.h │ │ └── SVProgressHUD │ │ ├── SVIndefiniteAnimatedView.h │ │ └── SVProgressHUD.h │ ├── MJRefresh │ ├── LICENSE │ ├── MJRefresh │ │ ├── Base │ │ │ ├── MJRefreshAutoFooter.h │ │ │ ├── MJRefreshAutoFooter.m │ │ │ ├── MJRefreshBackFooter.h │ │ │ ├── MJRefreshBackFooter.m │ │ │ ├── MJRefreshComponent.h │ │ │ ├── MJRefreshComponent.m │ │ │ ├── MJRefreshFooter.h │ │ │ ├── MJRefreshFooter.m │ │ │ ├── MJRefreshHeader.h │ │ │ └── MJRefreshHeader.m │ │ ├── Custom │ │ │ ├── Footer │ │ │ │ ├── Auto │ │ │ │ │ ├── MJRefreshAutoGifFooter.h │ │ │ │ │ ├── MJRefreshAutoGifFooter.m │ │ │ │ │ ├── MJRefreshAutoNormalFooter.h │ │ │ │ │ ├── MJRefreshAutoNormalFooter.m │ │ │ │ │ ├── MJRefreshAutoStateFooter.h │ │ │ │ │ └── MJRefreshAutoStateFooter.m │ │ │ │ └── Back │ │ │ │ │ ├── MJRefreshBackGifFooter.h │ │ │ │ │ ├── MJRefreshBackGifFooter.m │ │ │ │ │ ├── MJRefreshBackNormalFooter.h │ │ │ │ │ ├── MJRefreshBackNormalFooter.m │ │ │ │ │ ├── MJRefreshBackStateFooter.h │ │ │ │ │ └── MJRefreshBackStateFooter.m │ │ │ └── Header │ │ │ │ ├── MJRefreshGifHeader.h │ │ │ │ ├── MJRefreshGifHeader.m │ │ │ │ ├── MJRefreshNormalHeader.h │ │ │ │ ├── MJRefreshNormalHeader.m │ │ │ │ ├── MJRefreshStateHeader.h │ │ │ │ └── MJRefreshStateHeader.m │ │ ├── MJRefresh.bundle │ │ │ └── arrow@2x.png │ │ ├── MJRefresh.h │ │ ├── MJRefreshConst.h │ │ ├── MJRefreshConst.m │ │ ├── UIScrollView+MJExtension.h │ │ ├── UIScrollView+MJExtension.m │ │ ├── UIScrollView+MJRefresh.h │ │ ├── UIScrollView+MJRefresh.m │ │ ├── UIView+MJExtension.h │ │ └── UIView+MJExtension.m │ └── README.md │ ├── Manifest.lock │ ├── Mantle │ ├── LICENSE.md │ ├── Mantle │ │ ├── MTLJSONAdapter.h │ │ ├── MTLJSONAdapter.m │ │ ├── MTLModel+NSCoding.h │ │ ├── MTLModel+NSCoding.m │ │ ├── MTLModel.h │ │ ├── MTLModel.m │ │ ├── MTLReflection.h │ │ ├── MTLReflection.m │ │ ├── MTLTransformerErrorHandling.h │ │ ├── MTLTransformerErrorHandling.m │ │ ├── MTLValueTransformer.h │ │ ├── MTLValueTransformer.m │ │ ├── Mantle.h │ │ ├── NSArray+MTLManipulationAdditions.h │ │ ├── NSArray+MTLManipulationAdditions.m │ │ ├── NSDictionary+MTLJSONKeyPath.h │ │ ├── NSDictionary+MTLJSONKeyPath.m │ │ ├── NSDictionary+MTLManipulationAdditions.h │ │ ├── NSDictionary+MTLManipulationAdditions.m │ │ ├── NSDictionary+MTLMappingAdditions.h │ │ ├── NSDictionary+MTLMappingAdditions.m │ │ ├── NSError+MTLModelException.h │ │ ├── NSError+MTLModelException.m │ │ ├── NSObject+MTLComparisonAdditions.h │ │ ├── NSObject+MTLComparisonAdditions.m │ │ ├── NSValueTransformer+MTLInversionAdditions.h │ │ ├── NSValueTransformer+MTLInversionAdditions.m │ │ ├── NSValueTransformer+MTLPredefinedTransformerAdditions.h │ │ ├── NSValueTransformer+MTLPredefinedTransformerAdditions.m │ │ └── extobjc │ │ │ ├── EXTKeyPathCoding.h │ │ │ ├── EXTRuntimeExtensions.h │ │ │ ├── EXTRuntimeExtensions.m │ │ │ ├── EXTScope.h │ │ │ ├── EXTScope.m │ │ │ └── metamacros.h │ └── README.md │ ├── Masonry │ ├── LICENSE │ ├── Masonry │ │ ├── MASCompositeConstraint.h │ │ ├── MASCompositeConstraint.m │ │ ├── MASConstraint+Private.h │ │ ├── MASConstraint.h │ │ ├── MASConstraint.m │ │ ├── MASConstraintMaker.h │ │ ├── MASConstraintMaker.m │ │ ├── MASLayoutConstraint.h │ │ ├── MASLayoutConstraint.m │ │ ├── MASUtilities.h │ │ ├── MASViewAttribute.h │ │ ├── MASViewAttribute.m │ │ ├── MASViewConstraint.h │ │ ├── MASViewConstraint.m │ │ ├── Masonry.h │ │ ├── NSArray+MASAdditions.h │ │ ├── NSArray+MASAdditions.m │ │ ├── NSArray+MASShorthandAdditions.h │ │ ├── NSLayoutConstraint+MASDebugAdditions.h │ │ ├── NSLayoutConstraint+MASDebugAdditions.m │ │ ├── View+MASAdditions.h │ │ ├── View+MASAdditions.m │ │ ├── View+MASShorthandAdditions.h │ │ ├── ViewController+MASAdditions.h │ │ └── ViewController+MASAdditions.m │ └── README.md │ ├── Pods.xcodeproj │ └── project.pbxproj │ ├── ReactiveCocoa │ ├── LICENSE.md │ ├── README.md │ └── ReactiveCocoa │ │ ├── MKAnnotationView+RACSignalSupport.h │ │ ├── MKAnnotationView+RACSignalSupport.m │ │ ├── NSArray+RACSequenceAdditions.h │ │ ├── NSArray+RACSequenceAdditions.m │ │ ├── NSData+RACSupport.h │ │ ├── NSData+RACSupport.m │ │ ├── NSDictionary+RACSequenceAdditions.h │ │ ├── NSDictionary+RACSequenceAdditions.m │ │ ├── NSEnumerator+RACSequenceAdditions.h │ │ ├── NSEnumerator+RACSequenceAdditions.m │ │ ├── NSFileHandle+RACSupport.h │ │ ├── NSFileHandle+RACSupport.m │ │ ├── NSIndexSet+RACSequenceAdditions.h │ │ ├── NSIndexSet+RACSequenceAdditions.m │ │ ├── NSInvocation+RACTypeParsing.h │ │ ├── NSInvocation+RACTypeParsing.m │ │ ├── NSNotificationCenter+RACSupport.h │ │ ├── NSNotificationCenter+RACSupport.m │ │ ├── NSObject+RACDeallocating.h │ │ ├── NSObject+RACDeallocating.m │ │ ├── NSObject+RACDescription.h │ │ ├── NSObject+RACDescription.m │ │ ├── NSObject+RACKVOWrapper.h │ │ ├── NSObject+RACKVOWrapper.m │ │ ├── NSObject+RACLifting.h │ │ ├── NSObject+RACLifting.m │ │ ├── NSObject+RACPropertySubscribing.h │ │ ├── NSObject+RACPropertySubscribing.m │ │ ├── NSObject+RACSelectorSignal.h │ │ ├── NSObject+RACSelectorSignal.m │ │ ├── NSOrderedSet+RACSequenceAdditions.h │ │ ├── NSOrderedSet+RACSequenceAdditions.m │ │ ├── NSSet+RACSequenceAdditions.h │ │ ├── NSSet+RACSequenceAdditions.m │ │ ├── NSString+RACKeyPathUtilities.h │ │ ├── NSString+RACKeyPathUtilities.m │ │ ├── NSString+RACSequenceAdditions.h │ │ ├── NSString+RACSequenceAdditions.m │ │ ├── NSString+RACSupport.h │ │ ├── NSString+RACSupport.m │ │ ├── NSURLConnection+RACSupport.h │ │ ├── NSURLConnection+RACSupport.m │ │ ├── NSUserDefaults+RACSupport.h │ │ ├── NSUserDefaults+RACSupport.m │ │ ├── RACArraySequence.h │ │ ├── RACArraySequence.m │ │ ├── RACBehaviorSubject.h │ │ ├── RACBehaviorSubject.m │ │ ├── RACBlockTrampoline.h │ │ ├── RACBlockTrampoline.m │ │ ├── RACChannel.h │ │ ├── RACChannel.m │ │ ├── RACCommand.h │ │ ├── RACCommand.m │ │ ├── RACCompoundDisposable.h │ │ ├── RACCompoundDisposable.m │ │ ├── RACCompoundDisposableProvider.d │ │ ├── RACDelegateProxy.h │ │ ├── RACDelegateProxy.m │ │ ├── RACDisposable.h │ │ ├── RACDisposable.m │ │ ├── RACDynamicSequence.h │ │ ├── RACDynamicSequence.m │ │ ├── RACDynamicSignal.h │ │ ├── RACDynamicSignal.m │ │ ├── RACEagerSequence.h │ │ ├── RACEagerSequence.m │ │ ├── RACEmptySequence.h │ │ ├── RACEmptySequence.m │ │ ├── RACEmptySignal.h │ │ ├── RACEmptySignal.m │ │ ├── RACErrorSignal.h │ │ ├── RACErrorSignal.m │ │ ├── RACEvent.h │ │ ├── RACEvent.m │ │ ├── RACGroupedSignal.h │ │ ├── RACGroupedSignal.m │ │ ├── RACImmediateScheduler.h │ │ ├── RACImmediateScheduler.m │ │ ├── RACIndexSetSequence.h │ │ ├── RACIndexSetSequence.m │ │ ├── RACKVOChannel.h │ │ ├── RACKVOChannel.m │ │ ├── RACKVOProxy.h │ │ ├── RACKVOProxy.m │ │ ├── RACKVOTrampoline.h │ │ ├── RACKVOTrampoline.m │ │ ├── RACMulticastConnection+Private.h │ │ ├── RACMulticastConnection.h │ │ ├── RACMulticastConnection.m │ │ ├── RACObjCRuntime.h │ │ ├── RACObjCRuntime.m │ │ ├── RACPassthroughSubscriber.h │ │ ├── RACPassthroughSubscriber.m │ │ ├── RACQueueScheduler+Subclass.h │ │ ├── RACQueueScheduler.h │ │ ├── RACQueueScheduler.m │ │ ├── RACReplaySubject.h │ │ ├── RACReplaySubject.m │ │ ├── RACReturnSignal.h │ │ ├── RACReturnSignal.m │ │ ├── RACScheduler+Private.h │ │ ├── RACScheduler+Subclass.h │ │ ├── RACScheduler.h │ │ ├── RACScheduler.m │ │ ├── RACScopedDisposable.h │ │ ├── RACScopedDisposable.m │ │ ├── RACSequence.h │ │ ├── RACSequence.m │ │ ├── RACSerialDisposable.h │ │ ├── RACSerialDisposable.m │ │ ├── RACSignal+Operations.h │ │ ├── RACSignal+Operations.m │ │ ├── RACSignal.h │ │ ├── RACSignal.m │ │ ├── RACSignalProvider.d │ │ ├── RACSignalSequence.h │ │ ├── RACSignalSequence.m │ │ ├── RACStream+Private.h │ │ ├── RACStream.h │ │ ├── RACStream.m │ │ ├── RACStringSequence.h │ │ ├── RACStringSequence.m │ │ ├── RACSubject.h │ │ ├── RACSubject.m │ │ ├── RACSubscriber+Private.h │ │ ├── RACSubscriber.h │ │ ├── RACSubscriber.m │ │ ├── RACSubscriptingAssignmentTrampoline.h │ │ ├── RACSubscriptingAssignmentTrampoline.m │ │ ├── RACSubscriptionScheduler.h │ │ ├── RACSubscriptionScheduler.m │ │ ├── RACTargetQueueScheduler.h │ │ ├── RACTargetQueueScheduler.m │ │ ├── RACTestScheduler.h │ │ ├── RACTestScheduler.m │ │ ├── RACTuple.h │ │ ├── RACTuple.m │ │ ├── RACTupleSequence.h │ │ ├── RACTupleSequence.m │ │ ├── RACUnarySequence.h │ │ ├── RACUnarySequence.m │ │ ├── RACUnit.h │ │ ├── RACUnit.m │ │ ├── RACValueTransformer.h │ │ ├── RACValueTransformer.m │ │ ├── ReactiveCocoa.h │ │ ├── UIActionSheet+RACSignalSupport.h │ │ ├── UIActionSheet+RACSignalSupport.m │ │ ├── UIAlertView+RACSignalSupport.h │ │ ├── UIAlertView+RACSignalSupport.m │ │ ├── UIBarButtonItem+RACCommandSupport.h │ │ ├── UIBarButtonItem+RACCommandSupport.m │ │ ├── UIButton+RACCommandSupport.h │ │ ├── UIButton+RACCommandSupport.m │ │ ├── UICollectionReusableView+RACSignalSupport.h │ │ ├── UICollectionReusableView+RACSignalSupport.m │ │ ├── UIControl+RACSignalSupport.h │ │ ├── UIControl+RACSignalSupport.m │ │ ├── UIControl+RACSignalSupportPrivate.h │ │ ├── UIControl+RACSignalSupportPrivate.m │ │ ├── UIDatePicker+RACSignalSupport.h │ │ ├── UIDatePicker+RACSignalSupport.m │ │ ├── UIGestureRecognizer+RACSignalSupport.h │ │ ├── UIGestureRecognizer+RACSignalSupport.m │ │ ├── UIImagePickerController+RACSignalSupport.h │ │ ├── UIImagePickerController+RACSignalSupport.m │ │ ├── UIRefreshControl+RACCommandSupport.h │ │ ├── UIRefreshControl+RACCommandSupport.m │ │ ├── UISegmentedControl+RACSignalSupport.h │ │ ├── UISegmentedControl+RACSignalSupport.m │ │ ├── UISlider+RACSignalSupport.h │ │ ├── UISlider+RACSignalSupport.m │ │ ├── UIStepper+RACSignalSupport.h │ │ ├── UIStepper+RACSignalSupport.m │ │ ├── UISwitch+RACSignalSupport.h │ │ ├── UISwitch+RACSignalSupport.m │ │ ├── UITableViewCell+RACSignalSupport.h │ │ ├── UITableViewCell+RACSignalSupport.m │ │ ├── UITableViewHeaderFooterView+RACSignalSupport.h │ │ ├── UITableViewHeaderFooterView+RACSignalSupport.m │ │ ├── UITextField+RACSignalSupport.h │ │ ├── UITextField+RACSignalSupport.m │ │ ├── UITextView+RACSignalSupport.h │ │ ├── UITextView+RACSignalSupport.m │ │ └── extobjc │ │ ├── RACEXTKeyPathCoding.h │ │ ├── RACEXTRuntimeExtensions.h │ │ ├── RACEXTRuntimeExtensions.m │ │ ├── RACEXTScope.h │ │ └── RACmetamacros.h │ ├── 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 │ ├── LICENSE.txt │ ├── README.md │ └── SVProgressHUD │ │ ├── SVIndefiniteAnimatedView.h │ │ ├── SVIndefiniteAnimatedView.m │ │ ├── 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 │ └── Target Support Files │ ├── AFNetworking │ ├── AFNetworking-dummy.m │ ├── AFNetworking-prefix.pch │ └── AFNetworking.xcconfig │ ├── MJRefresh │ ├── MJRefresh-dummy.m │ ├── MJRefresh-prefix.pch │ └── MJRefresh.xcconfig │ ├── Mantle │ ├── Mantle-dummy.m │ ├── Mantle-prefix.pch │ └── Mantle.xcconfig │ ├── Masonry │ ├── Masonry-dummy.m │ ├── Masonry-prefix.pch │ └── Masonry.xcconfig │ ├── Pods-LZBYKLive │ ├── Pods-LZBYKLive-acknowledgements.markdown │ ├── Pods-LZBYKLive-acknowledgements.plist │ ├── Pods-LZBYKLive-dummy.m │ ├── Pods-LZBYKLive-frameworks.sh │ ├── Pods-LZBYKLive-resources.sh │ ├── Pods-LZBYKLive.debug.xcconfig │ └── Pods-LZBYKLive.release.xcconfig │ ├── ReactiveCocoa │ ├── ReactiveCocoa-dummy.m │ ├── ReactiveCocoa-prefix.pch │ └── ReactiveCocoa.xcconfig │ ├── SDWebImage │ ├── SDWebImage-dummy.m │ ├── SDWebImage-prefix.pch │ └── SDWebImage.xcconfig │ └── SVProgressHUD │ ├── SVProgressHUD-dummy.m │ ├── SVProgressHUD-prefix.pch │ └── SVProgressHUD.xcconfig └── README.md /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/.DS_Store -------------------------------------------------------------------------------- /LZBYKLive/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/.DS_Store -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/.DS_Store -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Base.lproj/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Base.lproj/.DS_Store -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Categrories/UIDevice+Extension.h: -------------------------------------------------------------------------------- 1 | // 2 | // UIDevice+Extension.h 3 | // LZBYKLive 4 | // 5 | // Created by zibin on 16/9/18. 6 | // Copyright © 2016年 刘子彬(更多项目源码分享平台“开发者源代码” 微信号:developerCode 作者简介:iOS开发者,喜爱交流分享). All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface UIDevice (Extension) 12 | 13 | /** 14 | * 获得设备类型 15 | */ 16 | + (NSString *)deviceType; 17 | @end 18 | -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Common/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Common/.DS_Store -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Common/Base/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Common/Base/.DS_Store -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Common/Base/Model/BaseDBModel.h: -------------------------------------------------------------------------------- 1 | // 2 | // BaseDBModel.h 3 | // LZBYKLive 4 | // 5 | // Created by zibin on 16/9/2. 6 | // Copyright © 2016年 刘子彬(更多项目源码分享平台“开发者源代码” 微信号:developerCode 作者简介:iOS开发者,喜爱交流分享). All rights reserved. 7 | // 8 | 9 | #import "BaseModel.h" 10 | 11 | @interface BaseDBModel : BaseModel 12 | 13 | 14 | /** 15 | * 保存模型到数据库 16 | */ 17 | - (void)sql_saveToDataBase; 18 | 19 | /** 20 | * 删除模型到数据库 21 | */ 22 | - (void)sql_deleteToDataBase; 23 | 24 | /** 25 | * 更新模型到数据库 26 | */ 27 | - (void)sql_updateToDataBase; 28 | @end 29 | -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Common/Base/Model/BaseInterfaceDM.h: -------------------------------------------------------------------------------- 1 | // 2 | // BaseInterfaceDM.h 3 | // LZBYKLive 4 | // 5 | // Created by zibin on 16/9/1. 6 | // Copyright © 2016年 刘子彬(更多项目源码分享平台“开发者源代码” 微信号:developerCode 作者简介:iOS开发者,喜爱交流分享). All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface BaseInterfaceDM : NSObject 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Common/Base/Model/BaseInterfaceDM.m: -------------------------------------------------------------------------------- 1 | // 2 | // BaseInterfaceDM.m 3 | // LZBYKLive 4 | // 5 | // Created by zibin on 16/9/1. 6 | // Copyright © 2016年 刘子彬(更多项目源码分享平台“开发者源代码” 微信号:developerCode 作者简介:iOS开发者,喜爱交流分享). All rights reserved. 7 | // 8 | 9 | #import "BaseInterfaceDM.h" 10 | 11 | @implementation BaseInterfaceDM 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Common/Base/Model/BaseModel.h: -------------------------------------------------------------------------------- 1 | // 2 | // BaseModel.h 3 | // LZBYKLive 4 | // 5 | // Created by zibin on 16/8/30. 6 | // Copyright © 2016年 刘子彬(更多项目源码分享平台“开发者源代码” 微信号:developerCode 作者简介:iOS开发者,喜爱交流分享). All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface BaseModel : MTLModel 12 | 13 | /** 14 | * 模型转化为字典 15 | */ 16 | - (NSDictionary *)modelToDictionary; 17 | 18 | 19 | /** 20 | * 字典转化模型 (属性值一一对应) 21 | */ 22 | + (NSDictionary *)JSONKeyPathsByPropertyKey; 23 | @end 24 | -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Common/Base/ViewController/BaseNC.h: -------------------------------------------------------------------------------- 1 | // 2 | // BaseNC.h 3 | // LZBYKLive 4 | // 5 | // Created by zibin on 16/8/31. 6 | // Copyright © 2016年 刘子彬(更多项目源码分享平台“开发者源代码” 微信号:developerCode 作者简介:iOS开发者,喜爱交流分享). All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface BaseNC : UINavigationController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Common/Base/ViewController/BaseTC.h: -------------------------------------------------------------------------------- 1 | // 2 | // BaseTC.h 3 | // LZBYKLive 4 | // 5 | // Created by zibin on 16/8/31. 6 | // Copyright © 2016年 刘子彬(更多项目源码分享平台“开发者源代码” 微信号:developerCode 作者简介:iOS开发者,喜爱交流分享). All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface BaseTC : UITabBarController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Common/Base/ViewController/BaseTC.m: -------------------------------------------------------------------------------- 1 | // 2 | // BaseTC.m 3 | // LZBYKLive 4 | // 5 | // Created by zibin on 16/8/31. 6 | // Copyright © 2016年 刘子彬(更多项目源码分享平台“开发者源代码” 微信号:developerCode 作者简介:iOS开发者,喜爱交流分享). All rights reserved. 7 | // 8 | 9 | #import "BaseTC.h" 10 | 11 | @implementation BaseTC 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Common/Constants/UITypes.h: -------------------------------------------------------------------------------- 1 | // 2 | // UITypes.h 3 | // LZBYKLive 4 | // 5 | // Created by zibin on 16/9/2. 6 | // Copyright © 2016年 刘子彬(更多项目源码分享平台“开发者源代码” 微信号:developerCode 作者简介:iOS开发者,喜爱交流分享). All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | typedef NS_ENUM(NSInteger, eUserRegisterType) 12 | { 13 | eUserRegisterType_Phone, 14 | eUserRegisterType_WeiXin, 15 | eUserRegisterType_WeiBo, 16 | eUserRegisterType_QQ, 17 | }; -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Common/Constants/UITypes.m: -------------------------------------------------------------------------------- 1 | // 2 | // UITypes.m 3 | // LZBYKLive 4 | // 5 | // Created by zibin on 16/9/2. 6 | // Copyright © 2016年 刘子彬(更多项目源码分享平台“开发者源代码” 微信号:developerCode 作者简介:iOS开发者,喜爱交流分享). All rights reserved. 7 | // 8 | 9 | #import "UITypes.h" 10 | -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Common/CustomView/LZBYKAutoFooter.h: -------------------------------------------------------------------------------- 1 | // 2 | // LZBYKAutoFooter.h 3 | // LZBYKLive 4 | // 5 | // Created by zibin on 16/9/21. 6 | // Copyright © 2016年 刘子彬(更多项目源码分享平台“开发者源代码” 微信号:developerCode 作者简介:iOS开发者,喜爱交流分享). All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface LZBYKAutoFooter : MJRefreshAutoFooter 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Common/CustomView/LZBYKAutoFooter.m: -------------------------------------------------------------------------------- 1 | // 2 | // LZBYKAutoFooter.m 3 | // LZBYKLive 4 | // 5 | // Created by zibin on 16/9/21. 6 | // Copyright © 2016年 刘子彬(更多项目源码分享平台“开发者源代码” 微信号:developerCode 作者简介:iOS开发者,喜爱交流分享). All rights reserved. 7 | // 8 | 9 | #import "LZBYKAutoFooter.h" 10 | 11 | @implementation LZBYKAutoFooter 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Common/CustomView/LZBYKGifHeader.h: -------------------------------------------------------------------------------- 1 | // 2 | // LZBYKGifHeader.h 3 | // LZBYKLive 4 | // 5 | // Created by zibin on 16/9/21. 6 | // Copyright © 2016年 刘子彬(更多项目源码分享平台“开发者源代码” 微信号:developerCode 作者简介:iOS开发者,喜爱交流分享). All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface LZBYKGifHeader : MJRefreshGifHeader 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Common/CustomView/LZBYKTabBar.h: -------------------------------------------------------------------------------- 1 | // 2 | // LZBYKTabBar.h 3 | // LZBYKLive 4 | // 5 | // Created by zibin on 16/9/13. 6 | // Copyright © 2016年 刘子彬(更多项目源码分享平台“开发者源代码” 微信号:developerCode 作者简介:iOS开发者,喜爱交流分享). All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | 12 | @interface LZBYKTabBar : UITabBar 13 | 14 | @property (nonatomic, copy) void(^tabBarCenterClickBlcok)(); 15 | 16 | - (void)setTabBarCenterClickBlcok:(void (^)())tabBarCenterClickBlcok; 17 | 18 | @end 19 | -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Common/Network/BaseModel/BaseHttpModel.h: -------------------------------------------------------------------------------- 1 | // 2 | // BaseHttpModel.h 3 | // LZBYKLive 4 | // 5 | // Created by zibin on 16/8/30. 6 | // Copyright © 2016年 刘子彬(更多项目源码分享平台“开发者源代码” 微信号:developerCode 作者简介:iOS开发者,喜爱交流分享). All rights reserved. 7 | // 8 | 9 | #import "BaseModel.h" 10 | 11 | @interface BaseHttpModel : BaseModel 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Common/Network/BaseModel/BaseHttpModel.m: -------------------------------------------------------------------------------- 1 | // 2 | // BaseHttpModel.m 3 | // LZBYKLive 4 | // 5 | // Created by zibin on 16/8/30. 6 | // Copyright © 2016年 刘子彬(更多项目源码分享平台“开发者源代码” 微信号:developerCode 作者简介:iOS开发者,喜爱交流分享). All rights reserved. 7 | // 8 | 9 | #import "BaseHttpModel.h" 10 | 11 | @implementation BaseHttpModel 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Common/Network/BaseModel/BaseResponseModel.h: -------------------------------------------------------------------------------- 1 | // 2 | // BaseResponseModel.h 3 | // LZBYKLive 4 | // 5 | // Created by zibin on 16/8/30. 6 | // Copyright © 2016年 刘子彬(更多项目源码分享平台“开发者源代码” 微信号:developerCode 作者简介:iOS开发者,喜爱交流分享). All rights reserved. 7 | // 8 | 9 | #import "BaseModel.h" 10 | 11 | @interface BaseResponseModel : BaseModel 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Common/Network/BaseModel/BaseResponseModel.m: -------------------------------------------------------------------------------- 1 | // 2 | // BaseResponseModel.m 3 | // LZBYKLive 4 | // 5 | // Created by zibin on 16/8/30. 6 | // Copyright © 2016年 刘子彬(更多项目源码分享平台“开发者源代码” 微信号:developerCode 作者简介:iOS开发者,喜爱交流分享). All rights reserved. 7 | // 8 | 9 | #import "BaseResponseModel.h" 10 | 11 | @implementation BaseResponseModel 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Common/Network/BaseModel/BaseResquestModel.m: -------------------------------------------------------------------------------- 1 | // 2 | // BaseResquestModel.m 3 | // LZBYKLive 4 | // 5 | // Created by zibin on 16/8/30. 6 | // Copyright © 2016年 刘子彬(更多项目源码分享平台“开发者源代码” 微信号:developerCode 作者简介:iOS开发者,喜爱交流分享). All rights reserved. 7 | // 8 | 9 | #import "BaseResquestModel.h" 10 | 11 | @implementation BaseResquestModel 12 | 13 | - (NSDictionary *)modelToBaseResquestModel 14 | { 15 | return [self modelToDictionary]; 16 | } 17 | @end 18 | -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Common/Tool/RecordTool/LZBRecordProcessView.h: -------------------------------------------------------------------------------- 1 | // 2 | // LZBRecordProcessView.h 3 | // LZBRecordingVideo 4 | // 5 | // Created by Apple on 2017/2/26. 6 | // Copyright © 2017年 子彬. All rights reserved. 7 | // 8 | 9 | #import 10 | #define lineWith 5 11 | 12 | @interface LZBRecordProcessView : UIView 13 | 14 | //初始化 15 | - (instancetype)initWithCenter:(CGPoint )center radius:(CGFloat)radius; 16 | 17 | @property (nonatomic, assign) CGFloat progress; 18 | @end 19 | -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Common/config.h: -------------------------------------------------------------------------------- 1 | // 2 | // config.h 3 | // LZBYKLive 4 | // 5 | // Created by zibin on 16/9/20. 6 | // Copyright © 2016年 刘子彬(更多项目源码分享平台“开发者源代码” 微信号:developerCode 作者简介:iOS开发者,喜爱交流分享). All rights reserved. 7 | // 8 | 9 | #ifndef config_h 10 | #define config_h 11 | 12 | //默认API 13 | #define KSDefaultBase_URL @"http://service.ingkee.com/" 14 | 15 | #define kDefaultAPI_Main(api) [NSString stringWithFormat:@"%@api/live/gettop?%@",KSDefaultBase_URL,api] 16 | 17 | 18 | #endif /* config_h */ 19 | -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Library/ShareSDK/PlatformSDK/QQSDK/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Library/ShareSDK/PlatformSDK/QQSDK/.DS_Store -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Library/ShareSDK/PlatformSDK/QQSDK/TencentOpenAPI.framework/Resources/ios_open_sdk_3.1.0.3_iphone: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Library/ShareSDK/PlatformSDK/QQSDK/TencentOpenAPI.framework/Resources/ios_open_sdk_3.1.0.3_iphone -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Library/ShareSDK/PlatformSDK/QQSDK/TencentOpenAPI.framework/TencentOpenAPI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Library/ShareSDK/PlatformSDK/QQSDK/TencentOpenAPI.framework/TencentOpenAPI -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Library/ShareSDK/PlatformSDK/QQSDK/TencentOpenApi_IOS_Bundle.bundle/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Library/ShareSDK/PlatformSDK/QQSDK/TencentOpenApi_IOS_Bundle.bundle/error.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Library/ShareSDK/PlatformSDK/QQSDK/TencentOpenApi_IOS_Bundle.bundle/qqicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Library/ShareSDK/PlatformSDK/QQSDK/TencentOpenApi_IOS_Bundle.bundle/qqicon.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Library/ShareSDK/PlatformSDK/QQSDK/TencentOpenApi_IOS_Bundle.bundle/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Library/ShareSDK/PlatformSDK/QQSDK/TencentOpenApi_IOS_Bundle.bundle/success.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Library/ShareSDK/PlatformSDK/SinaWeiboSDK/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Library/ShareSDK/PlatformSDK/SinaWeiboSDK/.DS_Store -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Library/ShareSDK/PlatformSDK/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 | -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Library/ShareSDK/PlatformSDK/SinaWeiboSDK/WeiboSDK.bundle/images/alert_error_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Library/ShareSDK/PlatformSDK/SinaWeiboSDK/WeiboSDK.bundle/images/alert_error_icon@2x.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Library/ShareSDK/PlatformSDK/SinaWeiboSDK/WeiboSDK.bundle/images/alert_success_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Library/ShareSDK/PlatformSDK/SinaWeiboSDK/WeiboSDK.bundle/images/alert_success_icon@2x.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Library/ShareSDK/PlatformSDK/SinaWeiboSDK/WeiboSDK.bundle/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Library/ShareSDK/PlatformSDK/SinaWeiboSDK/WeiboSDK.bundle/images/close.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Library/ShareSDK/PlatformSDK/SinaWeiboSDK/WeiboSDK.bundle/images/close@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Library/ShareSDK/PlatformSDK/SinaWeiboSDK/WeiboSDK.bundle/images/close@2x.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Library/ShareSDK/PlatformSDK/SinaWeiboSDK/WeiboSDK.bundle/images/common_button_big_blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Library/ShareSDK/PlatformSDK/SinaWeiboSDK/WeiboSDK.bundle/images/common_button_big_blue@2x.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Library/ShareSDK/PlatformSDK/SinaWeiboSDK/WeiboSDK.bundle/images/common_button_big_blue_disable@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Library/ShareSDK/PlatformSDK/SinaWeiboSDK/WeiboSDK.bundle/images/common_button_big_blue_disable@2x.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Library/ShareSDK/PlatformSDK/SinaWeiboSDK/WeiboSDK.bundle/images/common_button_big_blue_highlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Library/ShareSDK/PlatformSDK/SinaWeiboSDK/WeiboSDK.bundle/images/common_button_big_blue_highlighted@2x.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Library/ShareSDK/PlatformSDK/SinaWeiboSDK/WeiboSDK.bundle/images/common_button_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Library/ShareSDK/PlatformSDK/SinaWeiboSDK/WeiboSDK.bundle/images/common_button_white.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Library/ShareSDK/PlatformSDK/SinaWeiboSDK/WeiboSDK.bundle/images/common_button_white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Library/ShareSDK/PlatformSDK/SinaWeiboSDK/WeiboSDK.bundle/images/common_button_white@2x.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Library/ShareSDK/PlatformSDK/SinaWeiboSDK/WeiboSDK.bundle/images/common_button_white_highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Library/ShareSDK/PlatformSDK/SinaWeiboSDK/WeiboSDK.bundle/images/common_button_white_highlighted.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Library/ShareSDK/PlatformSDK/SinaWeiboSDK/WeiboSDK.bundle/images/common_button_white_highlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Library/ShareSDK/PlatformSDK/SinaWeiboSDK/WeiboSDK.bundle/images/common_button_white_highlighted@2x.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Library/ShareSDK/PlatformSDK/SinaWeiboSDK/WeiboSDK.bundle/images/common_icon_arrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Library/ShareSDK/PlatformSDK/SinaWeiboSDK/WeiboSDK.bundle/images/common_icon_arrow@2x.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Library/ShareSDK/PlatformSDK/SinaWeiboSDK/WeiboSDK.bundle/images/compose_keyboardbutton_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Library/ShareSDK/PlatformSDK/SinaWeiboSDK/WeiboSDK.bundle/images/compose_keyboardbutton_background.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Library/ShareSDK/PlatformSDK/SinaWeiboSDK/WeiboSDK.bundle/images/compose_keyboardbutton_background@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Library/ShareSDK/PlatformSDK/SinaWeiboSDK/WeiboSDK.bundle/images/compose_keyboardbutton_background@2x.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Library/ShareSDK/PlatformSDK/SinaWeiboSDK/WeiboSDK.bundle/images/compose_toolbar_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Library/ShareSDK/PlatformSDK/SinaWeiboSDK/WeiboSDK.bundle/images/compose_toolbar_background.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Library/ShareSDK/PlatformSDK/SinaWeiboSDK/WeiboSDK.bundle/images/compose_toolbar_background@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Library/ShareSDK/PlatformSDK/SinaWeiboSDK/WeiboSDK.bundle/images/compose_toolbar_background@2x.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Library/ShareSDK/PlatformSDK/SinaWeiboSDK/WeiboSDK.bundle/images/empty_failed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Library/ShareSDK/PlatformSDK/SinaWeiboSDK/WeiboSDK.bundle/images/empty_failed.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Library/ShareSDK/PlatformSDK/SinaWeiboSDK/WeiboSDK.bundle/images/empty_failed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Library/ShareSDK/PlatformSDK/SinaWeiboSDK/WeiboSDK.bundle/images/empty_failed@2x.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Library/ShareSDK/PlatformSDK/SinaWeiboSDK/WeiboSDK.bundle/images/login_background@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Library/ShareSDK/PlatformSDK/SinaWeiboSDK/WeiboSDK.bundle/images/login_background@2x.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Library/ShareSDK/PlatformSDK/SinaWeiboSDK/WeiboSDK.bundle/images/login_country_background@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Library/ShareSDK/PlatformSDK/SinaWeiboSDK/WeiboSDK.bundle/images/login_country_background@2x.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Library/ShareSDK/PlatformSDK/SinaWeiboSDK/WeiboSDK.bundle/images/login_country_background_highlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Library/ShareSDK/PlatformSDK/SinaWeiboSDK/WeiboSDK.bundle/images/login_country_background_highlighted@2x.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Library/ShareSDK/PlatformSDK/SinaWeiboSDK/WeiboSDK.bundle/images/navigationbar_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Library/ShareSDK/PlatformSDK/SinaWeiboSDK/WeiboSDK.bundle/images/navigationbar_background.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Library/ShareSDK/PlatformSDK/SinaWeiboSDK/WeiboSDK.bundle/images/navigationbar_background@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Library/ShareSDK/PlatformSDK/SinaWeiboSDK/WeiboSDK.bundle/images/navigationbar_background@2x.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Library/ShareSDK/PlatformSDK/SinaWeiboSDK/WeiboSDK.bundle/images/navigationbar_background_os7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Library/ShareSDK/PlatformSDK/SinaWeiboSDK/WeiboSDK.bundle/images/navigationbar_background_os7.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Library/ShareSDK/PlatformSDK/SinaWeiboSDK/WeiboSDK.bundle/images/navigationbar_background_os7@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Library/ShareSDK/PlatformSDK/SinaWeiboSDK/WeiboSDK.bundle/images/navigationbar_background_os7@2x.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Library/ShareSDK/PlatformSDK/SinaWeiboSDK/WeiboSDK.bundle/images/progresshud_background@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Library/ShareSDK/PlatformSDK/SinaWeiboSDK/WeiboSDK.bundle/images/progresshud_background@2x.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Library/ShareSDK/PlatformSDK/SinaWeiboSDK/WeiboSDK.bundle/images/sdk_weibo_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Library/ShareSDK/PlatformSDK/SinaWeiboSDK/WeiboSDK.bundle/images/sdk_weibo_logo.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Library/ShareSDK/PlatformSDK/SinaWeiboSDK/WeiboSDK.bundle/images/sdk_weibo_logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Library/ShareSDK/PlatformSDK/SinaWeiboSDK/WeiboSDK.bundle/images/sdk_weibo_logo@2x.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Library/ShareSDK/PlatformSDK/SinaWeiboSDK/WeiboSDK.bundle/images/sdk_weibo_logo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Library/ShareSDK/PlatformSDK/SinaWeiboSDK/WeiboSDK.bundle/images/sdk_weibo_logo@3x.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Library/ShareSDK/PlatformSDK/SinaWeiboSDK/WeiboSDK.bundle/images/timeline_relationship_icon_addattention.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Library/ShareSDK/PlatformSDK/SinaWeiboSDK/WeiboSDK.bundle/images/timeline_relationship_icon_addattention.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Library/ShareSDK/PlatformSDK/SinaWeiboSDK/WeiboSDK.bundle/images/timeline_relationship_icon_addattention@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Library/ShareSDK/PlatformSDK/SinaWeiboSDK/WeiboSDK.bundle/images/timeline_relationship_icon_addattention@2x.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Library/ShareSDK/PlatformSDK/SinaWeiboSDK/WeiboSDK.bundle/images/timeline_relationship_icon_addattention@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Library/ShareSDK/PlatformSDK/SinaWeiboSDK/WeiboSDK.bundle/images/timeline_relationship_icon_addattention@3x.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Library/ShareSDK/PlatformSDK/SinaWeiboSDK/WeiboSDK.bundle/images/timeline_relationship_icon_attention.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Library/ShareSDK/PlatformSDK/SinaWeiboSDK/WeiboSDK.bundle/images/timeline_relationship_icon_attention.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Library/ShareSDK/PlatformSDK/SinaWeiboSDK/WeiboSDK.bundle/images/timeline_relationship_icon_attention@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Library/ShareSDK/PlatformSDK/SinaWeiboSDK/WeiboSDK.bundle/images/timeline_relationship_icon_attention@2x.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Library/ShareSDK/PlatformSDK/SinaWeiboSDK/WeiboSDK.bundle/images/timeline_relationship_icon_attention@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Library/ShareSDK/PlatformSDK/SinaWeiboSDK/WeiboSDK.bundle/images/timeline_relationship_icon_attention@3x.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Library/ShareSDK/PlatformSDK/SinaWeiboSDK/WeiboSDK.bundle/images/verify_code_button@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Library/ShareSDK/PlatformSDK/SinaWeiboSDK/WeiboSDK.bundle/images/verify_code_button@2x.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Library/ShareSDK/PlatformSDK/SinaWeiboSDK/WeiboSDK.bundle/images/verify_code_button@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Library/ShareSDK/PlatformSDK/SinaWeiboSDK/WeiboSDK.bundle/images/verify_code_button@3x.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Library/ShareSDK/PlatformSDK/SinaWeiboSDK/WeiboSDK.bundle/images/verify_code_button_highlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Library/ShareSDK/PlatformSDK/SinaWeiboSDK/WeiboSDK.bundle/images/verify_code_button_highlighted@2x.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Library/ShareSDK/PlatformSDK/SinaWeiboSDK/WeiboSDK.bundle/images/verify_code_button_highlighted@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Library/ShareSDK/PlatformSDK/SinaWeiboSDK/WeiboSDK.bundle/images/verify_code_button_highlighted@3x.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Library/ShareSDK/PlatformSDK/SinaWeiboSDK/WeiboSDK.bundle/others/mfp.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Library/ShareSDK/PlatformSDK/SinaWeiboSDK/WeiboSDK.bundle/others/mfp.cer -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Library/ShareSDK/PlatformSDK/SinaWeiboSDK/libWeiboSDK.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Library/ShareSDK/PlatformSDK/SinaWeiboSDK/libWeiboSDK.a -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Library/ShareSDK/PlatformSDK/WeChatSDK/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Library/ShareSDK/PlatformSDK/WeChatSDK/.DS_Store -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Library/ShareSDK/PlatformSDK/WeChatSDK/libWeChatSDK.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Library/ShareSDK/PlatformSDK/WeChatSDK/libWeChatSDK.a -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Library/ShareSDK/Required/MOBFoundation.framework/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Library/ShareSDK/Required/MOBFoundation.framework/.DS_Store -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Library/ShareSDK/Required/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 | -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Library/ShareSDK/Required/MOBFoundation.framework/Headers/MOBFImageObserver.h: -------------------------------------------------------------------------------- 1 | // 2 | // MOBFImageObserver.h 3 | // MOBFoundation 4 | // 5 | // Created by fenghj on 16/1/21. 6 | // Copyright © 2016年 MOB. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | /** 12 | * 图片观察者 13 | */ 14 | @interface MOBFImageObserver : NSObject 15 | 16 | /** 17 | * 图片链接 18 | */ 19 | @property (nonatomic, strong, readonly) NSURL *url; 20 | 21 | @end 22 | -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Library/ShareSDK/Required/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 | -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Library/ShareSDK/Required/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 | -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Library/ShareSDK/Required/MOBFoundation.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Library/ShareSDK/Required/MOBFoundation.framework/Info.plist -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Library/ShareSDK/Required/MOBFoundation.framework/MOBFoundation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Library/ShareSDK/Required/MOBFoundation.framework/MOBFoundation -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Library/ShareSDK/Required/MOBFoundation.framework/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Library/ShareSDK/Required/MOBFoundation.framework/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Library/ShareSDK/Required/MOBFoundation.framework/readme: -------------------------------------------------------------------------------- 1 | ========================================= 2 | MOBFoundation.framework 3 | ========================================= 4 | 5 | 1、引用此库需要添加下面依赖库: 6 | libz.dylib 7 | libicucore.dylib 8 | 9 | -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Library/ShareSDK/Required/ShareSDKConnector.framework/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Library/ShareSDK/Required/ShareSDKConnector.framework/.DS_Store -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Library/ShareSDK/Required/ShareSDKConnector.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Library/ShareSDK/Required/ShareSDKConnector.framework/Info.plist -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Library/ShareSDK/Required/ShareSDKConnector.framework/ShareSDKConnector: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Library/ShareSDK/Required/ShareSDKConnector.framework/ShareSDKConnector -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Library/ShareSDK/Required/ShareSDKExtension.framework/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Library/ShareSDK/Required/ShareSDKExtension.framework/.DS_Store -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Library/ShareSDK/Required/ShareSDKExtension.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Library/ShareSDK/Required/ShareSDKExtension.framework/Info.plist -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Library/ShareSDK/Required/ShareSDKExtension.framework/ShareSDKExtension: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Library/ShareSDK/Required/ShareSDKExtension.framework/ShareSDKExtension -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Library/ShareSDK/ShareSDK.framework/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Library/ShareSDK/ShareSDK.framework/.DS_Store -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Library/ShareSDK/ShareSDK.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Library/ShareSDK/ShareSDK.framework/Info.plist -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Library/ShareSDK/ShareSDK.framework/ShareSDK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Library/ShareSDK/ShareSDK.framework/ShareSDK -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Modules/Center/Controller/LZBYKCenterViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // LZBYKCenterViewController.h 3 | // LZBYKLive 4 | // 5 | // Created by zibin on 16/9/13. 6 | // Copyright © 2016年 刘子彬(更多项目源码分享平台“开发者源代码” 微信号:developerCode 作者简介:iOS开发者,喜爱交流分享). All rights reserved. 7 | // 8 | 9 | #import "BaseVC.h" 10 | 11 | @interface LZBYKCenterViewController : BaseVC 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Modules/Center/Controller/LZBYKCenterViewController.m: -------------------------------------------------------------------------------- 1 | // 2 | // LZBYKCenterViewController.m 3 | // LZBYKLive 4 | // 5 | // Created by zibin on 16/9/13. 6 | // Copyright © 2016年 刘子彬(更多项目源码分享平台“开发者源代码” 微信号:developerCode 作者简介:iOS开发者,喜爱交流分享). All rights reserved. 7 | // 8 | 9 | #import "LZBYKCenterViewController.h" 10 | 11 | @implementation LZBYKCenterViewController 12 | 13 | 14 | - (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event 15 | { 16 | [self dismissViewControllerAnimated:YES completion:nil]; 17 | } 18 | @end 19 | -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Modules/Center/Model/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Modules/Center/Model/.DS_Store -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Modules/Center/Model/DM/LZBCenterInterfaceDM.h: -------------------------------------------------------------------------------- 1 | // 2 | // LZBCenterInterfaceDM.h 3 | // LZBYKLive 4 | // 5 | // Created by zibin on 16/9/13. 6 | // Copyright © 2016年 刘子彬(更多项目源码分享平台“开发者源代码” 微信号:developerCode 作者简介:iOS开发者,喜爱交流分享). All rights reserved. 7 | // 8 | 9 | #import "BaseInterfaceDM.h" 10 | #import "LZBYKCenterViewController.h" 11 | 12 | @interface LZBCenterInterfaceDM : BaseInterfaceDM 13 | 14 | /** 15 | * 跳转到中心控制器 16 | */ 17 | + (LZBYKCenterViewController *)c_instanceCenterViewController; 18 | @end 19 | -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Modules/Center/Model/DM/LZBCenterInterfaceDM.m: -------------------------------------------------------------------------------- 1 | // 2 | // LZBCenterInterfaceDM.m 3 | // LZBYKLive 4 | // 5 | // Created by zibin on 16/9/13. 6 | // Copyright © 2016年 刘子彬(更多项目源码分享平台“开发者源代码” 微信号:developerCode 作者简介:iOS开发者,喜爱交流分享). All rights reserved. 7 | // 8 | 9 | #import "LZBCenterInterfaceDM.h" 10 | 11 | 12 | @implementation LZBCenterInterfaceDM 13 | 14 | + (LZBYKCenterViewController *)c_instanceCenterViewController 15 | { 16 | return [[LZBYKCenterViewController alloc]init]; 17 | } 18 | @end 19 | -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Modules/Main/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Modules/Main/.DS_Store -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Modules/Main/Controller/LZBRecordVideoVC.h: -------------------------------------------------------------------------------- 1 | // 2 | // LZBRecordVideoVC.h 3 | // LZBRecordingVideo 4 | // 5 | // Created by Apple on 2017/2/26. 6 | // Copyright © 2017年 Apple. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface LZBRecordVideoVC : UIViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Modules/Main/Controller/LZBYKAttentionViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // LZBYKAttentionViewController.h 3 | // LZBYKLive 4 | // 5 | // Created by zibin on 16/9/18. 6 | // Copyright © 2016年 刘子彬(更多项目源码分享平台“开发者源代码” 微信号:developerCode 作者简介:iOS开发者,喜爱交流分享). All rights reserved. 7 | // 8 | 9 | 10 | @interface LZBYKAttentionViewController : UIViewController 11 | 12 | @end 13 | -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Modules/Main/Controller/LZBYKHotViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // LZBYKHotViewController.h 3 | // LZBYKLive 4 | // 5 | // Created by zibin on 16/9/18. 6 | // Copyright © 2016年 刘子彬(更多项目源码分享平台“开发者源代码” 微信号:developerCode 作者简介:iOS开发者,喜爱交流分享). All rights reserved. 7 | // 8 | 9 | @interface LZBYKHotViewController : UIViewController 10 | @end 11 | -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Modules/Main/Controller/LZBYKMainTabVC.h: -------------------------------------------------------------------------------- 1 | // 2 | // LZBYKMainTabVC.h 3 | // LZBYKLive 4 | // 5 | // Created by zibin on 16/9/13. 6 | // Copyright © 2016年 刘子彬(更多项目源码分享平台“开发者源代码” 微信号:developerCode 作者简介:iOS开发者,喜爱交流分享). All rights reserved. 7 | // 8 | 9 | #import "BaseTC.h" 10 | 11 | 12 | @interface LZBYKMainTabVC : BaseTC 13 | 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Modules/Main/Controller/LZBYKMainViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // LZBYKMainViewController.h 3 | // LZBYKLive 4 | // 5 | // Created by zibin on 16/9/13. 6 | // Copyright © 2016年 刘子彬(更多项目源码分享平台“开发者源代码” 微信号:developerCode 作者简介:iOS开发者,喜爱交流分享). All rights reserved. 7 | // 8 | 9 | #import "BaseVC.h" 10 | 11 | @interface LZBYKMainViewController : BaseVC 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Modules/Main/Controller/LZBYKNearViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // LZBYKNearViewController.h 3 | // LZBYKLive 4 | // 5 | // Created by zibin on 16/9/18. 6 | // Copyright © 2016年 刘子彬(更多项目源码分享平台“开发者源代码” 微信号:developerCode 作者简介:iOS开发者,喜爱交流分享). All rights reserved. 7 | // 8 | 9 | @interface LZBYKNearViewController : UIViewController 10 | 11 | @end 12 | -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Modules/Main/Model/LZBYKSlideStyleModel.m: -------------------------------------------------------------------------------- 1 | // 2 | // LZBYKSlideStyleModel.m 3 | // LZBYKLive 4 | // 5 | // Created by zibin on 16/9/18. 6 | // Copyright © 2016年 刘子彬(更多项目源码分享平台“开发者源代码” 微信号:developerCode 作者简介:iOS开发者,喜爱交流分享). All rights reserved. 7 | // 8 | 9 | #import "LZBYKSlideStyleModel.h" 10 | 11 | @implementation LZBYKSlideStyleModel 12 | 13 | 14 | - (NSMutableArray *)tiltes 15 | { 16 | if(_tiltes == nil) 17 | { 18 | _tiltes = [NSMutableArray array]; 19 | } 20 | return _tiltes; 21 | } 22 | @end 23 | -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Modules/Main/Resource/default_head@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Modules/Main/Resource/default_head@2x.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Modules/Main/Resource/default_head@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Modules/Main/Resource/default_head@3x.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Modules/Main/Resource/default_photo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Modules/Main/Resource/default_photo@2x.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Modules/Main/Resource/default_photo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Modules/Main/Resource/default_photo@3x.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Modules/Main/Resource/live_empty_bg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Modules/Main/Resource/live_empty_bg@2x.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Modules/Main/Resource/live_empty_bg@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Modules/Main/Resource/live_empty_bg@3x.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Modules/Main/Resource/live_tag_live@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Modules/Main/Resource/live_tag_live@2x.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Modules/Main/Resource/live_tag_live@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Modules/Main/Resource/live_tag_live@3x.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Modules/Main/Resource/me_other_followed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Modules/Main/Resource/me_other_followed@2x.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Modules/Main/Resource/me_other_followed@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Modules/Main/Resource/me_other_followed@3x.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Modules/Main/Resource/nearby_icon_now_live@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Modules/Main/Resource/nearby_icon_now_live@2x.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Modules/Main/Resource/nearby_icon_now_live@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Modules/Main/Resource/nearby_icon_now_live@3x.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Modules/Main/Resource/searchbar_search@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Modules/Main/Resource/searchbar_search@2x.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Modules/Main/Resource/searchbar_search@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Modules/Main/Resource/searchbar_search@3x.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Modules/Main/Resource/shortvideo_launch_close@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Modules/Main/Resource/shortvideo_launch_close@2x.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Modules/Main/Resource/shortvideo_launch_close@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Modules/Main/Resource/shortvideo_launch_close@3x.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Modules/Main/Resource/shortvideo_main_live@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Modules/Main/Resource/shortvideo_main_live@2x.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Modules/Main/Resource/shortvideo_main_live@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Modules/Main/Resource/shortvideo_main_live@3x.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Modules/Main/Resource/shortvideo_main_video@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Modules/Main/Resource/shortvideo_main_video@2x.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Modules/Main/Resource/shortvideo_main_video@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Modules/Main/Resource/shortvideo_main_video@3x.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Modules/Main/Resource/tab_launch@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Modules/Main/Resource/tab_launch@2x.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Modules/Main/Resource/tab_launch@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Modules/Main/Resource/tab_launch@3x.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Modules/Main/Resource/tab_live@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Modules/Main/Resource/tab_live@2x.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Modules/Main/Resource/tab_live@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Modules/Main/Resource/tab_live@3x.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Modules/Main/Resource/tab_live_p@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Modules/Main/Resource/tab_live_p@2x.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Modules/Main/Resource/tab_live_p@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Modules/Main/Resource/tab_live_p@3x.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Modules/Main/Resource/tab_me@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Modules/Main/Resource/tab_me@2x.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Modules/Main/Resource/tab_me@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Modules/Main/Resource/tab_me@3x.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Modules/Main/Resource/tab_me_p@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Modules/Main/Resource/tab_me_p@2x.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Modules/Main/Resource/tab_me_p@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Modules/Main/Resource/tab_me_p@3x.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Modules/Main/View/LZBYKMainNearHeadView.h: -------------------------------------------------------------------------------- 1 | // 2 | // LZBYKMainNearHeadView.h 3 | // LZBYKLive 4 | // 5 | // Created by zibin on 16/9/22. 6 | // Copyright © 2016年 刘子彬(更多项目源码分享平台“开发者源代码” 微信号:developerCode 作者简介:iOS开发者,喜爱交流分享). All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface LZBYKMainNearHeadView : UICollectionReusableView 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Modules/My/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Modules/My/.DS_Store -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Modules/My/Controller/LZBYKMyViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // LZBYKMyViewController.h 3 | // LZBYKLive 4 | // 5 | // Created by zibin on 16/9/13. 6 | // Copyright © 2016年 刘子彬(更多项目源码分享平台“开发者源代码” 微信号:developerCode 作者简介:iOS开发者,喜爱交流分享). All rights reserved. 7 | // 8 | 9 | #import "BaseVC.h" 10 | 11 | @interface LZBYKMyViewController : BaseVC 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Modules/My/Controller/LZBYKMyViewController.m: -------------------------------------------------------------------------------- 1 | // 2 | // LZBYKMyViewController.m 3 | // LZBYKLive 4 | // 5 | // Created by zibin on 16/9/13. 6 | // Copyright © 2016年 刘子彬(更多项目源码分享平台“开发者源代码” 微信号:developerCode 作者简介:iOS开发者,喜爱交流分享). All rights reserved. 7 | // 8 | 9 | #import "LZBYKMyViewController.h" 10 | 11 | @implementation LZBYKMyViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Modules/My/Model/DM/LZBMyInterfaceDM.h: -------------------------------------------------------------------------------- 1 | // 2 | // LZBMyInterfaceDM.h 3 | // LZBYKLive 4 | // 5 | // Created by zibin on 16/9/13. 6 | // Copyright © 2016年 刘子彬(更多项目源码分享平台“开发者源代码” 微信号:developerCode 作者简介:iOS开发者,喜爱交流分享). All rights reserved. 7 | // 8 | 9 | #import "BaseInterfaceDM.h" 10 | #import "LZBYKMyViewController.h" 11 | 12 | @interface LZBMyInterfaceDM : BaseInterfaceDM 13 | 14 | + (LZBYKMyViewController *)m_instanceMyViewController; 15 | @end 16 | -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Modules/My/Model/DM/LZBMyInterfaceDM.m: -------------------------------------------------------------------------------- 1 | // 2 | // LZBMyInterfaceDM.m 3 | // LZBYKLive 4 | // 5 | // Created by zibin on 16/9/13. 6 | // Copyright © 2016年 刘子彬(更多项目源码分享平台“开发者源代码” 微信号:developerCode 作者简介:iOS开发者,喜爱交流分享). All rights reserved. 7 | // 8 | 9 | #import "LZBMyInterfaceDM.h" 10 | 11 | @implementation LZBMyInterfaceDM 12 | 13 | + (LZBYKMyViewController *)m_instanceMyViewController 14 | { 15 | return [[LZBYKMyViewController alloc]init]; 16 | } 17 | @end 18 | -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Modules/Other/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Modules/Other/.DS_Store -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Modules/Other/Controller/LZBYKAdvertisementVC.h: -------------------------------------------------------------------------------- 1 | // 2 | // LZBYKAdvertisementVC.h 3 | // LZBYKLive 4 | // 5 | // Created by zibin on 16/9/7. 6 | // Copyright © 2016年 刘子彬(更多项目源码分享平台“开发者源代码” 微信号:developerCode 作者简介:iOS开发者,喜爱交流分享). All rights reserved. 7 | // 8 | 9 | #import "BaseVC.h" 10 | 11 | @interface LZBYKAdvertisementVC : BaseVC 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Modules/Other/Controller/LZBYKLoginVC.h: -------------------------------------------------------------------------------- 1 | // 2 | // LZBYKLoginVC.h 3 | // LZBYKLive 4 | // 5 | // Created by zibin on 16/9/1. 6 | // Copyright © 2016年 刘子彬(更多项目源码分享平台“开发者源代码” 微信号:developerCode 作者简介:iOS开发者,喜爱交流分享). All rights reserved. 7 | // 8 | 9 | #import "BaseVC.h" 10 | 11 | @interface LZBYKLoginVC : BaseVC 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Modules/Other/Resource/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Modules/Other/Resource/.DS_Store -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Modules/Other/Resource/login_bg_cloud_1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Modules/Other/Resource/login_bg_cloud_1@2x.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Modules/Other/Resource/login_bg_cloud_1@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Modules/Other/Resource/login_bg_cloud_1@3x.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Modules/Other/Resource/login_bg_cloud_2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Modules/Other/Resource/login_bg_cloud_2@2x.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Modules/Other/Resource/login_bg_cloud_2@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Modules/Other/Resource/login_bg_cloud_2@3x.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Modules/Other/Resource/login_dx@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Modules/Other/Resource/login_dx@2x.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Modules/Other/Resource/login_dx@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Modules/Other/Resource/login_dx@3x.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Modules/Other/Resource/login_qq@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Modules/Other/Resource/login_qq@2x.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Modules/Other/Resource/login_qq@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Modules/Other/Resource/login_qq@3x.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Modules/Other/Resource/login_tree@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Modules/Other/Resource/login_tree@2x.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Modules/Other/Resource/login_tree@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Modules/Other/Resource/login_tree@3x.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Modules/Other/Resource/login_weibo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Modules/Other/Resource/login_weibo@2x.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Modules/Other/Resource/login_weibo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Modules/Other/Resource/login_weibo@3x.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Modules/Other/Resource/login_wx@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Modules/Other/Resource/login_wx@2x.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Modules/Other/Resource/login_wx@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Modules/Other/Resource/login_wx@3x.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Modules/Other/Resource/wenxin_tuanguan_icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Modules/Other/Resource/wenxin_tuanguan_icon.jpg -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Resource/LaunchImage-700-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Resource/LaunchImage-700-568h@2x.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Resource/default_ticker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Resource/default_ticker.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Resource/refresh_fly_0001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Resource/refresh_fly_0001.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Resource/refresh_fly_0002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Resource/refresh_fly_0002.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Resource/refresh_fly_0003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Resource/refresh_fly_0003.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Resource/refresh_fly_0004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Resource/refresh_fly_0004.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Resource/refresh_fly_0005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Resource/refresh_fly_0005.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Resource/refresh_fly_0006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Resource/refresh_fly_0006.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Resource/refresh_fly_0007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Resource/refresh_fly_0007.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Resource/refresh_fly_0008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Resource/refresh_fly_0008.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Resource/refresh_fly_0009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Resource/refresh_fly_0009.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Resource/refresh_fly_0010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Resource/refresh_fly_0010.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Resource/refresh_fly_0011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Resource/refresh_fly_0011.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Resource/refresh_fly_0012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Resource/refresh_fly_0012.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Resource/refresh_fly_0013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Resource/refresh_fly_0013.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Resource/refresh_fly_0014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Resource/refresh_fly_0014.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Resource/refresh_fly_0015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Resource/refresh_fly_0015.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Resource/refresh_fly_0016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Resource/refresh_fly_0016.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Resource/refresh_fly_0017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Resource/refresh_fly_0017.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Resource/refresh_fly_0018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Resource/refresh_fly_0018.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Resource/refresh_fly_0019.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Resource/refresh_fly_0019.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Resource/refresh_fly_0020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Resource/refresh_fly_0020.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Resource/refresh_fly_0021.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Resource/refresh_fly_0021.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Resource/refresh_fly_0022.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Resource/refresh_fly_0022.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Resource/refresh_fly_0023.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Resource/refresh_fly_0023.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Resource/refresh_fly_0024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Resource/refresh_fly_0024.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Resource/refresh_fly_0025.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Resource/refresh_fly_0025.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Resource/refresh_fly_0026.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Resource/refresh_fly_0026.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Resource/refresh_fly_0027.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Resource/refresh_fly_0027.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Resource/refresh_fly_0028.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Resource/refresh_fly_0028.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Resource/refresh_fly_0029.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Resource/refresh_fly_0029.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Resource/room_pop_up_lamp@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Resource/room_pop_up_lamp@2x.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Resource/room_pop_up_lamp@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Resource/room_pop_up_lamp@3x.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Resource/room_task_video_start@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Resource/room_task_video_start@2x.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Resource/room_task_video_start@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Resource/room_task_video_start@3x.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Resource/room_task_video_start_fold@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Resource/room_task_video_start_fold@2x.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Resource/room_task_video_start_fold@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Resource/room_task_video_start_fold@3x.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Resource/shortvideo_button_close@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Resource/shortvideo_button_close@2x.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Resource/shortvideo_button_close@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Resource/shortvideo_button_close@3x.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Resource/shortvideo_download_5_refresh@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Resource/shortvideo_download_5_refresh@2x.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Resource/shortvideo_download_5_refresh@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/Resource/shortvideo_download_5_refresh@3x.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/System/AppDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.h 3 | // LZBYKLive 4 | // 5 | // Created by apple on 16/8/4. 6 | // Copyright © 2016年 apple. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface AppDelegate : UIResponder 12 | 13 | @property (strong, nonatomic) UIWindow *window; 14 | 15 | 16 | @end 17 | 18 | -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/System/Assets.xcassets/AppIcon.appiconset/AppIcon20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/System/Assets.xcassets/AppIcon.appiconset/AppIcon20x20@2x.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/System/Assets.xcassets/AppIcon.appiconset/AppIcon20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/System/Assets.xcassets/AppIcon.appiconset/AppIcon20x20@3x.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/System/Assets.xcassets/AppIcon.appiconset/AppIcon29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/System/Assets.xcassets/AppIcon.appiconset/AppIcon29x29@2x.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/System/Assets.xcassets/AppIcon.appiconset/AppIcon29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/System/Assets.xcassets/AppIcon.appiconset/AppIcon29x29@3x.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/System/Assets.xcassets/AppIcon.appiconset/AppIcon40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/System/Assets.xcassets/AppIcon.appiconset/AppIcon40x40@2x.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/System/Assets.xcassets/AppIcon.appiconset/AppIcon40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/System/Assets.xcassets/AppIcon.appiconset/AppIcon40x40@3x.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/System/Assets.xcassets/AppIcon.appiconset/AppIcon60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/System/Assets.xcassets/AppIcon.appiconset/AppIcon60x60@2x.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/System/Assets.xcassets/AppIcon.appiconset/AppIcon60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/LZBYKLive/System/Assets.xcassets/AppIcon.appiconset/AppIcon60x60@3x.png -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/System/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // LZBYKLive 4 | // 5 | // Created by apple on 16/8/4. 6 | // Copyright © 2016年 apple. 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 | -------------------------------------------------------------------------------- /LZBYKLive/LZBYKLive/Utils/LZBCommonTool.h: -------------------------------------------------------------------------------- 1 | // 2 | // LZBCommonTool.h 3 | // LZBYKLive 4 | // 5 | // Created by zibin on 16/9/22. 6 | // Copyright © 2016年 刘子彬(更多项目源码分享平台“开发者源代码” 微信号:developerCode 作者简介:iOS开发者,喜爱交流分享). All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface LZBCommonTool : NSObject 12 | //图片淡入淡出效果 13 | +(void)animationOptionTransitionCrossDissolve:(UIImageView *)view image:(UIImage *)image; 14 | //view淡入淡出效果 15 | +(void)animationOptionTransitionCrossDissolveView:(UIView *)view; 16 | @end 17 | -------------------------------------------------------------------------------- /LZBYKLive/Podfile: -------------------------------------------------------------------------------- 1 | platform :ios, "7.0" 2 | 3 | target 'LZBYKLive' do 4 | 5 | pod 'MJRefresh' 6 | pod 'SVProgressHUD' 7 | pod 'SDWebImage' 8 | pod 'Masonry' 9 | pod 'Mantle' 10 | pod 'AFNetworking', '~> 2.0' 11 | pod 'ReactiveCocoa' 12 | 13 | end -------------------------------------------------------------------------------- /LZBYKLive/Pods/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/Pods/.DS_Store -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/AFNetworking/AFHTTPRequestOperation.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFHTTPRequestOperation.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/AFNetworking/AFHTTPRequestOperationManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFHTTPRequestOperationManager.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/AFNetworking/AFHTTPSessionManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFHTTPSessionManager.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/AFNetworking/AFNetworkActivityIndicatorManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/AFNetworkActivityIndicatorManager.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/AFNetworking/AFNetworkReachabilityManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFNetworkReachabilityManager.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/AFNetworking/AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFNetworking.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/AFNetworking/AFSecurityPolicy.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFSecurityPolicy.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/AFNetworking/AFURLConnectionOperation.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLConnectionOperation.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/AFNetworking/AFURLRequestSerialization.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLRequestSerialization.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/AFNetworking/AFURLResponseSerialization.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLResponseSerialization.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/AFNetworking/AFURLSessionManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLSessionManager.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/AFNetworking/UIActivityIndicatorView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/AFNetworking/UIAlertView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIAlertView+AFNetworking.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/AFNetworking/UIButton+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/AFNetworking/UIImage+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIImage+AFNetworking.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/AFNetworking/UIImageView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIImageView+AFNetworking.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/AFNetworking/UIKit+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIKit+AFNetworking.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/AFNetworking/UIProgressView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIProgressView+AFNetworking.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/AFNetworking/UIRefreshControl+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIRefreshControl+AFNetworking.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/AFNetworking/UIWebView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIWebView+AFNetworking.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/MJRefresh/MJRefresh.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/MJRefresh.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/MJRefresh/MJRefreshAutoFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Base/MJRefreshAutoFooter.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/MJRefresh/MJRefreshAutoGifFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoGifFooter.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/MJRefresh/MJRefreshAutoNormalFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoNormalFooter.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/MJRefresh/MJRefreshAutoStateFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoStateFooter.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/MJRefresh/MJRefreshBackFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Base/MJRefreshBackFooter.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/MJRefresh/MJRefreshBackGifFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackGifFooter.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/MJRefresh/MJRefreshBackNormalFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackNormalFooter.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/MJRefresh/MJRefreshBackStateFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackStateFooter.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/MJRefresh/MJRefreshComponent.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Base/MJRefreshComponent.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/MJRefresh/MJRefreshConst.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/MJRefreshConst.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/MJRefresh/MJRefreshFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Base/MJRefreshFooter.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/MJRefresh/MJRefreshGifHeader.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Header/MJRefreshGifHeader.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/MJRefresh/MJRefreshHeader.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Base/MJRefreshHeader.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/MJRefresh/MJRefreshNormalHeader.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Header/MJRefreshNormalHeader.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/MJRefresh/MJRefreshStateHeader.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Header/MJRefreshStateHeader.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/MJRefresh/UIScrollView+MJExtension.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/UIScrollView+MJExtension.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/MJRefresh/UIScrollView+MJRefresh.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/UIScrollView+MJRefresh.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/MJRefresh/UIView+MJExtension.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/UIView+MJExtension.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/Mantle/EXTKeyPathCoding.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/extobjc/EXTKeyPathCoding.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/Mantle/EXTRuntimeExtensions.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/extobjc/EXTRuntimeExtensions.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/Mantle/EXTScope.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/extobjc/EXTScope.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/Mantle/MTLJSONAdapter.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/MTLJSONAdapter.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/Mantle/MTLModel+NSCoding.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/MTLModel+NSCoding.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/Mantle/MTLModel.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/MTLModel.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/Mantle/MTLReflection.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/MTLReflection.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/Mantle/MTLTransformerErrorHandling.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/MTLTransformerErrorHandling.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/Mantle/MTLValueTransformer.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/MTLValueTransformer.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/Mantle/Mantle.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/Mantle.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/Mantle/NSArray+MTLManipulationAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/NSArray+MTLManipulationAdditions.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/Mantle/NSDictionary+MTLJSONKeyPath.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/NSDictionary+MTLJSONKeyPath.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/Mantle/NSDictionary+MTLManipulationAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/NSDictionary+MTLManipulationAdditions.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/Mantle/NSDictionary+MTLMappingAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/NSDictionary+MTLMappingAdditions.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/Mantle/NSError+MTLModelException.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/NSError+MTLModelException.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/Mantle/NSObject+MTLComparisonAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/NSObject+MTLComparisonAdditions.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/Mantle/NSValueTransformer+MTLInversionAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/NSValueTransformer+MTLInversionAdditions.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/Mantle/NSValueTransformer+MTLPredefinedTransformerAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/NSValueTransformer+MTLPredefinedTransformerAdditions.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/Mantle/metamacros.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/extobjc/metamacros.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/Masonry/MASCompositeConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASCompositeConstraint.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/Masonry/MASConstraint+Private.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraint+Private.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/Masonry/MASConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraint.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/Masonry/MASConstraintMaker.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraintMaker.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/Masonry/MASLayoutConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASLayoutConstraint.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/Masonry/MASUtilities.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASUtilities.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/Masonry/MASViewAttribute.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASViewAttribute.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/Masonry/MASViewConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASViewConstraint.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/Masonry/Masonry.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/Masonry.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/Masonry/NSArray+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSArray+MASAdditions.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/Masonry/NSArray+MASShorthandAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSArray+MASShorthandAdditions.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/Masonry/NSLayoutConstraint+MASDebugAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/Masonry/View+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/View+MASAdditions.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/Masonry/View+MASShorthandAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/View+MASShorthandAdditions.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/Masonry/ViewController+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/ViewController+MASAdditions.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/ReactiveCocoa/MKAnnotationView+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/MKAnnotationView+RACSignalSupport.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/ReactiveCocoa/NSArray+RACSequenceAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSArray+RACSequenceAdditions.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/ReactiveCocoa/NSData+RACSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSData+RACSupport.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/ReactiveCocoa/NSDictionary+RACSequenceAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSDictionary+RACSequenceAdditions.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/ReactiveCocoa/NSEnumerator+RACSequenceAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSEnumerator+RACSequenceAdditions.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/ReactiveCocoa/NSFileHandle+RACSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSFileHandle+RACSupport.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/ReactiveCocoa/NSIndexSet+RACSequenceAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSIndexSet+RACSequenceAdditions.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/ReactiveCocoa/NSInvocation+RACTypeParsing.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSInvocation+RACTypeParsing.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/ReactiveCocoa/NSNotificationCenter+RACSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSNotificationCenter+RACSupport.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/ReactiveCocoa/NSObject+RACDeallocating.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSObject+RACDeallocating.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/ReactiveCocoa/NSObject+RACDescription.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSObject+RACDescription.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/ReactiveCocoa/NSObject+RACKVOWrapper.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSObject+RACKVOWrapper.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/ReactiveCocoa/NSObject+RACLifting.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSObject+RACLifting.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/ReactiveCocoa/NSObject+RACPropertySubscribing.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSObject+RACPropertySubscribing.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/ReactiveCocoa/NSObject+RACSelectorSignal.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSObject+RACSelectorSignal.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/ReactiveCocoa/NSOrderedSet+RACSequenceAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSOrderedSet+RACSequenceAdditions.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/ReactiveCocoa/NSSet+RACSequenceAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSSet+RACSequenceAdditions.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/ReactiveCocoa/NSString+RACKeyPathUtilities.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSString+RACKeyPathUtilities.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/ReactiveCocoa/NSString+RACSequenceAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSString+RACSequenceAdditions.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/ReactiveCocoa/NSString+RACSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSString+RACSupport.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/ReactiveCocoa/NSURLConnection+RACSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSURLConnection+RACSupport.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/ReactiveCocoa/NSUserDefaults+RACSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSUserDefaults+RACSupport.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/ReactiveCocoa/RACArraySequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACArraySequence.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/ReactiveCocoa/RACBehaviorSubject.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACBehaviorSubject.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/ReactiveCocoa/RACBlockTrampoline.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACBlockTrampoline.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/ReactiveCocoa/RACChannel.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACChannel.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/ReactiveCocoa/RACCommand.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACCommand.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/ReactiveCocoa/RACCompoundDisposable.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACCompoundDisposable.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/ReactiveCocoa/RACDelegateProxy.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACDelegateProxy.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/ReactiveCocoa/RACDisposable.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACDisposable.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/ReactiveCocoa/RACDynamicSequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACDynamicSequence.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/ReactiveCocoa/RACDynamicSignal.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACDynamicSignal.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/ReactiveCocoa/RACEXTKeyPathCoding.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/extobjc/RACEXTKeyPathCoding.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/ReactiveCocoa/RACEXTRuntimeExtensions.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/extobjc/RACEXTRuntimeExtensions.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/ReactiveCocoa/RACEXTScope.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/extobjc/RACEXTScope.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/ReactiveCocoa/RACEagerSequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACEagerSequence.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/ReactiveCocoa/RACEmptySequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACEmptySequence.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/ReactiveCocoa/RACEmptySignal.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACEmptySignal.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/ReactiveCocoa/RACErrorSignal.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACErrorSignal.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/ReactiveCocoa/RACEvent.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACEvent.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/ReactiveCocoa/RACGroupedSignal.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACGroupedSignal.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/ReactiveCocoa/RACImmediateScheduler.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACImmediateScheduler.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/ReactiveCocoa/RACIndexSetSequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACIndexSetSequence.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/ReactiveCocoa/RACKVOChannel.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACKVOChannel.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/ReactiveCocoa/RACKVOProxy.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACKVOProxy.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/ReactiveCocoa/RACKVOTrampoline.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACKVOTrampoline.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/ReactiveCocoa/RACMulticastConnection+Private.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACMulticastConnection+Private.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/ReactiveCocoa/RACMulticastConnection.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACMulticastConnection.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/ReactiveCocoa/RACObjCRuntime.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACObjCRuntime.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/ReactiveCocoa/RACPassthroughSubscriber.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACPassthroughSubscriber.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/ReactiveCocoa/RACQueueScheduler+Subclass.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACQueueScheduler+Subclass.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/ReactiveCocoa/RACQueueScheduler.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACQueueScheduler.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/ReactiveCocoa/RACReplaySubject.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACReplaySubject.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/ReactiveCocoa/RACReturnSignal.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACReturnSignal.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/ReactiveCocoa/RACScheduler+Private.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACScheduler+Private.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/ReactiveCocoa/RACScheduler+Subclass.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACScheduler+Subclass.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/ReactiveCocoa/RACScheduler.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACScheduler.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/ReactiveCocoa/RACScopedDisposable.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACScopedDisposable.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/ReactiveCocoa/RACSequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACSequence.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/ReactiveCocoa/RACSerialDisposable.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACSerialDisposable.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/ReactiveCocoa/RACSignal+Operations.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACSignal+Operations.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/ReactiveCocoa/RACSignal.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACSignal.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/ReactiveCocoa/RACSignalSequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACSignalSequence.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/ReactiveCocoa/RACStream+Private.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACStream+Private.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/ReactiveCocoa/RACStream.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACStream.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/ReactiveCocoa/RACStringSequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACStringSequence.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/ReactiveCocoa/RACSubject.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACSubject.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/ReactiveCocoa/RACSubscriber+Private.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACSubscriber+Private.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/ReactiveCocoa/RACSubscriber.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACSubscriber.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/ReactiveCocoa/RACSubscriptingAssignmentTrampoline.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACSubscriptingAssignmentTrampoline.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/ReactiveCocoa/RACSubscriptionScheduler.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACSubscriptionScheduler.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/ReactiveCocoa/RACTargetQueueScheduler.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACTargetQueueScheduler.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/ReactiveCocoa/RACTestScheduler.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACTestScheduler.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/ReactiveCocoa/RACTuple.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACTuple.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/ReactiveCocoa/RACTupleSequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACTupleSequence.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/ReactiveCocoa/RACUnarySequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACUnarySequence.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/ReactiveCocoa/RACUnit.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACUnit.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/ReactiveCocoa/RACValueTransformer.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACValueTransformer.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/ReactiveCocoa/RACmetamacros.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/extobjc/RACmetamacros.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/ReactiveCocoa/ReactiveCocoa.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/ReactiveCocoa.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/ReactiveCocoa/UIActionSheet+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UIActionSheet+RACSignalSupport.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/ReactiveCocoa/UIAlertView+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UIAlertView+RACSignalSupport.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/ReactiveCocoa/UIBarButtonItem+RACCommandSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UIBarButtonItem+RACCommandSupport.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/ReactiveCocoa/UIButton+RACCommandSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UIButton+RACCommandSupport.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/ReactiveCocoa/UICollectionReusableView+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UICollectionReusableView+RACSignalSupport.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/ReactiveCocoa/UIControl+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UIControl+RACSignalSupport.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/ReactiveCocoa/UIControl+RACSignalSupportPrivate.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UIControl+RACSignalSupportPrivate.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/ReactiveCocoa/UIDatePicker+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UIDatePicker+RACSignalSupport.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/ReactiveCocoa/UIGestureRecognizer+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UIGestureRecognizer+RACSignalSupport.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/ReactiveCocoa/UIImagePickerController+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UIImagePickerController+RACSignalSupport.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/ReactiveCocoa/UIRefreshControl+RACCommandSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UIRefreshControl+RACCommandSupport.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/ReactiveCocoa/UISegmentedControl+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UISegmentedControl+RACSignalSupport.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/ReactiveCocoa/UISlider+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UISlider+RACSignalSupport.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/ReactiveCocoa/UIStepper+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UIStepper+RACSignalSupport.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/ReactiveCocoa/UISwitch+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UISwitch+RACSignalSupport.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/ReactiveCocoa/UITableViewCell+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UITableViewCell+RACSignalSupport.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/ReactiveCocoa/UITableViewHeaderFooterView+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UITableViewHeaderFooterView+RACSignalSupport.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/ReactiveCocoa/UITextField+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UITextField+RACSignalSupport.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/ReactiveCocoa/UITextView+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UITextView+RACSignalSupport.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/SDWebImage/NSData+ImageContentType.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/NSData+ImageContentType.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/SDWebImage/SDImageCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDImageCache.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/SDWebImage/SDWebImageCompat.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageCompat.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/SDWebImage/SDWebImageDecoder.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageDecoder.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/SDWebImage/SDWebImageDownloader.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageDownloader.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/SDWebImage/SDWebImageDownloaderOperation.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageDownloaderOperation.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/SDWebImage/SDWebImageManager.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageManager.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/SDWebImage/SDWebImageOperation.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageOperation.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/SDWebImage/SDWebImagePrefetcher.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImagePrefetcher.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/SDWebImage/UIButton+WebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIButton+WebCache.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/SDWebImage/UIImage+GIF.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImage+GIF.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/SDWebImage/UIImage+MultiFormat.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImage+MultiFormat.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/SDWebImage/UIImageView+HighlightedWebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImageView+HighlightedWebCache.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/SDWebImage/UIImageView+WebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImageView+WebCache.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/SDWebImage/UIView+WebCacheOperation.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIView+WebCacheOperation.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/SVProgressHUD/SVIndefiniteAnimatedView.h: -------------------------------------------------------------------------------- 1 | ../../../SVProgressHUD/SVProgressHUD/SVIndefiniteAnimatedView.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Private/SVProgressHUD/SVProgressHUD.h: -------------------------------------------------------------------------------- 1 | ../../../SVProgressHUD/SVProgressHUD/SVProgressHUD.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/AFNetworking/AFHTTPRequestOperation.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFHTTPRequestOperation.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/AFNetworking/AFHTTPRequestOperationManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFHTTPRequestOperationManager.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/AFNetworking/AFHTTPSessionManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFHTTPSessionManager.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/AFNetworking/AFNetworkActivityIndicatorManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/AFNetworkActivityIndicatorManager.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/AFNetworking/AFNetworkReachabilityManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFNetworkReachabilityManager.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/AFNetworking/AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFNetworking.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/AFNetworking/AFSecurityPolicy.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFSecurityPolicy.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/AFNetworking/AFURLConnectionOperation.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLConnectionOperation.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/AFNetworking/AFURLRequestSerialization.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLRequestSerialization.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/AFNetworking/AFURLResponseSerialization.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLResponseSerialization.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/AFNetworking/AFURLSessionManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLSessionManager.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/AFNetworking/UIActivityIndicatorView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/AFNetworking/UIAlertView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIAlertView+AFNetworking.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/AFNetworking/UIButton+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/AFNetworking/UIImage+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIImage+AFNetworking.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/AFNetworking/UIImageView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIImageView+AFNetworking.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/AFNetworking/UIKit+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIKit+AFNetworking.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/AFNetworking/UIProgressView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIProgressView+AFNetworking.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/AFNetworking/UIRefreshControl+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIRefreshControl+AFNetworking.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/AFNetworking/UIWebView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIWebView+AFNetworking.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/MJRefresh/MJRefresh.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/MJRefresh.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/MJRefresh/MJRefreshAutoFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Base/MJRefreshAutoFooter.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/MJRefresh/MJRefreshAutoGifFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoGifFooter.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/MJRefresh/MJRefreshAutoNormalFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoNormalFooter.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/MJRefresh/MJRefreshAutoStateFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoStateFooter.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/MJRefresh/MJRefreshBackFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Base/MJRefreshBackFooter.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/MJRefresh/MJRefreshBackGifFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackGifFooter.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/MJRefresh/MJRefreshBackNormalFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackNormalFooter.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/MJRefresh/MJRefreshBackStateFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackStateFooter.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/MJRefresh/MJRefreshComponent.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Base/MJRefreshComponent.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/MJRefresh/MJRefreshConst.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/MJRefreshConst.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/MJRefresh/MJRefreshFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Base/MJRefreshFooter.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/MJRefresh/MJRefreshGifHeader.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Header/MJRefreshGifHeader.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/MJRefresh/MJRefreshHeader.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Base/MJRefreshHeader.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/MJRefresh/MJRefreshNormalHeader.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Header/MJRefreshNormalHeader.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/MJRefresh/MJRefreshStateHeader.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Header/MJRefreshStateHeader.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/MJRefresh/UIScrollView+MJExtension.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/UIScrollView+MJExtension.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/MJRefresh/UIScrollView+MJRefresh.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/UIScrollView+MJRefresh.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/MJRefresh/UIView+MJExtension.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/UIView+MJExtension.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/Mantle/MTLJSONAdapter.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/MTLJSONAdapter.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/Mantle/MTLModel+NSCoding.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/MTLModel+NSCoding.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/Mantle/MTLModel.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/MTLModel.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/Mantle/MTLReflection.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/MTLReflection.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/Mantle/MTLTransformerErrorHandling.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/MTLTransformerErrorHandling.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/Mantle/MTLValueTransformer.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/MTLValueTransformer.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/Mantle/Mantle.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/Mantle.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/Mantle/NSArray+MTLManipulationAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/NSArray+MTLManipulationAdditions.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/Mantle/NSDictionary+MTLJSONKeyPath.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/NSDictionary+MTLJSONKeyPath.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/Mantle/NSDictionary+MTLManipulationAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/NSDictionary+MTLManipulationAdditions.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/Mantle/NSDictionary+MTLMappingAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/NSDictionary+MTLMappingAdditions.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/Mantle/NSError+MTLModelException.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/NSError+MTLModelException.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/Mantle/NSObject+MTLComparisonAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/NSObject+MTLComparisonAdditions.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/Mantle/NSValueTransformer+MTLInversionAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/NSValueTransformer+MTLInversionAdditions.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/Mantle/NSValueTransformer+MTLPredefinedTransformerAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/NSValueTransformer+MTLPredefinedTransformerAdditions.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/Masonry/MASCompositeConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASCompositeConstraint.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/Masonry/MASConstraint+Private.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraint+Private.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/Masonry/MASConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraint.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/Masonry/MASConstraintMaker.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraintMaker.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/Masonry/MASLayoutConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASLayoutConstraint.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/Masonry/MASUtilities.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASUtilities.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/Masonry/MASViewAttribute.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASViewAttribute.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/Masonry/MASViewConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASViewConstraint.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/Masonry/Masonry.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/Masonry.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/Masonry/NSArray+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSArray+MASAdditions.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/Masonry/NSArray+MASShorthandAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSArray+MASShorthandAdditions.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/Masonry/NSLayoutConstraint+MASDebugAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/Masonry/View+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/View+MASAdditions.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/Masonry/View+MASShorthandAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/View+MASShorthandAdditions.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/Masonry/ViewController+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/ViewController+MASAdditions.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/ReactiveCocoa/MKAnnotationView+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/MKAnnotationView+RACSignalSupport.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/ReactiveCocoa/NSArray+RACSequenceAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSArray+RACSequenceAdditions.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/ReactiveCocoa/NSData+RACSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSData+RACSupport.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/ReactiveCocoa/NSDictionary+RACSequenceAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSDictionary+RACSequenceAdditions.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/ReactiveCocoa/NSEnumerator+RACSequenceAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSEnumerator+RACSequenceAdditions.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/ReactiveCocoa/NSFileHandle+RACSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSFileHandle+RACSupport.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/ReactiveCocoa/NSIndexSet+RACSequenceAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSIndexSet+RACSequenceAdditions.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/ReactiveCocoa/NSInvocation+RACTypeParsing.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSInvocation+RACTypeParsing.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/ReactiveCocoa/NSNotificationCenter+RACSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSNotificationCenter+RACSupport.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/ReactiveCocoa/NSObject+RACDeallocating.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSObject+RACDeallocating.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/ReactiveCocoa/NSObject+RACDescription.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSObject+RACDescription.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/ReactiveCocoa/NSObject+RACKVOWrapper.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSObject+RACKVOWrapper.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/ReactiveCocoa/NSObject+RACLifting.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSObject+RACLifting.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/ReactiveCocoa/NSObject+RACPropertySubscribing.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSObject+RACPropertySubscribing.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/ReactiveCocoa/NSObject+RACSelectorSignal.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSObject+RACSelectorSignal.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/ReactiveCocoa/NSOrderedSet+RACSequenceAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSOrderedSet+RACSequenceAdditions.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/ReactiveCocoa/NSSet+RACSequenceAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSSet+RACSequenceAdditions.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/ReactiveCocoa/NSString+RACKeyPathUtilities.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSString+RACKeyPathUtilities.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/ReactiveCocoa/NSString+RACSequenceAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSString+RACSequenceAdditions.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/ReactiveCocoa/NSString+RACSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSString+RACSupport.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/ReactiveCocoa/NSURLConnection+RACSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSURLConnection+RACSupport.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/ReactiveCocoa/NSUserDefaults+RACSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSUserDefaults+RACSupport.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/ReactiveCocoa/RACArraySequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACArraySequence.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/ReactiveCocoa/RACBehaviorSubject.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACBehaviorSubject.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/ReactiveCocoa/RACBlockTrampoline.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACBlockTrampoline.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/ReactiveCocoa/RACChannel.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACChannel.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/ReactiveCocoa/RACCommand.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACCommand.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/ReactiveCocoa/RACCompoundDisposable.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACCompoundDisposable.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/ReactiveCocoa/RACDelegateProxy.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACDelegateProxy.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/ReactiveCocoa/RACDisposable.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACDisposable.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/ReactiveCocoa/RACDynamicSequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACDynamicSequence.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/ReactiveCocoa/RACDynamicSignal.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACDynamicSignal.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/ReactiveCocoa/RACEXTKeyPathCoding.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/extobjc/RACEXTKeyPathCoding.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/ReactiveCocoa/RACEXTRuntimeExtensions.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/extobjc/RACEXTRuntimeExtensions.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/ReactiveCocoa/RACEXTScope.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/extobjc/RACEXTScope.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/ReactiveCocoa/RACEagerSequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACEagerSequence.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/ReactiveCocoa/RACEmptySequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACEmptySequence.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/ReactiveCocoa/RACEmptySignal.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACEmptySignal.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/ReactiveCocoa/RACErrorSignal.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACErrorSignal.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/ReactiveCocoa/RACEvent.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACEvent.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/ReactiveCocoa/RACGroupedSignal.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACGroupedSignal.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/ReactiveCocoa/RACImmediateScheduler.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACImmediateScheduler.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/ReactiveCocoa/RACIndexSetSequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACIndexSetSequence.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/ReactiveCocoa/RACKVOChannel.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACKVOChannel.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/ReactiveCocoa/RACKVOProxy.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACKVOProxy.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/ReactiveCocoa/RACKVOTrampoline.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACKVOTrampoline.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/ReactiveCocoa/RACMulticastConnection.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACMulticastConnection.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/ReactiveCocoa/RACObjCRuntime.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACObjCRuntime.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/ReactiveCocoa/RACPassthroughSubscriber.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACPassthroughSubscriber.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/ReactiveCocoa/RACQueueScheduler+Subclass.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACQueueScheduler+Subclass.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/ReactiveCocoa/RACQueueScheduler.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACQueueScheduler.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/ReactiveCocoa/RACReplaySubject.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACReplaySubject.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/ReactiveCocoa/RACReturnSignal.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACReturnSignal.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/ReactiveCocoa/RACScheduler+Subclass.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACScheduler+Subclass.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/ReactiveCocoa/RACScheduler.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACScheduler.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/ReactiveCocoa/RACScopedDisposable.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACScopedDisposable.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/ReactiveCocoa/RACSequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACSequence.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/ReactiveCocoa/RACSerialDisposable.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACSerialDisposable.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/ReactiveCocoa/RACSignal+Operations.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACSignal+Operations.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/ReactiveCocoa/RACSignal.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACSignal.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/ReactiveCocoa/RACSignalSequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACSignalSequence.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/ReactiveCocoa/RACStream.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACStream.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/ReactiveCocoa/RACStringSequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACStringSequence.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/ReactiveCocoa/RACSubject.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACSubject.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/ReactiveCocoa/RACSubscriber.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACSubscriber.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/ReactiveCocoa/RACSubscriptingAssignmentTrampoline.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACSubscriptingAssignmentTrampoline.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/ReactiveCocoa/RACSubscriptionScheduler.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACSubscriptionScheduler.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/ReactiveCocoa/RACTargetQueueScheduler.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACTargetQueueScheduler.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/ReactiveCocoa/RACTestScheduler.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACTestScheduler.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/ReactiveCocoa/RACTuple.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACTuple.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/ReactiveCocoa/RACTupleSequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACTupleSequence.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/ReactiveCocoa/RACUnarySequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACUnarySequence.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/ReactiveCocoa/RACUnit.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACUnit.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/ReactiveCocoa/RACValueTransformer.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACValueTransformer.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/ReactiveCocoa/RACmetamacros.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/extobjc/RACmetamacros.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/ReactiveCocoa/ReactiveCocoa.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/ReactiveCocoa.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/ReactiveCocoa/UIActionSheet+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UIActionSheet+RACSignalSupport.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/ReactiveCocoa/UIAlertView+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UIAlertView+RACSignalSupport.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/ReactiveCocoa/UIBarButtonItem+RACCommandSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UIBarButtonItem+RACCommandSupport.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/ReactiveCocoa/UIButton+RACCommandSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UIButton+RACCommandSupport.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/ReactiveCocoa/UICollectionReusableView+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UICollectionReusableView+RACSignalSupport.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/ReactiveCocoa/UIControl+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UIControl+RACSignalSupport.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/ReactiveCocoa/UIControl+RACSignalSupportPrivate.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UIControl+RACSignalSupportPrivate.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/ReactiveCocoa/UIDatePicker+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UIDatePicker+RACSignalSupport.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/ReactiveCocoa/UIGestureRecognizer+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UIGestureRecognizer+RACSignalSupport.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/ReactiveCocoa/UIImagePickerController+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UIImagePickerController+RACSignalSupport.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/ReactiveCocoa/UIRefreshControl+RACCommandSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UIRefreshControl+RACCommandSupport.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/ReactiveCocoa/UISegmentedControl+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UISegmentedControl+RACSignalSupport.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/ReactiveCocoa/UISlider+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UISlider+RACSignalSupport.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/ReactiveCocoa/UIStepper+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UIStepper+RACSignalSupport.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/ReactiveCocoa/UISwitch+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UISwitch+RACSignalSupport.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/ReactiveCocoa/UITableViewCell+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UITableViewCell+RACSignalSupport.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/ReactiveCocoa/UITableViewHeaderFooterView+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UITableViewHeaderFooterView+RACSignalSupport.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/ReactiveCocoa/UITextField+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UITextField+RACSignalSupport.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/ReactiveCocoa/UITextView+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UITextView+RACSignalSupport.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/SDWebImage/NSData+ImageContentType.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/NSData+ImageContentType.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/SDWebImage/SDImageCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDImageCache.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/SDWebImage/SDWebImageCompat.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageCompat.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/SDWebImage/SDWebImageDecoder.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageDecoder.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/SDWebImage/SDWebImageDownloader.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageDownloader.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/SDWebImage/SDWebImageDownloaderOperation.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageDownloaderOperation.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/SDWebImage/SDWebImageManager.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageManager.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/SDWebImage/SDWebImageOperation.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageOperation.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/SDWebImage/SDWebImagePrefetcher.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImagePrefetcher.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/SDWebImage/UIButton+WebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIButton+WebCache.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/SDWebImage/UIImage+GIF.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImage+GIF.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/SDWebImage/UIImage+MultiFormat.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImage+MultiFormat.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/SDWebImage/UIImageView+HighlightedWebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImageView+HighlightedWebCache.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/SDWebImage/UIImageView+WebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImageView+WebCache.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/SDWebImage/UIView+WebCacheOperation.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIView+WebCacheOperation.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/SVProgressHUD/SVIndefiniteAnimatedView.h: -------------------------------------------------------------------------------- 1 | ../../../SVProgressHUD/SVProgressHUD/SVIndefiniteAnimatedView.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/Headers/Public/SVProgressHUD/SVProgressHUD.h: -------------------------------------------------------------------------------- 1 | ../../../SVProgressHUD/SVProgressHUD/SVProgressHUD.h -------------------------------------------------------------------------------- /LZBYKLive/Pods/MJRefresh/MJRefresh/Base/MJRefreshBackFooter.h: -------------------------------------------------------------------------------- 1 | // 2 | // MJRefreshBackFooter.h 3 | // MJRefreshExample 4 | // 5 | // Created by MJ Lee on 15/4/24. 6 | // Copyright (c) 2015年 小码哥. All rights reserved. 7 | // 8 | 9 | #import "MJRefreshFooter.h" 10 | 11 | @interface MJRefreshBackFooter : MJRefreshFooter 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /LZBYKLive/Pods/MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoNormalFooter.h: -------------------------------------------------------------------------------- 1 | // 2 | // MJRefreshAutoNormalFooter.h 3 | // MJRefreshExample 4 | // 5 | // Created by MJ Lee on 15/4/24. 6 | // Copyright (c) 2015年 小码哥. All rights reserved. 7 | // 8 | 9 | #import "MJRefreshAutoStateFooter.h" 10 | 11 | @interface MJRefreshAutoNormalFooter : MJRefreshAutoStateFooter 12 | /** 菊花的样式 */ 13 | @property (assign, nonatomic) UIActivityIndicatorViewStyle activityIndicatorViewStyle; 14 | @end 15 | -------------------------------------------------------------------------------- /LZBYKLive/Pods/MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackNormalFooter.h: -------------------------------------------------------------------------------- 1 | // 2 | // MJRefreshBackNormalFooter.h 3 | // MJRefreshExample 4 | // 5 | // Created by MJ Lee on 15/4/24. 6 | // Copyright (c) 2015年 小码哥. All rights reserved. 7 | // 8 | 9 | #import "MJRefreshBackStateFooter.h" 10 | 11 | @interface MJRefreshBackNormalFooter : MJRefreshBackStateFooter 12 | @property (weak, nonatomic, readonly) UIImageView *arrowView; 13 | /** 菊花的样式 */ 14 | @property (assign, nonatomic) UIActivityIndicatorViewStyle activityIndicatorViewStyle; 15 | @end 16 | -------------------------------------------------------------------------------- /LZBYKLive/Pods/MJRefresh/MJRefresh/Custom/Header/MJRefreshNormalHeader.h: -------------------------------------------------------------------------------- 1 | // 2 | // MJRefreshNormalHeader.h 3 | // MJRefreshExample 4 | // 5 | // Created by MJ Lee on 15/4/24. 6 | // Copyright (c) 2015年 小码哥. All rights reserved. 7 | // 8 | 9 | #import "MJRefreshStateHeader.h" 10 | 11 | @interface MJRefreshNormalHeader : MJRefreshStateHeader 12 | @property (weak, nonatomic, readonly) UIImageView *arrowView; 13 | /** 菊花的样式 */ 14 | @property (assign, nonatomic) UIActivityIndicatorViewStyle activityIndicatorViewStyle; 15 | @end 16 | -------------------------------------------------------------------------------- /LZBYKLive/Pods/MJRefresh/MJRefresh/MJRefresh.bundle/arrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/Pods/MJRefresh/MJRefresh/MJRefresh.bundle/arrow@2x.png -------------------------------------------------------------------------------- /LZBYKLive/Pods/Mantle/Mantle/NSObject+MTLComparisonAdditions.h: -------------------------------------------------------------------------------- 1 | // 2 | // NSObject+MTLComparisonAdditions.h 3 | // Mantle 4 | // 5 | // Created by Josh Vera on 10/26/12. 6 | // Copyright (c) 2012 GitHub. All rights reserved. 7 | // 8 | // Portions copyright (c) 2011 Bitswift. All rights reserved. 9 | // See the LICENSE file for more information. 10 | // 11 | 12 | #import 13 | 14 | /// Returns whether both objects are identical or equal via -isEqual: 15 | BOOL MTLEqualObjects(id obj1, id obj2); 16 | -------------------------------------------------------------------------------- /LZBYKLive/Pods/Mantle/Mantle/NSObject+MTLComparisonAdditions.m: -------------------------------------------------------------------------------- 1 | // 2 | // NSObject+MTLComparisonAdditions.m 3 | // Mantle 4 | // 5 | // Created by Josh Vera on 10/26/12. 6 | // Copyright (c) 2012 GitHub. All rights reserved. 7 | // 8 | // Portions copyright (c) 2011 Bitswift. All rights reserved. 9 | // See the LICENSE file for more information. 10 | // 11 | 12 | #import "NSObject+MTLComparisonAdditions.h" 13 | 14 | BOOL MTLEqualObjects(id obj1, id obj2) { 15 | return (obj1 == obj2 || [obj1 isEqual:obj2]); 16 | } 17 | -------------------------------------------------------------------------------- /LZBYKLive/Pods/Mantle/Mantle/extobjc/EXTScope.m: -------------------------------------------------------------------------------- 1 | // 2 | // EXTScope.m 3 | // extobjc 4 | // 5 | // Created by Justin Spahr-Summers on 2011-05-04. 6 | // Copyright (C) 2012 Justin Spahr-Summers. 7 | // Released under the MIT license. 8 | // 9 | 10 | #import "EXTScope.h" 11 | 12 | void mtl_executeCleanupBlock (__strong mtl_cleanupBlock_t *block) { 13 | (*block)(); 14 | } 15 | 16 | -------------------------------------------------------------------------------- /LZBYKLive/Pods/Masonry/Masonry/MASLayoutConstraint.m: -------------------------------------------------------------------------------- 1 | // 2 | // MASLayoutConstraint.m 3 | // Masonry 4 | // 5 | // Created by Jonas Budelmann on 3/08/13. 6 | // Copyright (c) 2013 Jonas Budelmann. All rights reserved. 7 | // 8 | 9 | #import "MASLayoutConstraint.h" 10 | 11 | @implementation MASLayoutConstraint 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /LZBYKLive/Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.h: -------------------------------------------------------------------------------- 1 | // 2 | // NSLayoutConstraint+MASDebugAdditions.h 3 | // Masonry 4 | // 5 | // Created by Jonas Budelmann on 3/08/13. 6 | // Copyright (c) 2013 Jonas Budelmann. All rights reserved. 7 | // 8 | 9 | #import "MASUtilities.h" 10 | 11 | /** 12 | * makes debug and log output of NSLayoutConstraints more readable 13 | */ 14 | @interface NSLayoutConstraint (MASDebugAdditions) 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /LZBYKLive/Pods/ReactiveCocoa/ReactiveCocoa/NSArray+RACSequenceAdditions.m: -------------------------------------------------------------------------------- 1 | // 2 | // NSArray+RACSequenceAdditions.m 3 | // ReactiveCocoa 4 | // 5 | // Created by Justin Spahr-Summers on 2012-10-29. 6 | // Copyright (c) 2012 GitHub. All rights reserved. 7 | // 8 | 9 | #import "NSArray+RACSequenceAdditions.h" 10 | #import "RACArraySequence.h" 11 | 12 | @implementation NSArray (RACSequenceAdditions) 13 | 14 | - (RACSequence *)rac_sequence { 15 | return [RACArraySequence sequenceWithArray:self offset:0]; 16 | } 17 | 18 | @end 19 | -------------------------------------------------------------------------------- /LZBYKLive/Pods/ReactiveCocoa/ReactiveCocoa/NSFileHandle+RACSupport.h: -------------------------------------------------------------------------------- 1 | // 2 | // NSFileHandle+RACSupport.h 3 | // ReactiveCocoa 4 | // 5 | // Created by Josh Abernathy on 5/10/12. 6 | // Copyright (c) 2012 GitHub. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @class RACSignal; 12 | 13 | @interface NSFileHandle (RACSupport) 14 | 15 | // Read any available data in the background and send it. Completes when data 16 | // length is <= 0. 17 | - (RACSignal *)rac_readInBackground; 18 | 19 | @end 20 | -------------------------------------------------------------------------------- /LZBYKLive/Pods/ReactiveCocoa/ReactiveCocoa/NSIndexSet+RACSequenceAdditions.m: -------------------------------------------------------------------------------- 1 | // 2 | // NSIndexSet+RACSequenceAdditions.m 3 | // ReactiveCocoa 4 | // 5 | // Created by Sergey Gavrilyuk on 12/17/13. 6 | // Copyright (c) 2013 GitHub, Inc. All rights reserved. 7 | // 8 | 9 | #import "NSIndexSet+RACSequenceAdditions.h" 10 | #import "RACIndexSetSequence.h" 11 | 12 | @implementation NSIndexSet (RACSequenceAdditions) 13 | 14 | - (RACSequence *)rac_sequence { 15 | return [RACIndexSetSequence sequenceWithIndexSet:self]; 16 | } 17 | 18 | @end 19 | -------------------------------------------------------------------------------- /LZBYKLive/Pods/ReactiveCocoa/ReactiveCocoa/NSNotificationCenter+RACSupport.h: -------------------------------------------------------------------------------- 1 | // 2 | // NSNotificationCenter+RACSupport.h 3 | // ReactiveCocoa 4 | // 5 | // Created by Josh Abernathy on 5/10/12. 6 | // Copyright (c) 2012 GitHub. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @class RACSignal; 12 | 13 | @interface NSNotificationCenter (RACSupport) 14 | 15 | // Sends the NSNotification every time the notification is posted. 16 | - (RACSignal *)rac_addObserverForName:(NSString *)notificationName object:(id)object; 17 | 18 | @end 19 | -------------------------------------------------------------------------------- /LZBYKLive/Pods/ReactiveCocoa/ReactiveCocoa/NSSet+RACSequenceAdditions.m: -------------------------------------------------------------------------------- 1 | // 2 | // NSSet+RACSequenceAdditions.m 3 | // ReactiveCocoa 4 | // 5 | // Created by Justin Spahr-Summers on 2012-10-29. 6 | // Copyright (c) 2012 GitHub. All rights reserved. 7 | // 8 | 9 | #import "NSSet+RACSequenceAdditions.h" 10 | #import "NSArray+RACSequenceAdditions.h" 11 | 12 | @implementation NSSet (RACSequenceAdditions) 13 | 14 | - (RACSequence *)rac_sequence { 15 | // TODO: First class support for set sequences. 16 | return self.allObjects.rac_sequence; 17 | } 18 | 19 | @end 20 | -------------------------------------------------------------------------------- /LZBYKLive/Pods/ReactiveCocoa/ReactiveCocoa/NSString+RACSequenceAdditions.m: -------------------------------------------------------------------------------- 1 | // 2 | // NSString+RACSequenceAdditions.m 3 | // ReactiveCocoa 4 | // 5 | // Created by Justin Spahr-Summers on 2012-10-29. 6 | // Copyright (c) 2012 GitHub. All rights reserved. 7 | // 8 | 9 | #import "NSString+RACSequenceAdditions.h" 10 | #import "RACStringSequence.h" 11 | 12 | @implementation NSString (RACSequenceAdditions) 13 | 14 | - (RACSequence *)rac_sequence { 15 | return [RACStringSequence sequenceWithString:self offset:0]; 16 | } 17 | 18 | @end 19 | -------------------------------------------------------------------------------- /LZBYKLive/Pods/ReactiveCocoa/ReactiveCocoa/RACCompoundDisposableProvider.d: -------------------------------------------------------------------------------- 1 | provider RACCompoundDisposable { 2 | probe added(char *compoundDisposable, char *disposable, long newTotal); 3 | probe removed(char *compoundDisposable, char *disposable, long newTotal); 4 | }; 5 | -------------------------------------------------------------------------------- /LZBYKLive/Pods/ReactiveCocoa/ReactiveCocoa/RACDynamicSignal.h: -------------------------------------------------------------------------------- 1 | // 2 | // RACDynamicSignal.h 3 | // ReactiveCocoa 4 | // 5 | // Created by Justin Spahr-Summers on 2013-10-10. 6 | // Copyright (c) 2013 GitHub, Inc. All rights reserved. 7 | // 8 | 9 | #import "RACSignal.h" 10 | 11 | // A private `RACSignal` subclasses that implements its subscription behavior 12 | // using a block. 13 | @interface RACDynamicSignal : RACSignal 14 | 15 | + (RACSignal *)createSignal:(RACDisposable * (^)(id subscriber))didSubscribe; 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /LZBYKLive/Pods/ReactiveCocoa/ReactiveCocoa/RACEagerSequence.h: -------------------------------------------------------------------------------- 1 | // 2 | // RACEagerSequence.h 3 | // ReactiveCocoa 4 | // 5 | // Created by Uri Baghin on 02/01/2013. 6 | // Copyright (c) 2013 GitHub, Inc. All rights reserved. 7 | // 8 | 9 | #import "RACArraySequence.h" 10 | 11 | // Private class that implements an eager sequence. 12 | @interface RACEagerSequence : RACArraySequence 13 | 14 | @end 15 | -------------------------------------------------------------------------------- /LZBYKLive/Pods/ReactiveCocoa/ReactiveCocoa/RACEmptySequence.h: -------------------------------------------------------------------------------- 1 | // 2 | // RACEmptySequence.h 3 | // ReactiveCocoa 4 | // 5 | // Created by Justin Spahr-Summers on 2012-10-29. 6 | // Copyright (c) 2012 GitHub. All rights reserved. 7 | // 8 | 9 | #import "RACSequence.h" 10 | 11 | // Private class representing an empty sequence. 12 | @interface RACEmptySequence : RACSequence 13 | 14 | @end 15 | -------------------------------------------------------------------------------- /LZBYKLive/Pods/ReactiveCocoa/ReactiveCocoa/RACEmptySignal.h: -------------------------------------------------------------------------------- 1 | // 2 | // RACEmptySignal.h 3 | // ReactiveCocoa 4 | // 5 | // Created by Justin Spahr-Summers on 2013-10-10. 6 | // Copyright (c) 2013 GitHub, Inc. All rights reserved. 7 | // 8 | 9 | #import "RACSignal.h" 10 | 11 | // A private `RACSignal` subclasses that synchronously sends completed to any 12 | // subscribers. 13 | @interface RACEmptySignal : RACSignal 14 | 15 | + (RACSignal *)empty; 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /LZBYKLive/Pods/ReactiveCocoa/ReactiveCocoa/RACErrorSignal.h: -------------------------------------------------------------------------------- 1 | // 2 | // RACErrorSignal.h 3 | // ReactiveCocoa 4 | // 5 | // Created by Justin Spahr-Summers on 2013-10-10. 6 | // Copyright (c) 2013 GitHub, Inc. All rights reserved. 7 | // 8 | 9 | #import "RACSignal.h" 10 | 11 | // A private `RACSignal` subclasses that synchronously sends an error to any 12 | // subscribers. 13 | @interface RACErrorSignal : RACSignal 14 | 15 | + (RACSignal *)error:(NSError *)error; 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /LZBYKLive/Pods/ReactiveCocoa/ReactiveCocoa/RACGroupedSignal.h: -------------------------------------------------------------------------------- 1 | // 2 | // RACGroupedSignal.h 3 | // ReactiveCocoa 4 | // 5 | // Created by Josh Abernathy on 5/2/12. 6 | // Copyright (c) 2012 GitHub, Inc. All rights reserved. 7 | // 8 | 9 | #import "RACSubject.h" 10 | 11 | /// A grouped signal is used by -[RACSignal groupBy:transform:]. 12 | @interface RACGroupedSignal : RACSubject 13 | 14 | /// The key shared by the group. 15 | @property (nonatomic, readonly, copy) id key; 16 | 17 | + (instancetype)signalWithKey:(id)key; 18 | 19 | @end 20 | -------------------------------------------------------------------------------- /LZBYKLive/Pods/ReactiveCocoa/ReactiveCocoa/RACImmediateScheduler.h: -------------------------------------------------------------------------------- 1 | // 2 | // RACImmediateScheduler.h 3 | // ReactiveCocoa 4 | // 5 | // Created by Josh Abernathy on 11/30/12. 6 | // Copyright (c) 2012 GitHub, Inc. All rights reserved. 7 | // 8 | 9 | #import "RACScheduler.h" 10 | 11 | // A private scheduler which immediately executes its scheduled blocks. 12 | @interface RACImmediateScheduler : RACScheduler 13 | 14 | @end 15 | -------------------------------------------------------------------------------- /LZBYKLive/Pods/ReactiveCocoa/ReactiveCocoa/RACIndexSetSequence.h: -------------------------------------------------------------------------------- 1 | // 2 | // RACIndexSetSequence.h 3 | // ReactiveCocoa 4 | // 5 | // Created by Sergey Gavrilyuk on 12/18/13. 6 | // Copyright (c) 2013 GitHub, Inc. All rights reserved. 7 | // 8 | 9 | #import "RACSequence.h" 10 | 11 | // Private class that adapts an array to the RACSequence interface. 12 | @interface RACIndexSetSequence : RACSequence 13 | 14 | + (instancetype)sequenceWithIndexSet:(NSIndexSet *)indexSet; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /LZBYKLive/Pods/ReactiveCocoa/ReactiveCocoa/RACMulticastConnection+Private.h: -------------------------------------------------------------------------------- 1 | // 2 | // RACMulticastConnection+Private.h 3 | // ReactiveCocoa 4 | // 5 | // Created by Josh Abernathy on 4/11/12. 6 | // Copyright (c) 2012 GitHub, Inc. All rights reserved. 7 | // 8 | 9 | #import "RACMulticastConnection.h" 10 | 11 | @class RACSubject; 12 | 13 | @interface RACMulticastConnection () 14 | 15 | - (id)initWithSourceSignal:(RACSignal *)source subject:(RACSubject *)subject; 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /LZBYKLive/Pods/ReactiveCocoa/ReactiveCocoa/RACObjCRuntime.h: -------------------------------------------------------------------------------- 1 | // 2 | // RACObjCRuntime.h 3 | // ReactiveCocoa 4 | // 5 | // Created by Cody Krieger on 5/19/12. 6 | // Copyright (c) 2012 GitHub, Inc. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | // A private class containing wrappers to runtime functions. 12 | @interface RACObjCRuntime : NSObject 13 | 14 | // Invokes objc_allocateClassPair(). Can be called from ARC code. 15 | + (Class)createClass:(const char *)className inheritingFromClass:(Class)superclass; 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /LZBYKLive/Pods/ReactiveCocoa/ReactiveCocoa/RACReturnSignal.h: -------------------------------------------------------------------------------- 1 | // 2 | // RACReturnSignal.h 3 | // ReactiveCocoa 4 | // 5 | // Created by Justin Spahr-Summers on 2013-10-10. 6 | // Copyright (c) 2013 GitHub, Inc. All rights reserved. 7 | // 8 | 9 | #import "RACSignal.h" 10 | 11 | // A private `RACSignal` subclasses that synchronously sends a value to any 12 | // subscribers, then completes. 13 | @interface RACReturnSignal : RACSignal 14 | 15 | + (RACSignal *)return:(id)value; 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /LZBYKLive/Pods/ReactiveCocoa/ReactiveCocoa/RACSignalProvider.d: -------------------------------------------------------------------------------- 1 | provider RACSignal { 2 | probe next(char *signal, char *subscriber, char *valueDescription); 3 | probe completed(char *signal, char *subscriber); 4 | probe error(char *signal, char *subscriber, char *errorDescription); 5 | }; 6 | -------------------------------------------------------------------------------- /LZBYKLive/Pods/ReactiveCocoa/ReactiveCocoa/RACSubscriptionScheduler.h: -------------------------------------------------------------------------------- 1 | // 2 | // RACSubscriptionScheduler.h 3 | // ReactiveCocoa 4 | // 5 | // Created by Josh Abernathy on 11/30/12. 6 | // Copyright (c) 2012 GitHub, Inc. All rights reserved. 7 | // 8 | 9 | #import "RACScheduler.h" 10 | 11 | // A private scheduler used only for subscriptions. See the private 12 | // +[RACScheduler subscriptionScheduler] method for more information. 13 | @interface RACSubscriptionScheduler : RACScheduler 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /LZBYKLive/Pods/ReactiveCocoa/ReactiveCocoa/RACUnarySequence.h: -------------------------------------------------------------------------------- 1 | // 2 | // RACUnarySequence.h 3 | // ReactiveCocoa 4 | // 5 | // Created by Justin Spahr-Summers on 2013-05-01. 6 | // Copyright (c) 2013 GitHub, Inc. All rights reserved. 7 | // 8 | 9 | #import "RACSequence.h" 10 | 11 | // Private class representing a sequence of exactly one value. 12 | @interface RACUnarySequence : RACSequence 13 | 14 | @end 15 | -------------------------------------------------------------------------------- /LZBYKLive/Pods/ReactiveCocoa/ReactiveCocoa/RACUnit.h: -------------------------------------------------------------------------------- 1 | // 2 | // RACUnit.h 3 | // ReactiveCocoa 4 | // 5 | // Created by Josh Abernathy on 3/27/12. 6 | // Copyright (c) 2012 GitHub, Inc. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | /// A unit represents an empty value. 12 | /// 13 | /// It should never be necessary to create a unit yourself. Just use +defaultUnit. 14 | @interface RACUnit : NSObject 15 | 16 | /// A singleton instance. 17 | + (RACUnit *)defaultUnit; 18 | 19 | @end 20 | -------------------------------------------------------------------------------- /LZBYKLive/Pods/ReactiveCocoa/ReactiveCocoa/RACUnit.m: -------------------------------------------------------------------------------- 1 | // 2 | // RACUnit.m 3 | // ReactiveCocoa 4 | // 5 | // Created by Josh Abernathy on 3/27/12. 6 | // Copyright (c) 2012 GitHub, Inc. All rights reserved. 7 | // 8 | 9 | #import "RACUnit.h" 10 | 11 | @implementation RACUnit 12 | 13 | #pragma mark API 14 | 15 | + (RACUnit *)defaultUnit { 16 | static dispatch_once_t onceToken; 17 | static RACUnit *defaultUnit = nil; 18 | dispatch_once(&onceToken, ^{ 19 | defaultUnit = [[self alloc] init]; 20 | }); 21 | 22 | return defaultUnit; 23 | } 24 | 25 | @end 26 | -------------------------------------------------------------------------------- /LZBYKLive/Pods/ReactiveCocoa/ReactiveCocoa/RACValueTransformer.h: -------------------------------------------------------------------------------- 1 | // 2 | // RACValueTransformer.h 3 | // ReactiveCocoa 4 | // 5 | // Created by Josh Abernathy on 3/6/12. 6 | // Copyright (c) 2012 GitHub, Inc. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | // A private block based transformer. 12 | @interface RACValueTransformer : NSValueTransformer 13 | 14 | + (instancetype)transformerWithBlock:(id (^)(id value))block; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /LZBYKLive/Pods/ReactiveCocoa/ReactiveCocoa/UIGestureRecognizer+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | // 2 | // UIGestureRecognizer+RACSignalSupport.h 3 | // ReactiveCocoa 4 | // 5 | // Created by Josh Vera on 5/5/13. 6 | // Copyright (c) 2013 GitHub. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @class RACSignal; 12 | 13 | @interface UIGestureRecognizer (RACSignalSupport) 14 | 15 | /// Returns a signal that sends the receiver when its gesture occurs. 16 | - (RACSignal *)rac_gestureSignal; 17 | 18 | @end 19 | -------------------------------------------------------------------------------- /LZBYKLive/Pods/SDWebImage/SDWebImage/SDWebImageOperation.h: -------------------------------------------------------------------------------- 1 | /* 2 | * This file is part of the SDWebImage package. 3 | * (c) Olivier Poitrey 4 | * 5 | * For the full copyright and license information, please view the LICENSE 6 | * file that was distributed with this source code. 7 | */ 8 | 9 | #import 10 | 11 | @protocol SDWebImageOperation 12 | 13 | - (void)cancel; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /LZBYKLive/Pods/SDWebImage/SDWebImage/UIImage+GIF.h: -------------------------------------------------------------------------------- 1 | // 2 | // UIImage+GIF.h 3 | // LBGIFImage 4 | // 5 | // Created by Laurin Brandner on 06.01.12. 6 | // Copyright (c) 2012 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface UIImage (GIF) 12 | 13 | + (UIImage *)sd_animatedGIFNamed:(NSString *)name; 14 | 15 | + (UIImage *)sd_animatedGIFWithData:(NSData *)data; 16 | 17 | - (UIImage *)sd_animatedImageByScalingAndCroppingToSize:(CGSize)size; 18 | 19 | @end 20 | -------------------------------------------------------------------------------- /LZBYKLive/Pods/SDWebImage/SDWebImage/UIImage+MultiFormat.h: -------------------------------------------------------------------------------- 1 | // 2 | // UIImage+MultiFormat.h 3 | // SDWebImage 4 | // 5 | // Created by Olivier Poitrey on 07/06/13. 6 | // Copyright (c) 2013 Dailymotion. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface UIImage (MultiFormat) 12 | 13 | + (UIImage *)sd_imageWithData:(NSData *)data; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /LZBYKLive/Pods/SVProgressHUD/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 | -------------------------------------------------------------------------------- /LZBYKLive/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/angle-mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/angle-mask.png -------------------------------------------------------------------------------- /LZBYKLive/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/angle-mask@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/angle-mask@2x.png -------------------------------------------------------------------------------- /LZBYKLive/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/angle-mask@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/angle-mask@3x.png -------------------------------------------------------------------------------- /LZBYKLive/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/error.png -------------------------------------------------------------------------------- /LZBYKLive/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/error@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/error@2x.png -------------------------------------------------------------------------------- /LZBYKLive/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/error@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/error@3x.png -------------------------------------------------------------------------------- /LZBYKLive/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/info.png -------------------------------------------------------------------------------- /LZBYKLive/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/info@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/info@2x.png -------------------------------------------------------------------------------- /LZBYKLive/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/info@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/info@3x.png -------------------------------------------------------------------------------- /LZBYKLive/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/success.png -------------------------------------------------------------------------------- /LZBYKLive/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/success@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/success@2x.png -------------------------------------------------------------------------------- /LZBYKLive/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/success@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzbgithubcode/LZBYKLive/b240908c957193f039b6c6476b83a9366624c6de/LZBYKLive/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/success@3x.png -------------------------------------------------------------------------------- /LZBYKLive/Pods/Target Support Files/AFNetworking/AFNetworking-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_AFNetworking : NSObject 3 | @end 4 | @implementation PodsDummy_AFNetworking 5 | @end 6 | -------------------------------------------------------------------------------- /LZBYKLive/Pods/Target Support Files/AFNetworking/AFNetworking-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | #ifndef TARGET_OS_IOS 14 | #define TARGET_OS_IOS TARGET_OS_IPHONE 15 | #endif 16 | 17 | #ifndef TARGET_OS_WATCH 18 | #define TARGET_OS_WATCH 0 19 | #endif 20 | -------------------------------------------------------------------------------- /LZBYKLive/Pods/Target Support Files/MJRefresh/MJRefresh-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_MJRefresh : NSObject 3 | @end 4 | @implementation PodsDummy_MJRefresh 5 | @end 6 | -------------------------------------------------------------------------------- /LZBYKLive/Pods/Target Support Files/MJRefresh/MJRefresh-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | -------------------------------------------------------------------------------- /LZBYKLive/Pods/Target Support Files/Mantle/Mantle-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Mantle : NSObject 3 | @end 4 | @implementation PodsDummy_Mantle 5 | @end 6 | -------------------------------------------------------------------------------- /LZBYKLive/Pods/Target Support Files/Mantle/Mantle-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | -------------------------------------------------------------------------------- /LZBYKLive/Pods/Target Support Files/Masonry/Masonry-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Masonry : NSObject 3 | @end 4 | @implementation PodsDummy_Masonry 5 | @end 6 | -------------------------------------------------------------------------------- /LZBYKLive/Pods/Target Support Files/Masonry/Masonry-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | -------------------------------------------------------------------------------- /LZBYKLive/Pods/Target Support Files/Pods-LZBYKLive/Pods-LZBYKLive-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_LZBYKLive : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_LZBYKLive 5 | @end 6 | -------------------------------------------------------------------------------- /LZBYKLive/Pods/Target Support Files/ReactiveCocoa/ReactiveCocoa-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_ReactiveCocoa : NSObject 3 | @end 4 | @implementation PodsDummy_ReactiveCocoa 5 | @end 6 | -------------------------------------------------------------------------------- /LZBYKLive/Pods/Target Support Files/ReactiveCocoa/ReactiveCocoa-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | -------------------------------------------------------------------------------- /LZBYKLive/Pods/Target Support Files/SDWebImage/SDWebImage-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_SDWebImage : NSObject 3 | @end 4 | @implementation PodsDummy_SDWebImage 5 | @end 6 | -------------------------------------------------------------------------------- /LZBYKLive/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | -------------------------------------------------------------------------------- /LZBYKLive/Pods/Target Support Files/SVProgressHUD/SVProgressHUD-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_SVProgressHUD : NSObject 3 | @end 4 | @implementation PodsDummy_SVProgressHUD 5 | @end 6 | -------------------------------------------------------------------------------- /LZBYKLive/Pods/Target Support Files/SVProgressHUD/SVProgressHUD-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | --------------------------------------------------------------------------------