├── ImageAndVideoAndRecord.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── lidanyang.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── lidanyang.xcuserdatad │ └── xcschemes │ ├── ImageAndVideoAndRecord.xcscheme │ └── xcschememanagement.plist ├── ImageAndVideoAndRecord.xcworkspace ├── contents.xcworkspacedata ├── xcshareddata │ └── IDEWorkspaceChecks.plist └── xcuserdata │ └── lidanyang.xcuserdatad │ ├── UserInterfaceState.xcuserstate │ └── xcdebugger │ └── Breakpoints_v2.xcbkptlist ├── ImageAndVideoAndRecord ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ ├── camera.imageset │ │ ├── Contents.json │ │ ├── camera@2x.png │ │ └── camera@3x.png │ ├── close.imageset │ │ ├── Contents.json │ │ ├── close@2x.png │ │ └── close@3x.png │ ├── delete28.imageset │ │ ├── Contents.json │ │ ├── delete28@2x.png │ │ └── delete28@3x.png │ ├── flash_d.imageset │ │ ├── Contents.json │ │ ├── flash_d@2x.png │ │ └── flash_d@3x.png │ ├── flash_s.imageset │ │ ├── Contents.json │ │ ├── flash_s@2x.png │ │ └── flash_s@3x.png │ ├── plus.imageset │ │ ├── Contents.json │ │ ├── plus@2x.png │ │ └── plus@3x.png │ ├── second_img_d.imageset │ │ ├── Contents.json │ │ ├── second_img_d@2x.png │ │ └── second_img_d@3x.png │ ├── second_img_s.imageset │ │ ├── Contents.json │ │ ├── second_img_s@2x.png │ │ └── second_img_s@3x.png │ ├── second_sounding_d.imageset │ │ ├── Contents.json │ │ ├── second_sounding_d@2x.png │ │ └── second_sounding_d@3x.png │ ├── second_sounding_s.imageset │ │ ├── Contents.json │ │ ├── second_sounding_s@2x.png │ │ └── second_sounding_s@3x.png │ ├── second_video_d.imageset │ │ ├── Contents.json │ │ ├── second_video_d@2x.png │ │ └── second_video_d@3x.png │ ├── second_video_s.imageset │ │ ├── Contents.json │ │ ├── second_video_s@2x.png │ │ └── second_video_s@3x.png │ ├── sound 1.imageset │ │ ├── Contents.json │ │ └── sound 1.png │ ├── sound 2.imageset │ │ ├── Contents.json │ │ └── sound 2.png │ ├── sound 3.imageset │ │ ├── Contents.json │ │ └── sound.png │ └── sound.imageset │ │ ├── Contents.json │ │ └── sound.png ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── ImageCollection │ ├── CircleCellModel.h │ ├── CircleCellModel.m │ ├── CircleCollectionView.h │ ├── CircleCollectionView.m │ ├── CircleCollectionViewCell.h │ └── CircleCollectionViewCell.m ├── Info.plist ├── KZSmallVideoRecorder │ ├── KZSmallVideoRecorder │ │ ├── KZVideoConfig.h │ │ ├── KZVideoConfig.m │ │ ├── KZVideoListViewController.h │ │ ├── KZVideoListViewController.m │ │ ├── KZVideoPlayer.h │ │ ├── KZVideoPlayer.m │ │ ├── KZVideoSupport.h │ │ ├── KZVideoSupport.m │ │ ├── KZVideoViewController.h │ │ └── KZVideoViewController.m │ ├── LICENSE │ └── README.md ├── LGSound │ ├── LGAudioKit.h │ ├── LGMessageModel.h │ ├── LGMessageModel.m │ ├── LGSoundPlayer │ │ ├── LGAudioPlayer.h │ │ └── LGAudioPlayer.m │ ├── LGSoundRecorder │ │ ├── LGSoundRecorder.h │ │ └── LGSoundRecorder.m │ ├── Resource │ │ ├── toast_cancelsend@2x.png │ │ ├── toast_microphone@2x.png │ │ ├── toast_timeshort@2x.png │ │ ├── toast_vol_1@2x.png │ │ ├── toast_vol_2@2x.png │ │ ├── toast_vol_3@2x.png │ │ ├── toast_vol_4@2x.png │ │ ├── toast_vol_5@2x.png │ │ ├── toast_vol_6@2x.png │ │ └── toast_vol_7@2x.png │ ├── Vendor │ │ └── AMR │ │ │ ├── amrFileCodec.h │ │ │ ├── amrFileCodec.m │ │ │ ├── include │ │ │ ├── opencore-amrnb │ │ │ │ ├── interf_dec.h │ │ │ │ └── interf_enc.h │ │ │ └── opencore-amrwb │ │ │ │ ├── dec_if.h │ │ │ │ └── if_rom.h │ │ │ └── lib │ │ │ ├── libopencore-amrnb.a │ │ │ └── libopencore-amrwb.a │ └── lame │ │ ├── lame.h │ │ └── libmp3lame.a ├── MBProgress+ │ ├── MBProgressHUD+MJ.h │ └── MBProgressHUD+MJ.m ├── PlaceholderTextView │ ├── PlaceholderTextView.h │ └── PlaceholderTextView.m ├── ShowView │ ├── showVideoView.h │ └── showVideoView.m ├── UIView+ │ ├── UIView+Size.h │ └── UIView+Size.m ├── ViewController.h ├── ViewController.m ├── ZZPhotoRE │ ├── Public │ │ ├── Other │ │ │ ├── UIImageHandle.h │ │ │ ├── UIImageHandle.m │ │ │ ├── ZZAlumAnimation.h │ │ │ └── ZZAlumAnimation.m │ │ ├── Resources │ │ │ ├── back_button_normal.png │ │ │ ├── camera_focus_pic.png │ │ │ ├── change_camera_pic.png │ │ │ ├── determiner_s@2x.png │ │ │ ├── determiner_s@3x.png │ │ │ ├── flash_close_pic.png │ │ │ ├── flash_open_pic.png │ │ │ ├── no_data.png │ │ │ ├── photo_add.png │ │ │ ├── remove_btn_pic.png │ │ │ ├── select_no.png │ │ │ ├── select_yes.png │ │ │ ├── take_photo_pic.png │ │ │ ├── take_photo_pic@2x.png │ │ │ ├── trash_btn_pic.png │ │ │ └── zz_alumb_rightCell.png │ │ └── ZZResourceConfig.h │ ├── ZZBrowser │ │ ├── ZZBrowserPickerCell.h │ │ ├── ZZBrowserPickerCell.m │ │ ├── ZZBrowserPickerViewController.h │ │ ├── ZZBrowserPickerViewController.m │ │ ├── ZZPageControl.h │ │ └── ZZPageControl.m │ ├── ZZCamera │ │ ├── Controller │ │ │ ├── ZZCameraBrowerViewController.h │ │ │ ├── ZZCameraBrowerViewController.m │ │ │ ├── ZZCameraController.h │ │ │ ├── ZZCameraController.m │ │ │ ├── ZZCameraPickerViewController.h │ │ │ └── ZZCameraPickerViewController.m │ │ ├── Model │ │ │ ├── ZZCamera.h │ │ │ └── ZZCamera.m │ │ └── View │ │ │ ├── ZZCameraFocusView.h │ │ │ ├── ZZCameraFocusView.m │ │ │ ├── ZZCameraPickerCell.h │ │ │ └── ZZCameraPickerCell.m │ ├── ZZPhoto │ │ ├── Controller │ │ │ ├── ZZPhotoBrowerViewController.h │ │ │ ├── ZZPhotoBrowerViewController.m │ │ │ ├── ZZPhotoController.h │ │ │ ├── ZZPhotoController.m │ │ │ ├── ZZPhotoListViewController.h │ │ │ ├── ZZPhotoListViewController.m │ │ │ ├── ZZPhotoPickerViewController.h │ │ │ └── ZZPhotoPickerViewController.m │ │ ├── Model │ │ │ ├── ZZPhoto.h │ │ │ ├── ZZPhoto.m │ │ │ ├── ZZPhotoDatas.h │ │ │ ├── ZZPhotoDatas.m │ │ │ ├── ZZPhotoListModel.h │ │ │ └── ZZPhotoListModel.m │ │ └── View │ │ │ ├── ZZPhotoAlert.h │ │ │ ├── ZZPhotoAlert.m │ │ │ ├── ZZPhotoHud.h │ │ │ ├── ZZPhotoHud.m │ │ │ ├── ZZPhotoListCell.h │ │ │ ├── ZZPhotoListCell.m │ │ │ ├── ZZPhotoPickerCell.h │ │ │ └── ZZPhotoPickerCell.m │ └── ZZPhotoKit.h └── main.m ├── ImageAndVideoAndRecordTests ├── ImageAndVideoAndRecordTests.m └── Info.plist ├── ImageAndVideoAndRecordUITests ├── ImageAndVideoAndRecordUITests.m └── Info.plist ├── ImageFolder ├── ImageGif.gif └── WechatIMG63.jpg ├── Podfile ├── Podfile.lock ├── Pods ├── Headers │ ├── Private │ │ ├── MBProgressHUD │ │ │ └── MBProgressHUD.h │ │ ├── Masonry │ │ │ ├── MASCompositeConstraint.h │ │ │ ├── MASConstraint+Private.h │ │ │ ├── MASConstraint.h │ │ │ ├── MASConstraintMaker.h │ │ │ ├── MASLayoutConstraint.h │ │ │ ├── MASUtilities.h │ │ │ ├── MASViewAttribute.h │ │ │ ├── MASViewConstraint.h │ │ │ ├── Masonry.h │ │ │ ├── NSArray+MASAdditions.h │ │ │ ├── NSArray+MASShorthandAdditions.h │ │ │ ├── NSLayoutConstraint+MASDebugAdditions.h │ │ │ ├── View+MASAdditions.h │ │ │ ├── View+MASShorthandAdditions.h │ │ │ └── ViewController+MASAdditions.h │ │ └── SDWebImage │ │ │ ├── NSData+ImageContentType.h │ │ │ ├── SDImageCache.h │ │ │ ├── SDWebImageCompat.h │ │ │ ├── SDWebImageDecoder.h │ │ │ ├── SDWebImageDownloader.h │ │ │ ├── SDWebImageDownloaderOperation.h │ │ │ ├── SDWebImageManager.h │ │ │ ├── SDWebImageOperation.h │ │ │ ├── SDWebImagePrefetcher.h │ │ │ ├── UIButton+WebCache.h │ │ │ ├── UIImage+GIF.h │ │ │ ├── UIImage+MultiFormat.h │ │ │ ├── UIImageView+HighlightedWebCache.h │ │ │ ├── UIImageView+WebCache.h │ │ │ └── UIView+WebCacheOperation.h │ └── Public │ │ ├── MBProgressHUD │ │ └── MBProgressHUD.h │ │ ├── Masonry │ │ ├── MASCompositeConstraint.h │ │ ├── MASConstraint+Private.h │ │ ├── MASConstraint.h │ │ ├── MASConstraintMaker.h │ │ ├── MASLayoutConstraint.h │ │ ├── MASUtilities.h │ │ ├── MASViewAttribute.h │ │ ├── MASViewConstraint.h │ │ ├── Masonry.h │ │ ├── NSArray+MASAdditions.h │ │ ├── NSArray+MASShorthandAdditions.h │ │ ├── NSLayoutConstraint+MASDebugAdditions.h │ │ ├── View+MASAdditions.h │ │ ├── View+MASShorthandAdditions.h │ │ └── ViewController+MASAdditions.h │ │ └── SDWebImage │ │ ├── NSData+ImageContentType.h │ │ ├── SDImageCache.h │ │ ├── SDWebImageCompat.h │ │ ├── SDWebImageDecoder.h │ │ ├── SDWebImageDownloader.h │ │ ├── SDWebImageDownloaderOperation.h │ │ ├── SDWebImageManager.h │ │ ├── SDWebImageOperation.h │ │ ├── SDWebImagePrefetcher.h │ │ ├── UIButton+WebCache.h │ │ ├── UIImage+GIF.h │ │ ├── UIImage+MultiFormat.h │ │ ├── UIImageView+HighlightedWebCache.h │ │ ├── UIImageView+WebCache.h │ │ └── UIView+WebCacheOperation.h ├── MBProgressHUD │ ├── LICENSE │ ├── MBProgressHUD.h │ ├── MBProgressHUD.m │ └── README.mdown ├── Manifest.lock ├── Masonry │ ├── LICENSE │ ├── Masonry │ │ ├── MASCompositeConstraint.h │ │ ├── MASCompositeConstraint.m │ │ ├── MASConstraint+Private.h │ │ ├── MASConstraint.h │ │ ├── MASConstraint.m │ │ ├── MASConstraintMaker.h │ │ ├── MASConstraintMaker.m │ │ ├── MASLayoutConstraint.h │ │ ├── MASLayoutConstraint.m │ │ ├── MASUtilities.h │ │ ├── MASViewAttribute.h │ │ ├── MASViewAttribute.m │ │ ├── MASViewConstraint.h │ │ ├── MASViewConstraint.m │ │ ├── Masonry.h │ │ ├── NSArray+MASAdditions.h │ │ ├── NSArray+MASAdditions.m │ │ ├── NSArray+MASShorthandAdditions.h │ │ ├── NSLayoutConstraint+MASDebugAdditions.h │ │ ├── NSLayoutConstraint+MASDebugAdditions.m │ │ ├── View+MASAdditions.h │ │ ├── View+MASAdditions.m │ │ ├── View+MASShorthandAdditions.h │ │ ├── ViewController+MASAdditions.h │ │ └── ViewController+MASAdditions.m │ └── README.md ├── Pods.xcodeproj │ ├── project.pbxproj │ └── xcuserdata │ │ └── lidanyang.xcuserdatad │ │ └── xcschemes │ │ ├── MBProgressHUD.xcscheme │ │ ├── Masonry.xcscheme │ │ ├── Pods-ImageAndVideoAndRecord.xcscheme │ │ ├── SDWebImage.xcscheme │ │ └── xcschememanagement.plist ├── SDWebImage │ ├── LICENSE │ ├── README.md │ └── SDWebImage │ │ ├── NSData+ImageContentType.h │ │ ├── NSData+ImageContentType.m │ │ ├── SDImageCache.h │ │ ├── SDImageCache.m │ │ ├── SDWebImageCompat.h │ │ ├── SDWebImageCompat.m │ │ ├── SDWebImageDecoder.h │ │ ├── SDWebImageDecoder.m │ │ ├── SDWebImageDownloader.h │ │ ├── SDWebImageDownloader.m │ │ ├── SDWebImageDownloaderOperation.h │ │ ├── SDWebImageDownloaderOperation.m │ │ ├── SDWebImageManager.h │ │ ├── SDWebImageManager.m │ │ ├── SDWebImageOperation.h │ │ ├── SDWebImagePrefetcher.h │ │ ├── SDWebImagePrefetcher.m │ │ ├── UIButton+WebCache.h │ │ ├── UIButton+WebCache.m │ │ ├── UIImage+GIF.h │ │ ├── UIImage+GIF.m │ │ ├── UIImage+MultiFormat.h │ │ ├── UIImage+MultiFormat.m │ │ ├── UIImageView+HighlightedWebCache.h │ │ ├── UIImageView+HighlightedWebCache.m │ │ ├── UIImageView+WebCache.h │ │ ├── UIImageView+WebCache.m │ │ ├── UIView+WebCacheOperation.h │ │ └── UIView+WebCacheOperation.m └── Target Support Files │ ├── MBProgressHUD │ ├── MBProgressHUD-dummy.m │ ├── MBProgressHUD-prefix.pch │ └── MBProgressHUD.xcconfig │ ├── Masonry │ ├── Masonry-dummy.m │ ├── Masonry-prefix.pch │ └── Masonry.xcconfig │ ├── Pods-ImageAndVideoAndRecord │ ├── Pods-ImageAndVideoAndRecord-acknowledgements.markdown │ ├── Pods-ImageAndVideoAndRecord-acknowledgements.plist │ ├── Pods-ImageAndVideoAndRecord-dummy.m │ ├── Pods-ImageAndVideoAndRecord-frameworks.sh │ ├── Pods-ImageAndVideoAndRecord-resources.sh │ ├── Pods-ImageAndVideoAndRecord.debug.xcconfig │ └── Pods-ImageAndVideoAndRecord.release.xcconfig │ └── SDWebImage │ ├── SDWebImage-dummy.m │ ├── SDWebImage-prefix.pch │ └── SDWebImage.xcconfig └── README.md /ImageAndVideoAndRecord.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ImageAndVideoAndRecord.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ImageAndVideoAndRecord.xcodeproj/project.xcworkspace/xcuserdata/lidanyang.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord.xcodeproj/project.xcworkspace/xcuserdata/lidanyang.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /ImageAndVideoAndRecord.xcodeproj/xcuserdata/lidanyang.xcuserdatad/xcschemes/ImageAndVideoAndRecord.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord.xcodeproj/xcuserdata/lidanyang.xcuserdatad/xcschemes/ImageAndVideoAndRecord.xcscheme -------------------------------------------------------------------------------- /ImageAndVideoAndRecord.xcodeproj/xcuserdata/lidanyang.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord.xcodeproj/xcuserdata/lidanyang.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /ImageAndVideoAndRecord.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ImageAndVideoAndRecord.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ImageAndVideoAndRecord.xcworkspace/xcuserdata/lidanyang.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord.xcworkspace/xcuserdata/lidanyang.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /ImageAndVideoAndRecord.xcworkspace/xcuserdata/lidanyang.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord.xcworkspace/xcuserdata/lidanyang.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/AppDelegate.h -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/AppDelegate.m -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/Assets.xcassets/camera.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/Assets.xcassets/camera.imageset/Contents.json -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/Assets.xcassets/camera.imageset/camera@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/Assets.xcassets/camera.imageset/camera@2x.png -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/Assets.xcassets/camera.imageset/camera@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/Assets.xcassets/camera.imageset/camera@3x.png -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/Assets.xcassets/close.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/Assets.xcassets/close.imageset/Contents.json -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/Assets.xcassets/close.imageset/close@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/Assets.xcassets/close.imageset/close@2x.png -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/Assets.xcassets/close.imageset/close@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/Assets.xcassets/close.imageset/close@3x.png -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/Assets.xcassets/delete28.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/Assets.xcassets/delete28.imageset/Contents.json -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/Assets.xcassets/delete28.imageset/delete28@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/Assets.xcassets/delete28.imageset/delete28@2x.png -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/Assets.xcassets/delete28.imageset/delete28@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/Assets.xcassets/delete28.imageset/delete28@3x.png -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/Assets.xcassets/flash_d.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/Assets.xcassets/flash_d.imageset/Contents.json -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/Assets.xcassets/flash_d.imageset/flash_d@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/Assets.xcassets/flash_d.imageset/flash_d@2x.png -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/Assets.xcassets/flash_d.imageset/flash_d@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/Assets.xcassets/flash_d.imageset/flash_d@3x.png -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/Assets.xcassets/flash_s.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/Assets.xcassets/flash_s.imageset/Contents.json -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/Assets.xcassets/flash_s.imageset/flash_s@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/Assets.xcassets/flash_s.imageset/flash_s@2x.png -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/Assets.xcassets/flash_s.imageset/flash_s@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/Assets.xcassets/flash_s.imageset/flash_s@3x.png -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/Assets.xcassets/plus.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/Assets.xcassets/plus.imageset/Contents.json -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/Assets.xcassets/plus.imageset/plus@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/Assets.xcassets/plus.imageset/plus@2x.png -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/Assets.xcassets/plus.imageset/plus@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/Assets.xcassets/plus.imageset/plus@3x.png -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/Assets.xcassets/second_img_d.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/Assets.xcassets/second_img_d.imageset/Contents.json -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/Assets.xcassets/second_img_d.imageset/second_img_d@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/Assets.xcassets/second_img_d.imageset/second_img_d@2x.png -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/Assets.xcassets/second_img_d.imageset/second_img_d@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/Assets.xcassets/second_img_d.imageset/second_img_d@3x.png -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/Assets.xcassets/second_img_s.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/Assets.xcassets/second_img_s.imageset/Contents.json -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/Assets.xcassets/second_img_s.imageset/second_img_s@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/Assets.xcassets/second_img_s.imageset/second_img_s@2x.png -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/Assets.xcassets/second_img_s.imageset/second_img_s@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/Assets.xcassets/second_img_s.imageset/second_img_s@3x.png -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/Assets.xcassets/second_sounding_d.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/Assets.xcassets/second_sounding_d.imageset/Contents.json -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/Assets.xcassets/second_sounding_d.imageset/second_sounding_d@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/Assets.xcassets/second_sounding_d.imageset/second_sounding_d@2x.png -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/Assets.xcassets/second_sounding_d.imageset/second_sounding_d@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/Assets.xcassets/second_sounding_d.imageset/second_sounding_d@3x.png -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/Assets.xcassets/second_sounding_s.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/Assets.xcassets/second_sounding_s.imageset/Contents.json -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/Assets.xcassets/second_sounding_s.imageset/second_sounding_s@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/Assets.xcassets/second_sounding_s.imageset/second_sounding_s@2x.png -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/Assets.xcassets/second_sounding_s.imageset/second_sounding_s@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/Assets.xcassets/second_sounding_s.imageset/second_sounding_s@3x.png -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/Assets.xcassets/second_video_d.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/Assets.xcassets/second_video_d.imageset/Contents.json -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/Assets.xcassets/second_video_d.imageset/second_video_d@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/Assets.xcassets/second_video_d.imageset/second_video_d@2x.png -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/Assets.xcassets/second_video_d.imageset/second_video_d@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/Assets.xcassets/second_video_d.imageset/second_video_d@3x.png -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/Assets.xcassets/second_video_s.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/Assets.xcassets/second_video_s.imageset/Contents.json -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/Assets.xcassets/second_video_s.imageset/second_video_s@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/Assets.xcassets/second_video_s.imageset/second_video_s@2x.png -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/Assets.xcassets/second_video_s.imageset/second_video_s@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/Assets.xcassets/second_video_s.imageset/second_video_s@3x.png -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/Assets.xcassets/sound 1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/Assets.xcassets/sound 1.imageset/Contents.json -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/Assets.xcassets/sound 1.imageset/sound 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/Assets.xcassets/sound 1.imageset/sound 1.png -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/Assets.xcassets/sound 2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/Assets.xcassets/sound 2.imageset/Contents.json -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/Assets.xcassets/sound 2.imageset/sound 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/Assets.xcassets/sound 2.imageset/sound 2.png -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/Assets.xcassets/sound 3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/Assets.xcassets/sound 3.imageset/Contents.json -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/Assets.xcassets/sound 3.imageset/sound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/Assets.xcassets/sound 3.imageset/sound.png -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/Assets.xcassets/sound.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/Assets.xcassets/sound.imageset/Contents.json -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/Assets.xcassets/sound.imageset/sound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/Assets.xcassets/sound.imageset/sound.png -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/ImageCollection/CircleCellModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/ImageCollection/CircleCellModel.h -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/ImageCollection/CircleCellModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/ImageCollection/CircleCellModel.m -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/ImageCollection/CircleCollectionView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/ImageCollection/CircleCollectionView.h -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/ImageCollection/CircleCollectionView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/ImageCollection/CircleCollectionView.m -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/ImageCollection/CircleCollectionViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/ImageCollection/CircleCollectionViewCell.h -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/ImageCollection/CircleCollectionViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/ImageCollection/CircleCollectionViewCell.m -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/Info.plist -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/KZSmallVideoRecorder/KZSmallVideoRecorder/KZVideoConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/KZSmallVideoRecorder/KZSmallVideoRecorder/KZVideoConfig.h -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/KZSmallVideoRecorder/KZSmallVideoRecorder/KZVideoConfig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/KZSmallVideoRecorder/KZSmallVideoRecorder/KZVideoConfig.m -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/KZSmallVideoRecorder/KZSmallVideoRecorder/KZVideoListViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/KZSmallVideoRecorder/KZSmallVideoRecorder/KZVideoListViewController.h -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/KZSmallVideoRecorder/KZSmallVideoRecorder/KZVideoListViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/KZSmallVideoRecorder/KZSmallVideoRecorder/KZVideoListViewController.m -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/KZSmallVideoRecorder/KZSmallVideoRecorder/KZVideoPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/KZSmallVideoRecorder/KZSmallVideoRecorder/KZVideoPlayer.h -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/KZSmallVideoRecorder/KZSmallVideoRecorder/KZVideoPlayer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/KZSmallVideoRecorder/KZSmallVideoRecorder/KZVideoPlayer.m -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/KZSmallVideoRecorder/KZSmallVideoRecorder/KZVideoSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/KZSmallVideoRecorder/KZSmallVideoRecorder/KZVideoSupport.h -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/KZSmallVideoRecorder/KZSmallVideoRecorder/KZVideoSupport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/KZSmallVideoRecorder/KZSmallVideoRecorder/KZVideoSupport.m -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/KZSmallVideoRecorder/KZSmallVideoRecorder/KZVideoViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/KZSmallVideoRecorder/KZSmallVideoRecorder/KZVideoViewController.h -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/KZSmallVideoRecorder/KZSmallVideoRecorder/KZVideoViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/KZSmallVideoRecorder/KZSmallVideoRecorder/KZVideoViewController.m -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/KZSmallVideoRecorder/LICENSE: -------------------------------------------------------------------------------- 1 | LICENSE 2 | Created by HouKangzhu on 16/7/26. 3 | Copyright © 2016年 侯康柱. All rights reserved. -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/KZSmallVideoRecorder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/KZSmallVideoRecorder/README.md -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/LGSound/LGAudioKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/LGSound/LGAudioKit.h -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/LGSound/LGMessageModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/LGSound/LGMessageModel.h -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/LGSound/LGMessageModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/LGSound/LGMessageModel.m -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/LGSound/LGSoundPlayer/LGAudioPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/LGSound/LGSoundPlayer/LGAudioPlayer.h -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/LGSound/LGSoundPlayer/LGAudioPlayer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/LGSound/LGSoundPlayer/LGAudioPlayer.m -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/LGSound/LGSoundRecorder/LGSoundRecorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/LGSound/LGSoundRecorder/LGSoundRecorder.h -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/LGSound/LGSoundRecorder/LGSoundRecorder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/LGSound/LGSoundRecorder/LGSoundRecorder.m -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/LGSound/Resource/toast_cancelsend@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/LGSound/Resource/toast_cancelsend@2x.png -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/LGSound/Resource/toast_microphone@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/LGSound/Resource/toast_microphone@2x.png -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/LGSound/Resource/toast_timeshort@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/LGSound/Resource/toast_timeshort@2x.png -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/LGSound/Resource/toast_vol_1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/LGSound/Resource/toast_vol_1@2x.png -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/LGSound/Resource/toast_vol_2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/LGSound/Resource/toast_vol_2@2x.png -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/LGSound/Resource/toast_vol_3@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/LGSound/Resource/toast_vol_3@2x.png -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/LGSound/Resource/toast_vol_4@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/LGSound/Resource/toast_vol_4@2x.png -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/LGSound/Resource/toast_vol_5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/LGSound/Resource/toast_vol_5@2x.png -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/LGSound/Resource/toast_vol_6@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/LGSound/Resource/toast_vol_6@2x.png -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/LGSound/Resource/toast_vol_7@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/LGSound/Resource/toast_vol_7@2x.png -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/LGSound/Vendor/AMR/amrFileCodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/LGSound/Vendor/AMR/amrFileCodec.h -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/LGSound/Vendor/AMR/amrFileCodec.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/LGSound/Vendor/AMR/amrFileCodec.m -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/LGSound/Vendor/AMR/include/opencore-amrnb/interf_dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/LGSound/Vendor/AMR/include/opencore-amrnb/interf_dec.h -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/LGSound/Vendor/AMR/include/opencore-amrnb/interf_enc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/LGSound/Vendor/AMR/include/opencore-amrnb/interf_enc.h -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/LGSound/Vendor/AMR/include/opencore-amrwb/dec_if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/LGSound/Vendor/AMR/include/opencore-amrwb/dec_if.h -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/LGSound/Vendor/AMR/include/opencore-amrwb/if_rom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/LGSound/Vendor/AMR/include/opencore-amrwb/if_rom.h -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/LGSound/Vendor/AMR/lib/libopencore-amrnb.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/LGSound/Vendor/AMR/lib/libopencore-amrnb.a -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/LGSound/Vendor/AMR/lib/libopencore-amrwb.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/LGSound/Vendor/AMR/lib/libopencore-amrwb.a -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/LGSound/lame/lame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/LGSound/lame/lame.h -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/LGSound/lame/libmp3lame.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/LGSound/lame/libmp3lame.a -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/MBProgress+/MBProgressHUD+MJ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/MBProgress+/MBProgressHUD+MJ.h -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/MBProgress+/MBProgressHUD+MJ.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/MBProgress+/MBProgressHUD+MJ.m -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/PlaceholderTextView/PlaceholderTextView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/PlaceholderTextView/PlaceholderTextView.h -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/PlaceholderTextView/PlaceholderTextView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/PlaceholderTextView/PlaceholderTextView.m -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/ShowView/showVideoView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/ShowView/showVideoView.h -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/ShowView/showVideoView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/ShowView/showVideoView.m -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/UIView+/UIView+Size.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/UIView+/UIView+Size.h -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/UIView+/UIView+Size.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/UIView+/UIView+Size.m -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/ViewController.h -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/ViewController.m -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/ZZPhotoRE/Public/Other/UIImageHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/ZZPhotoRE/Public/Other/UIImageHandle.h -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/ZZPhotoRE/Public/Other/UIImageHandle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/ZZPhotoRE/Public/Other/UIImageHandle.m -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/ZZPhotoRE/Public/Other/ZZAlumAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/ZZPhotoRE/Public/Other/ZZAlumAnimation.h -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/ZZPhotoRE/Public/Other/ZZAlumAnimation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/ZZPhotoRE/Public/Other/ZZAlumAnimation.m -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/ZZPhotoRE/Public/Resources/back_button_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/ZZPhotoRE/Public/Resources/back_button_normal.png -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/ZZPhotoRE/Public/Resources/camera_focus_pic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/ZZPhotoRE/Public/Resources/camera_focus_pic.png -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/ZZPhotoRE/Public/Resources/change_camera_pic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/ZZPhotoRE/Public/Resources/change_camera_pic.png -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/ZZPhotoRE/Public/Resources/determiner_s@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/ZZPhotoRE/Public/Resources/determiner_s@2x.png -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/ZZPhotoRE/Public/Resources/determiner_s@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/ZZPhotoRE/Public/Resources/determiner_s@3x.png -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/ZZPhotoRE/Public/Resources/flash_close_pic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/ZZPhotoRE/Public/Resources/flash_close_pic.png -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/ZZPhotoRE/Public/Resources/flash_open_pic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/ZZPhotoRE/Public/Resources/flash_open_pic.png -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/ZZPhotoRE/Public/Resources/no_data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/ZZPhotoRE/Public/Resources/no_data.png -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/ZZPhotoRE/Public/Resources/photo_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/ZZPhotoRE/Public/Resources/photo_add.png -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/ZZPhotoRE/Public/Resources/remove_btn_pic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/ZZPhotoRE/Public/Resources/remove_btn_pic.png -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/ZZPhotoRE/Public/Resources/select_no.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/ZZPhotoRE/Public/Resources/select_no.png -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/ZZPhotoRE/Public/Resources/select_yes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/ZZPhotoRE/Public/Resources/select_yes.png -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/ZZPhotoRE/Public/Resources/take_photo_pic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/ZZPhotoRE/Public/Resources/take_photo_pic.png -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/ZZPhotoRE/Public/Resources/take_photo_pic@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/ZZPhotoRE/Public/Resources/take_photo_pic@2x.png -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/ZZPhotoRE/Public/Resources/trash_btn_pic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/ZZPhotoRE/Public/Resources/trash_btn_pic.png -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/ZZPhotoRE/Public/Resources/zz_alumb_rightCell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/ZZPhotoRE/Public/Resources/zz_alumb_rightCell.png -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/ZZPhotoRE/Public/ZZResourceConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/ZZPhotoRE/Public/ZZResourceConfig.h -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/ZZPhotoRE/ZZBrowser/ZZBrowserPickerCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/ZZPhotoRE/ZZBrowser/ZZBrowserPickerCell.h -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/ZZPhotoRE/ZZBrowser/ZZBrowserPickerCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/ZZPhotoRE/ZZBrowser/ZZBrowserPickerCell.m -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/ZZPhotoRE/ZZBrowser/ZZBrowserPickerViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/ZZPhotoRE/ZZBrowser/ZZBrowserPickerViewController.h -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/ZZPhotoRE/ZZBrowser/ZZBrowserPickerViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/ZZPhotoRE/ZZBrowser/ZZBrowserPickerViewController.m -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/ZZPhotoRE/ZZBrowser/ZZPageControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/ZZPhotoRE/ZZBrowser/ZZPageControl.h -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/ZZPhotoRE/ZZBrowser/ZZPageControl.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/ZZPhotoRE/ZZBrowser/ZZPageControl.m -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/ZZPhotoRE/ZZCamera/Controller/ZZCameraBrowerViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/ZZPhotoRE/ZZCamera/Controller/ZZCameraBrowerViewController.h -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/ZZPhotoRE/ZZCamera/Controller/ZZCameraBrowerViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/ZZPhotoRE/ZZCamera/Controller/ZZCameraBrowerViewController.m -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/ZZPhotoRE/ZZCamera/Controller/ZZCameraController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/ZZPhotoRE/ZZCamera/Controller/ZZCameraController.h -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/ZZPhotoRE/ZZCamera/Controller/ZZCameraController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/ZZPhotoRE/ZZCamera/Controller/ZZCameraController.m -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/ZZPhotoRE/ZZCamera/Controller/ZZCameraPickerViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/ZZPhotoRE/ZZCamera/Controller/ZZCameraPickerViewController.h -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/ZZPhotoRE/ZZCamera/Controller/ZZCameraPickerViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/ZZPhotoRE/ZZCamera/Controller/ZZCameraPickerViewController.m -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/ZZPhotoRE/ZZCamera/Model/ZZCamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/ZZPhotoRE/ZZCamera/Model/ZZCamera.h -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/ZZPhotoRE/ZZCamera/Model/ZZCamera.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/ZZPhotoRE/ZZCamera/Model/ZZCamera.m -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/ZZPhotoRE/ZZCamera/View/ZZCameraFocusView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/ZZPhotoRE/ZZCamera/View/ZZCameraFocusView.h -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/ZZPhotoRE/ZZCamera/View/ZZCameraFocusView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/ZZPhotoRE/ZZCamera/View/ZZCameraFocusView.m -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/ZZPhotoRE/ZZCamera/View/ZZCameraPickerCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/ZZPhotoRE/ZZCamera/View/ZZCameraPickerCell.h -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/ZZPhotoRE/ZZCamera/View/ZZCameraPickerCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/ZZPhotoRE/ZZCamera/View/ZZCameraPickerCell.m -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/ZZPhotoRE/ZZPhoto/Controller/ZZPhotoBrowerViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/ZZPhotoRE/ZZPhoto/Controller/ZZPhotoBrowerViewController.h -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/ZZPhotoRE/ZZPhoto/Controller/ZZPhotoBrowerViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/ZZPhotoRE/ZZPhoto/Controller/ZZPhotoBrowerViewController.m -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/ZZPhotoRE/ZZPhoto/Controller/ZZPhotoController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/ZZPhotoRE/ZZPhoto/Controller/ZZPhotoController.h -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/ZZPhotoRE/ZZPhoto/Controller/ZZPhotoController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/ZZPhotoRE/ZZPhoto/Controller/ZZPhotoController.m -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/ZZPhotoRE/ZZPhoto/Controller/ZZPhotoListViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/ZZPhotoRE/ZZPhoto/Controller/ZZPhotoListViewController.h -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/ZZPhotoRE/ZZPhoto/Controller/ZZPhotoListViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/ZZPhotoRE/ZZPhoto/Controller/ZZPhotoListViewController.m -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/ZZPhotoRE/ZZPhoto/Controller/ZZPhotoPickerViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/ZZPhotoRE/ZZPhoto/Controller/ZZPhotoPickerViewController.h -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/ZZPhotoRE/ZZPhoto/Controller/ZZPhotoPickerViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/ZZPhotoRE/ZZPhoto/Controller/ZZPhotoPickerViewController.m -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/ZZPhotoRE/ZZPhoto/Model/ZZPhoto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/ZZPhotoRE/ZZPhoto/Model/ZZPhoto.h -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/ZZPhotoRE/ZZPhoto/Model/ZZPhoto.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/ZZPhotoRE/ZZPhoto/Model/ZZPhoto.m -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/ZZPhotoRE/ZZPhoto/Model/ZZPhotoDatas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/ZZPhotoRE/ZZPhoto/Model/ZZPhotoDatas.h -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/ZZPhotoRE/ZZPhoto/Model/ZZPhotoDatas.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/ZZPhotoRE/ZZPhoto/Model/ZZPhotoDatas.m -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/ZZPhotoRE/ZZPhoto/Model/ZZPhotoListModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/ZZPhotoRE/ZZPhoto/Model/ZZPhotoListModel.h -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/ZZPhotoRE/ZZPhoto/Model/ZZPhotoListModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/ZZPhotoRE/ZZPhoto/Model/ZZPhotoListModel.m -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/ZZPhotoRE/ZZPhoto/View/ZZPhotoAlert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/ZZPhotoRE/ZZPhoto/View/ZZPhotoAlert.h -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/ZZPhotoRE/ZZPhoto/View/ZZPhotoAlert.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/ZZPhotoRE/ZZPhoto/View/ZZPhotoAlert.m -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/ZZPhotoRE/ZZPhoto/View/ZZPhotoHud.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/ZZPhotoRE/ZZPhoto/View/ZZPhotoHud.h -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/ZZPhotoRE/ZZPhoto/View/ZZPhotoHud.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/ZZPhotoRE/ZZPhoto/View/ZZPhotoHud.m -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/ZZPhotoRE/ZZPhoto/View/ZZPhotoListCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/ZZPhotoRE/ZZPhoto/View/ZZPhotoListCell.h -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/ZZPhotoRE/ZZPhoto/View/ZZPhotoListCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/ZZPhotoRE/ZZPhoto/View/ZZPhotoListCell.m -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/ZZPhotoRE/ZZPhoto/View/ZZPhotoPickerCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/ZZPhotoRE/ZZPhoto/View/ZZPhotoPickerCell.h -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/ZZPhotoRE/ZZPhoto/View/ZZPhotoPickerCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/ZZPhotoRE/ZZPhoto/View/ZZPhotoPickerCell.m -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/ZZPhotoRE/ZZPhotoKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/ZZPhotoRE/ZZPhotoKit.h -------------------------------------------------------------------------------- /ImageAndVideoAndRecord/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecord/main.m -------------------------------------------------------------------------------- /ImageAndVideoAndRecordTests/ImageAndVideoAndRecordTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecordTests/ImageAndVideoAndRecordTests.m -------------------------------------------------------------------------------- /ImageAndVideoAndRecordTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecordTests/Info.plist -------------------------------------------------------------------------------- /ImageAndVideoAndRecordUITests/ImageAndVideoAndRecordUITests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecordUITests/ImageAndVideoAndRecordUITests.m -------------------------------------------------------------------------------- /ImageAndVideoAndRecordUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageAndVideoAndRecordUITests/Info.plist -------------------------------------------------------------------------------- /ImageFolder/ImageGif.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageFolder/ImageGif.gif -------------------------------------------------------------------------------- /ImageFolder/WechatIMG63.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/ImageFolder/WechatIMG63.jpg -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/Podfile.lock -------------------------------------------------------------------------------- /Pods/Headers/Private/MBProgressHUD/MBProgressHUD.h: -------------------------------------------------------------------------------- 1 | ../../../MBProgressHUD/MBProgressHUD.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/MASCompositeConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASCompositeConstraint.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/MASConstraint+Private.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraint+Private.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/MASConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraint.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/MASConstraintMaker.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraintMaker.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/MASLayoutConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASLayoutConstraint.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/MASUtilities.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASUtilities.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/MASViewAttribute.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASViewAttribute.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/MASViewConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASViewConstraint.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/Masonry.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/Masonry.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/NSArray+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSArray+MASAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/NSArray+MASShorthandAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSArray+MASShorthandAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/NSLayoutConstraint+MASDebugAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/View+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/View+MASAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/View+MASShorthandAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/View+MASShorthandAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/ViewController+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/ViewController+MASAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/NSData+ImageContentType.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/NSData+ImageContentType.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDImageCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDImageCache.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDWebImageCompat.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageCompat.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDWebImageDecoder.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageDecoder.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDWebImageDownloader.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageDownloader.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDWebImageDownloaderOperation.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageDownloaderOperation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDWebImageManager.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageManager.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDWebImageOperation.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageOperation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDWebImagePrefetcher.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImagePrefetcher.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/UIButton+WebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIButton+WebCache.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/UIImage+GIF.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImage+GIF.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/UIImage+MultiFormat.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImage+MultiFormat.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/UIImageView+HighlightedWebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImageView+HighlightedWebCache.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/UIImageView+WebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImageView+WebCache.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/UIView+WebCacheOperation.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIView+WebCacheOperation.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MBProgressHUD/MBProgressHUD.h: -------------------------------------------------------------------------------- 1 | ../../../MBProgressHUD/MBProgressHUD.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/MASCompositeConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASCompositeConstraint.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/MASConstraint+Private.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraint+Private.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/MASConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraint.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/MASConstraintMaker.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraintMaker.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/MASLayoutConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASLayoutConstraint.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/MASUtilities.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASUtilities.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/MASViewAttribute.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASViewAttribute.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/MASViewConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASViewConstraint.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/Masonry.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/Masonry.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/NSArray+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSArray+MASAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/NSArray+MASShorthandAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSArray+MASShorthandAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/NSLayoutConstraint+MASDebugAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/View+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/View+MASAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/View+MASShorthandAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/View+MASShorthandAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/ViewController+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/ViewController+MASAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/NSData+ImageContentType.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/NSData+ImageContentType.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDImageCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDImageCache.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDWebImageCompat.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageCompat.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDWebImageDecoder.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageDecoder.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDWebImageDownloader.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageDownloader.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDWebImageDownloaderOperation.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageDownloaderOperation.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDWebImageManager.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageManager.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDWebImageOperation.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageOperation.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDWebImagePrefetcher.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImagePrefetcher.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/UIButton+WebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIButton+WebCache.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/UIImage+GIF.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImage+GIF.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/UIImage+MultiFormat.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImage+MultiFormat.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/UIImageView+HighlightedWebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImageView+HighlightedWebCache.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/UIImageView+WebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImageView+WebCache.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/UIView+WebCacheOperation.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIView+WebCacheOperation.h -------------------------------------------------------------------------------- /Pods/MBProgressHUD/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/Pods/MBProgressHUD/LICENSE -------------------------------------------------------------------------------- /Pods/MBProgressHUD/MBProgressHUD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/Pods/MBProgressHUD/MBProgressHUD.h -------------------------------------------------------------------------------- /Pods/MBProgressHUD/MBProgressHUD.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/Pods/MBProgressHUD/MBProgressHUD.m -------------------------------------------------------------------------------- /Pods/MBProgressHUD/README.mdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/Pods/MBProgressHUD/README.mdown -------------------------------------------------------------------------------- /Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/Pods/Manifest.lock -------------------------------------------------------------------------------- /Pods/Masonry/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/Pods/Masonry/LICENSE -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASCompositeConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/Pods/Masonry/Masonry/MASCompositeConstraint.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASCompositeConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/Pods/Masonry/Masonry/MASCompositeConstraint.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASConstraint+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/Pods/Masonry/Masonry/MASConstraint+Private.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/Pods/Masonry/Masonry/MASConstraint.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/Pods/Masonry/Masonry/MASConstraint.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASConstraintMaker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/Pods/Masonry/Masonry/MASConstraintMaker.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASConstraintMaker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/Pods/Masonry/Masonry/MASConstraintMaker.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASLayoutConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/Pods/Masonry/Masonry/MASLayoutConstraint.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASLayoutConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/Pods/Masonry/Masonry/MASLayoutConstraint.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/Pods/Masonry/Masonry/MASUtilities.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASViewAttribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/Pods/Masonry/Masonry/MASViewAttribute.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASViewAttribute.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/Pods/Masonry/Masonry/MASViewAttribute.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASViewConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/Pods/Masonry/Masonry/MASViewConstraint.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASViewConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/Pods/Masonry/Masonry/MASViewConstraint.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/Masonry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/Pods/Masonry/Masonry/Masonry.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/NSArray+MASAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/Pods/Masonry/Masonry/NSArray+MASAdditions.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/NSArray+MASAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/Pods/Masonry/Masonry/NSArray+MASAdditions.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/NSArray+MASShorthandAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/Pods/Masonry/Masonry/NSArray+MASShorthandAdditions.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/View+MASAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/Pods/Masonry/Masonry/View+MASAdditions.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/View+MASAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/Pods/Masonry/Masonry/View+MASAdditions.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/View+MASShorthandAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/Pods/Masonry/Masonry/View+MASShorthandAdditions.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/ViewController+MASAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/Pods/Masonry/Masonry/ViewController+MASAdditions.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/ViewController+MASAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/Pods/Masonry/Masonry/ViewController+MASAdditions.m -------------------------------------------------------------------------------- /Pods/Masonry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/Pods/Masonry/README.md -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/lidanyang.xcuserdatad/xcschemes/MBProgressHUD.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/Pods/Pods.xcodeproj/xcuserdata/lidanyang.xcuserdatad/xcschemes/MBProgressHUD.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/lidanyang.xcuserdatad/xcschemes/Masonry.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/Pods/Pods.xcodeproj/xcuserdata/lidanyang.xcuserdatad/xcschemes/Masonry.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/lidanyang.xcuserdatad/xcschemes/Pods-ImageAndVideoAndRecord.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/Pods/Pods.xcodeproj/xcuserdata/lidanyang.xcuserdatad/xcschemes/Pods-ImageAndVideoAndRecord.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/lidanyang.xcuserdatad/xcschemes/SDWebImage.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/Pods/Pods.xcodeproj/xcuserdata/lidanyang.xcuserdatad/xcschemes/SDWebImage.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/lidanyang.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/Pods/Pods.xcodeproj/xcuserdata/lidanyang.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Pods/SDWebImage/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/Pods/SDWebImage/LICENSE -------------------------------------------------------------------------------- /Pods/SDWebImage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/Pods/SDWebImage/README.md -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/NSData+ImageContentType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/Pods/SDWebImage/SDWebImage/NSData+ImageContentType.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/NSData+ImageContentType.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/Pods/SDWebImage/SDWebImage/NSData+ImageContentType.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDImageCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/Pods/SDWebImage/SDWebImage/SDImageCache.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDImageCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/Pods/SDWebImage/SDWebImage/SDImageCache.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageCompat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageCompat.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageCompat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageCompat.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageDecoder.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageDecoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageDecoder.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageDownloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageDownloader.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageDownloader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageDownloader.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageDownloaderOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageDownloaderOperation.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageDownloaderOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageDownloaderOperation.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageManager.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageManager.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageOperation.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImagePrefetcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/Pods/SDWebImage/SDWebImage/SDWebImagePrefetcher.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImagePrefetcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/Pods/SDWebImage/SDWebImage/SDWebImagePrefetcher.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIButton+WebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/Pods/SDWebImage/SDWebImage/UIButton+WebCache.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIButton+WebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/Pods/SDWebImage/SDWebImage/UIButton+WebCache.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIImage+GIF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/Pods/SDWebImage/SDWebImage/UIImage+GIF.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIImage+GIF.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/Pods/SDWebImage/SDWebImage/UIImage+GIF.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIImage+MultiFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/Pods/SDWebImage/SDWebImage/UIImage+MultiFormat.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIImage+MultiFormat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/Pods/SDWebImage/SDWebImage/UIImage+MultiFormat.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIImageView+HighlightedWebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/Pods/SDWebImage/SDWebImage/UIImageView+HighlightedWebCache.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIImageView+HighlightedWebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/Pods/SDWebImage/SDWebImage/UIImageView+HighlightedWebCache.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIImageView+WebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/Pods/SDWebImage/SDWebImage/UIImageView+WebCache.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIImageView+WebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/Pods/SDWebImage/SDWebImage/UIImageView+WebCache.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIView+WebCacheOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/Pods/SDWebImage/SDWebImage/UIView+WebCacheOperation.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIView+WebCacheOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/Pods/SDWebImage/SDWebImage/UIView+WebCacheOperation.m -------------------------------------------------------------------------------- /Pods/Target Support Files/MBProgressHUD/MBProgressHUD-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/Pods/Target Support Files/MBProgressHUD/MBProgressHUD-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/MBProgressHUD/MBProgressHUD-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/Pods/Target Support Files/MBProgressHUD/MBProgressHUD-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/MBProgressHUD/MBProgressHUD.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/Pods/Target Support Files/MBProgressHUD/MBProgressHUD.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Masonry/Masonry-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/Pods/Target Support Files/Masonry/Masonry-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Masonry/Masonry-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/Pods/Target Support Files/Masonry/Masonry-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/Masonry/Masonry.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/Pods/Target Support Files/Masonry/Masonry.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ImageAndVideoAndRecord/Pods-ImageAndVideoAndRecord-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/Pods/Target Support Files/Pods-ImageAndVideoAndRecord/Pods-ImageAndVideoAndRecord-acknowledgements.markdown -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ImageAndVideoAndRecord/Pods-ImageAndVideoAndRecord-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/Pods/Target Support Files/Pods-ImageAndVideoAndRecord/Pods-ImageAndVideoAndRecord-acknowledgements.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ImageAndVideoAndRecord/Pods-ImageAndVideoAndRecord-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/Pods/Target Support Files/Pods-ImageAndVideoAndRecord/Pods-ImageAndVideoAndRecord-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ImageAndVideoAndRecord/Pods-ImageAndVideoAndRecord-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/Pods/Target Support Files/Pods-ImageAndVideoAndRecord/Pods-ImageAndVideoAndRecord-frameworks.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ImageAndVideoAndRecord/Pods-ImageAndVideoAndRecord-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/Pods/Target Support Files/Pods-ImageAndVideoAndRecord/Pods-ImageAndVideoAndRecord-resources.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ImageAndVideoAndRecord/Pods-ImageAndVideoAndRecord.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/Pods/Target Support Files/Pods-ImageAndVideoAndRecord/Pods-ImageAndVideoAndRecord.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ImageAndVideoAndRecord/Pods-ImageAndVideoAndRecord.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/Pods/Target Support Files/Pods-ImageAndVideoAndRecord/Pods-ImageAndVideoAndRecord.release.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/SDWebImage/SDWebImage-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/Pods/Target Support Files/SDWebImage/SDWebImage-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/SDWebImage/SDWebImage.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/Pods/Target Support Files/SDWebImage/SDWebImage.xcconfig -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayCrazy/publishImageAndVideoAnsRecord/HEAD/README.md --------------------------------------------------------------------------------