├── BlackBoardUser.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcuserdata │ └── gaobin.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── BlackBoardUser.xcscheme │ └── xcschememanagement.plist ├── BlackBoardUser ├── ACEDrawingTools.h ├── ACEDrawingTools.m ├── ACEDrawingView.h ├── ACEDrawingView.m ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Common.h ├── Common.m ├── Info.plist ├── KDAlertColorView.h ├── KDAlertColorView.m ├── KDAlertElemntView.h ├── KDAlertElemntView.m ├── KDBTools.h ├── KDBTools.m ├── KDBlackBoardPageView.h ├── KDBlackBoardPageView.m ├── KDBlackBoardViewController.h ├── KDBlackBoardViewController.m ├── KDBlackBoardViewController.xib ├── KDEditImageView.h ├── KDEditImageView.m ├── KDEnlargeView.h ├── KDEnlargeView.m ├── KDMagnifierView.h ├── KDMagnifierView.m ├── KDXRecordAudio.h ├── KDXRecordAudio.m ├── KDXScreenCapture.h ├── KDXScreenCapture.m ├── KDXUtil.h ├── KDXUtil.m ├── PrefixHeader.pch ├── UIkitCateory │ ├── UIButton+Helper.h │ ├── UIButton+Helper.m │ ├── UIImage+Helper.h │ ├── UIImage+Helper.m │ ├── UILabel+KS.h │ ├── UILabel+KS.m │ ├── UIScrollView+HeaderRefresh.h │ ├── UIScrollView+HeaderRefresh.m │ ├── UIView+Helper.h │ └── UIView+Helper.m ├── ViewController.h ├── ViewController.m ├── image │ ├── Change-edge.png │ ├── Change-edge@2x.png │ ├── Close.png │ ├── Close@2x.png │ ├── Fine-pen.png │ ├── Fine-pen@2x.png │ ├── Shift-left.png │ ├── Shift-left@2x.png │ ├── Shift-right.png │ ├── Shift-right@2x.png │ ├── Thick-pen.png │ ├── Thick-pen@2x.png │ ├── b_1.PNG │ ├── b_2.PNG │ ├── b_3.PNG │ ├── b_4.PNG │ ├── b_5.PNG │ ├── b_6.PNG │ ├── bg_Add.png │ ├── bg_Add@2x.png │ ├── bg_Paint-brush.png │ ├── bg_Paint-brush@2x.png │ ├── bg_Recording.png │ ├── bg_Recording@2x.png │ ├── bg_editor.png │ ├── bg_editor@2x.png │ ├── bpv_bg.png │ ├── bpv_bg@2x.png │ ├── btn-downY@2x.png │ ├── btn-upY@2x.png │ ├── btn_-Add-photos.png │ ├── btn_-Add-photos@2x.png │ ├── btn_-Delete.png │ ├── btn_-Delete@2x.png │ ├── btn_-editor.png │ ├── btn_-editor@2x.png │ ├── btn_Drag.png │ ├── btn_Drag@2x.png │ ├── btn_On-one-page.png │ ├── btn_On-one-page@2x.png │ ├── btn_Pause.png │ ├── btn_Pause@2x.png │ ├── btn_Pencil.png │ ├── btn_Pencil@2x.png │ ├── btn_Recording.png │ ├── btn_Recording@2x.png │ ├── btn_Rubber.png │ ├── btn_Rubber@2x.png │ ├── btn_Stop.png │ ├── btn_Stop@2x.png │ ├── btn_Whiteboard.png │ ├── btn_Whiteboard@2x.png │ ├── btn_back.png │ ├── btn_back@2x.png │ ├── btn_camera.png │ ├── btn_camera@2x.png │ ├── btn_ext-page.png │ ├── btn_ext-page@2x.png │ ├── btn_fpho.png │ ├── btn_fpho@2x.png │ ├── btn_photo.png │ ├── btn_photo@2x.png │ ├── btn_time2.png │ ├── btn_time2@2x.png │ ├── btn_time3.png │ ├── btn_time3@2x.png │ ├── help1@2x.png │ ├── help2@2x.png │ ├── icon-Cpen1@2x.png │ ├── icon-Cpen2@2x.png │ ├── icon-Cpen3@2x.png │ ├── icon-right@2x.png │ ├── nst_btn_ext-page.png │ ├── nst_btn_ext-page@2x.png │ ├── st-btn-downY@2x.png │ ├── st-btn-upY@2x.png │ ├── st-icon-Cpen1@2x.png │ ├── st-icon-Cpen2@2x.png │ ├── st-icon-Cpen3@2x.png │ ├── st_Fine-pen.png │ ├── st_Fine-pen@2x.png │ ├── st_Thick-pen.png │ ├── st_Thick-pen@2x.png │ ├── st_btn_-Add-photos.png │ ├── st_btn_-Add-photos@2x.png │ ├── st_btn_-Delete.png │ ├── st_btn_-Delete@2x.png │ ├── st_btn_-editor.png │ ├── st_btn_-editor@2x.png │ ├── st_btn_On-one-page.png │ ├── st_btn_On-one-page@2x.png │ ├── st_btn_Pause.png │ ├── st_btn_Pause@2x.png │ ├── st_btn_Pencil.png │ ├── st_btn_Pencil@2x.png │ ├── st_btn_Recording.png │ ├── st_btn_Recording@2x.png │ ├── st_btn_Rubber.png │ ├── st_btn_Rubber@2x.png │ ├── st_btn_Stop.png │ ├── st_btn_Stop@2x.png │ ├── st_btn_Whiteboard.png │ ├── st_btn_Whiteboard@2x.png │ ├── st_btn_camera.png │ ├── st_btn_camera@2x.png │ ├── st_btn_fpho.png │ ├── st_btn_fpho@2x.png │ ├── st_btn_photo.png │ └── st_btn_photo@2x.png └── main.m ├── BlackBoardUserTests ├── BlackBoardUserTests.m └── Info.plist ├── BlackBoardUserUITests ├── BlackBoardUserUITests.m └── Info.plist └── README.md /BlackBoardUser.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /BlackBoardUser.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /BlackBoardUser.xcodeproj/xcuserdata/gaobin.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser.xcodeproj/xcuserdata/gaobin.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /BlackBoardUser.xcodeproj/xcuserdata/gaobin.xcuserdatad/xcschemes/BlackBoardUser.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser.xcodeproj/xcuserdata/gaobin.xcuserdatad/xcschemes/BlackBoardUser.xcscheme -------------------------------------------------------------------------------- /BlackBoardUser.xcodeproj/xcuserdata/gaobin.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser.xcodeproj/xcuserdata/gaobin.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /BlackBoardUser/ACEDrawingTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/ACEDrawingTools.h -------------------------------------------------------------------------------- /BlackBoardUser/ACEDrawingTools.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/ACEDrawingTools.m -------------------------------------------------------------------------------- /BlackBoardUser/ACEDrawingView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/ACEDrawingView.h -------------------------------------------------------------------------------- /BlackBoardUser/ACEDrawingView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/ACEDrawingView.m -------------------------------------------------------------------------------- /BlackBoardUser/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/AppDelegate.h -------------------------------------------------------------------------------- /BlackBoardUser/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/AppDelegate.m -------------------------------------------------------------------------------- /BlackBoardUser/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /BlackBoardUser/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /BlackBoardUser/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /BlackBoardUser/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/Common.h -------------------------------------------------------------------------------- /BlackBoardUser/Common.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/Common.m -------------------------------------------------------------------------------- /BlackBoardUser/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/Info.plist -------------------------------------------------------------------------------- /BlackBoardUser/KDAlertColorView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/KDAlertColorView.h -------------------------------------------------------------------------------- /BlackBoardUser/KDAlertColorView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/KDAlertColorView.m -------------------------------------------------------------------------------- /BlackBoardUser/KDAlertElemntView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/KDAlertElemntView.h -------------------------------------------------------------------------------- /BlackBoardUser/KDAlertElemntView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/KDAlertElemntView.m -------------------------------------------------------------------------------- /BlackBoardUser/KDBTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/KDBTools.h -------------------------------------------------------------------------------- /BlackBoardUser/KDBTools.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/KDBTools.m -------------------------------------------------------------------------------- /BlackBoardUser/KDBlackBoardPageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/KDBlackBoardPageView.h -------------------------------------------------------------------------------- /BlackBoardUser/KDBlackBoardPageView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/KDBlackBoardPageView.m -------------------------------------------------------------------------------- /BlackBoardUser/KDBlackBoardViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/KDBlackBoardViewController.h -------------------------------------------------------------------------------- /BlackBoardUser/KDBlackBoardViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/KDBlackBoardViewController.m -------------------------------------------------------------------------------- /BlackBoardUser/KDBlackBoardViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/KDBlackBoardViewController.xib -------------------------------------------------------------------------------- /BlackBoardUser/KDEditImageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/KDEditImageView.h -------------------------------------------------------------------------------- /BlackBoardUser/KDEditImageView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/KDEditImageView.m -------------------------------------------------------------------------------- /BlackBoardUser/KDEnlargeView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/KDEnlargeView.h -------------------------------------------------------------------------------- /BlackBoardUser/KDEnlargeView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/KDEnlargeView.m -------------------------------------------------------------------------------- /BlackBoardUser/KDMagnifierView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/KDMagnifierView.h -------------------------------------------------------------------------------- /BlackBoardUser/KDMagnifierView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/KDMagnifierView.m -------------------------------------------------------------------------------- /BlackBoardUser/KDXRecordAudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/KDXRecordAudio.h -------------------------------------------------------------------------------- /BlackBoardUser/KDXRecordAudio.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/KDXRecordAudio.m -------------------------------------------------------------------------------- /BlackBoardUser/KDXScreenCapture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/KDXScreenCapture.h -------------------------------------------------------------------------------- /BlackBoardUser/KDXScreenCapture.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/KDXScreenCapture.m -------------------------------------------------------------------------------- /BlackBoardUser/KDXUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/KDXUtil.h -------------------------------------------------------------------------------- /BlackBoardUser/KDXUtil.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/KDXUtil.m -------------------------------------------------------------------------------- /BlackBoardUser/PrefixHeader.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/PrefixHeader.pch -------------------------------------------------------------------------------- /BlackBoardUser/UIkitCateory/UIButton+Helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/UIkitCateory/UIButton+Helper.h -------------------------------------------------------------------------------- /BlackBoardUser/UIkitCateory/UIButton+Helper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/UIkitCateory/UIButton+Helper.m -------------------------------------------------------------------------------- /BlackBoardUser/UIkitCateory/UIImage+Helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/UIkitCateory/UIImage+Helper.h -------------------------------------------------------------------------------- /BlackBoardUser/UIkitCateory/UIImage+Helper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/UIkitCateory/UIImage+Helper.m -------------------------------------------------------------------------------- /BlackBoardUser/UIkitCateory/UILabel+KS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/UIkitCateory/UILabel+KS.h -------------------------------------------------------------------------------- /BlackBoardUser/UIkitCateory/UILabel+KS.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/UIkitCateory/UILabel+KS.m -------------------------------------------------------------------------------- /BlackBoardUser/UIkitCateory/UIScrollView+HeaderRefresh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/UIkitCateory/UIScrollView+HeaderRefresh.h -------------------------------------------------------------------------------- /BlackBoardUser/UIkitCateory/UIScrollView+HeaderRefresh.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/UIkitCateory/UIScrollView+HeaderRefresh.m -------------------------------------------------------------------------------- /BlackBoardUser/UIkitCateory/UIView+Helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/UIkitCateory/UIView+Helper.h -------------------------------------------------------------------------------- /BlackBoardUser/UIkitCateory/UIView+Helper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/UIkitCateory/UIView+Helper.m -------------------------------------------------------------------------------- /BlackBoardUser/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/ViewController.h -------------------------------------------------------------------------------- /BlackBoardUser/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/ViewController.m -------------------------------------------------------------------------------- /BlackBoardUser/image/Change-edge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/image/Change-edge.png -------------------------------------------------------------------------------- /BlackBoardUser/image/Change-edge@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/image/Change-edge@2x.png -------------------------------------------------------------------------------- /BlackBoardUser/image/Close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/image/Close.png -------------------------------------------------------------------------------- /BlackBoardUser/image/Close@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/image/Close@2x.png -------------------------------------------------------------------------------- /BlackBoardUser/image/Fine-pen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/image/Fine-pen.png -------------------------------------------------------------------------------- /BlackBoardUser/image/Fine-pen@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/image/Fine-pen@2x.png -------------------------------------------------------------------------------- /BlackBoardUser/image/Shift-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/image/Shift-left.png -------------------------------------------------------------------------------- /BlackBoardUser/image/Shift-left@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/image/Shift-left@2x.png -------------------------------------------------------------------------------- /BlackBoardUser/image/Shift-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/image/Shift-right.png -------------------------------------------------------------------------------- /BlackBoardUser/image/Shift-right@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/image/Shift-right@2x.png -------------------------------------------------------------------------------- /BlackBoardUser/image/Thick-pen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/image/Thick-pen.png -------------------------------------------------------------------------------- /BlackBoardUser/image/Thick-pen@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/image/Thick-pen@2x.png -------------------------------------------------------------------------------- /BlackBoardUser/image/b_1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/image/b_1.PNG -------------------------------------------------------------------------------- /BlackBoardUser/image/b_2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/image/b_2.PNG -------------------------------------------------------------------------------- /BlackBoardUser/image/b_3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/image/b_3.PNG -------------------------------------------------------------------------------- /BlackBoardUser/image/b_4.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/image/b_4.PNG -------------------------------------------------------------------------------- /BlackBoardUser/image/b_5.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/image/b_5.PNG -------------------------------------------------------------------------------- /BlackBoardUser/image/b_6.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/image/b_6.PNG -------------------------------------------------------------------------------- /BlackBoardUser/image/bg_Add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/image/bg_Add.png -------------------------------------------------------------------------------- /BlackBoardUser/image/bg_Add@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/image/bg_Add@2x.png -------------------------------------------------------------------------------- /BlackBoardUser/image/bg_Paint-brush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/image/bg_Paint-brush.png -------------------------------------------------------------------------------- /BlackBoardUser/image/bg_Paint-brush@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/image/bg_Paint-brush@2x.png -------------------------------------------------------------------------------- /BlackBoardUser/image/bg_Recording.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/image/bg_Recording.png -------------------------------------------------------------------------------- /BlackBoardUser/image/bg_Recording@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/image/bg_Recording@2x.png -------------------------------------------------------------------------------- /BlackBoardUser/image/bg_editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/image/bg_editor.png -------------------------------------------------------------------------------- /BlackBoardUser/image/bg_editor@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/image/bg_editor@2x.png -------------------------------------------------------------------------------- /BlackBoardUser/image/bpv_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/image/bpv_bg.png -------------------------------------------------------------------------------- /BlackBoardUser/image/bpv_bg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/image/bpv_bg@2x.png -------------------------------------------------------------------------------- /BlackBoardUser/image/btn-downY@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/image/btn-downY@2x.png -------------------------------------------------------------------------------- /BlackBoardUser/image/btn-upY@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/image/btn-upY@2x.png -------------------------------------------------------------------------------- /BlackBoardUser/image/btn_-Add-photos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/image/btn_-Add-photos.png -------------------------------------------------------------------------------- /BlackBoardUser/image/btn_-Add-photos@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/image/btn_-Add-photos@2x.png -------------------------------------------------------------------------------- /BlackBoardUser/image/btn_-Delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/image/btn_-Delete.png -------------------------------------------------------------------------------- /BlackBoardUser/image/btn_-Delete@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/image/btn_-Delete@2x.png -------------------------------------------------------------------------------- /BlackBoardUser/image/btn_-editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/image/btn_-editor.png -------------------------------------------------------------------------------- /BlackBoardUser/image/btn_-editor@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/image/btn_-editor@2x.png -------------------------------------------------------------------------------- /BlackBoardUser/image/btn_Drag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/image/btn_Drag.png -------------------------------------------------------------------------------- /BlackBoardUser/image/btn_Drag@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/image/btn_Drag@2x.png -------------------------------------------------------------------------------- /BlackBoardUser/image/btn_On-one-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/image/btn_On-one-page.png -------------------------------------------------------------------------------- /BlackBoardUser/image/btn_On-one-page@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/image/btn_On-one-page@2x.png -------------------------------------------------------------------------------- /BlackBoardUser/image/btn_Pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/image/btn_Pause.png -------------------------------------------------------------------------------- /BlackBoardUser/image/btn_Pause@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/image/btn_Pause@2x.png -------------------------------------------------------------------------------- /BlackBoardUser/image/btn_Pencil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/image/btn_Pencil.png -------------------------------------------------------------------------------- /BlackBoardUser/image/btn_Pencil@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/image/btn_Pencil@2x.png -------------------------------------------------------------------------------- /BlackBoardUser/image/btn_Recording.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/image/btn_Recording.png -------------------------------------------------------------------------------- /BlackBoardUser/image/btn_Recording@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/image/btn_Recording@2x.png -------------------------------------------------------------------------------- /BlackBoardUser/image/btn_Rubber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/image/btn_Rubber.png -------------------------------------------------------------------------------- /BlackBoardUser/image/btn_Rubber@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/image/btn_Rubber@2x.png -------------------------------------------------------------------------------- /BlackBoardUser/image/btn_Stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/image/btn_Stop.png -------------------------------------------------------------------------------- /BlackBoardUser/image/btn_Stop@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/image/btn_Stop@2x.png -------------------------------------------------------------------------------- /BlackBoardUser/image/btn_Whiteboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/image/btn_Whiteboard.png -------------------------------------------------------------------------------- /BlackBoardUser/image/btn_Whiteboard@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/image/btn_Whiteboard@2x.png -------------------------------------------------------------------------------- /BlackBoardUser/image/btn_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/image/btn_back.png -------------------------------------------------------------------------------- /BlackBoardUser/image/btn_back@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/image/btn_back@2x.png -------------------------------------------------------------------------------- /BlackBoardUser/image/btn_camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/image/btn_camera.png -------------------------------------------------------------------------------- /BlackBoardUser/image/btn_camera@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/image/btn_camera@2x.png -------------------------------------------------------------------------------- /BlackBoardUser/image/btn_ext-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/image/btn_ext-page.png -------------------------------------------------------------------------------- /BlackBoardUser/image/btn_ext-page@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/image/btn_ext-page@2x.png -------------------------------------------------------------------------------- /BlackBoardUser/image/btn_fpho.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/image/btn_fpho.png -------------------------------------------------------------------------------- /BlackBoardUser/image/btn_fpho@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/image/btn_fpho@2x.png -------------------------------------------------------------------------------- /BlackBoardUser/image/btn_photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/image/btn_photo.png -------------------------------------------------------------------------------- /BlackBoardUser/image/btn_photo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/image/btn_photo@2x.png -------------------------------------------------------------------------------- /BlackBoardUser/image/btn_time2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/image/btn_time2.png -------------------------------------------------------------------------------- /BlackBoardUser/image/btn_time2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/image/btn_time2@2x.png -------------------------------------------------------------------------------- /BlackBoardUser/image/btn_time3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/image/btn_time3.png -------------------------------------------------------------------------------- /BlackBoardUser/image/btn_time3@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/image/btn_time3@2x.png -------------------------------------------------------------------------------- /BlackBoardUser/image/help1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/image/help1@2x.png -------------------------------------------------------------------------------- /BlackBoardUser/image/help2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/image/help2@2x.png -------------------------------------------------------------------------------- /BlackBoardUser/image/icon-Cpen1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/image/icon-Cpen1@2x.png -------------------------------------------------------------------------------- /BlackBoardUser/image/icon-Cpen2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/image/icon-Cpen2@2x.png -------------------------------------------------------------------------------- /BlackBoardUser/image/icon-Cpen3@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/image/icon-Cpen3@2x.png -------------------------------------------------------------------------------- /BlackBoardUser/image/icon-right@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/image/icon-right@2x.png -------------------------------------------------------------------------------- /BlackBoardUser/image/nst_btn_ext-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/image/nst_btn_ext-page.png -------------------------------------------------------------------------------- /BlackBoardUser/image/nst_btn_ext-page@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/image/nst_btn_ext-page@2x.png -------------------------------------------------------------------------------- /BlackBoardUser/image/st-btn-downY@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/image/st-btn-downY@2x.png -------------------------------------------------------------------------------- /BlackBoardUser/image/st-btn-upY@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/image/st-btn-upY@2x.png -------------------------------------------------------------------------------- /BlackBoardUser/image/st-icon-Cpen1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/image/st-icon-Cpen1@2x.png -------------------------------------------------------------------------------- /BlackBoardUser/image/st-icon-Cpen2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/image/st-icon-Cpen2@2x.png -------------------------------------------------------------------------------- /BlackBoardUser/image/st-icon-Cpen3@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/image/st-icon-Cpen3@2x.png -------------------------------------------------------------------------------- /BlackBoardUser/image/st_Fine-pen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/image/st_Fine-pen.png -------------------------------------------------------------------------------- /BlackBoardUser/image/st_Fine-pen@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/image/st_Fine-pen@2x.png -------------------------------------------------------------------------------- /BlackBoardUser/image/st_Thick-pen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/image/st_Thick-pen.png -------------------------------------------------------------------------------- /BlackBoardUser/image/st_Thick-pen@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/image/st_Thick-pen@2x.png -------------------------------------------------------------------------------- /BlackBoardUser/image/st_btn_-Add-photos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/image/st_btn_-Add-photos.png -------------------------------------------------------------------------------- /BlackBoardUser/image/st_btn_-Add-photos@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/image/st_btn_-Add-photos@2x.png -------------------------------------------------------------------------------- /BlackBoardUser/image/st_btn_-Delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/image/st_btn_-Delete.png -------------------------------------------------------------------------------- /BlackBoardUser/image/st_btn_-Delete@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/image/st_btn_-Delete@2x.png -------------------------------------------------------------------------------- /BlackBoardUser/image/st_btn_-editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/image/st_btn_-editor.png -------------------------------------------------------------------------------- /BlackBoardUser/image/st_btn_-editor@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/image/st_btn_-editor@2x.png -------------------------------------------------------------------------------- /BlackBoardUser/image/st_btn_On-one-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/image/st_btn_On-one-page.png -------------------------------------------------------------------------------- /BlackBoardUser/image/st_btn_On-one-page@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/image/st_btn_On-one-page@2x.png -------------------------------------------------------------------------------- /BlackBoardUser/image/st_btn_Pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/image/st_btn_Pause.png -------------------------------------------------------------------------------- /BlackBoardUser/image/st_btn_Pause@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/image/st_btn_Pause@2x.png -------------------------------------------------------------------------------- /BlackBoardUser/image/st_btn_Pencil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/image/st_btn_Pencil.png -------------------------------------------------------------------------------- /BlackBoardUser/image/st_btn_Pencil@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/image/st_btn_Pencil@2x.png -------------------------------------------------------------------------------- /BlackBoardUser/image/st_btn_Recording.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/image/st_btn_Recording.png -------------------------------------------------------------------------------- /BlackBoardUser/image/st_btn_Recording@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/image/st_btn_Recording@2x.png -------------------------------------------------------------------------------- /BlackBoardUser/image/st_btn_Rubber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/image/st_btn_Rubber.png -------------------------------------------------------------------------------- /BlackBoardUser/image/st_btn_Rubber@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/image/st_btn_Rubber@2x.png -------------------------------------------------------------------------------- /BlackBoardUser/image/st_btn_Stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/image/st_btn_Stop.png -------------------------------------------------------------------------------- /BlackBoardUser/image/st_btn_Stop@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/image/st_btn_Stop@2x.png -------------------------------------------------------------------------------- /BlackBoardUser/image/st_btn_Whiteboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/image/st_btn_Whiteboard.png -------------------------------------------------------------------------------- /BlackBoardUser/image/st_btn_Whiteboard@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/image/st_btn_Whiteboard@2x.png -------------------------------------------------------------------------------- /BlackBoardUser/image/st_btn_camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/image/st_btn_camera.png -------------------------------------------------------------------------------- /BlackBoardUser/image/st_btn_camera@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/image/st_btn_camera@2x.png -------------------------------------------------------------------------------- /BlackBoardUser/image/st_btn_fpho.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/image/st_btn_fpho.png -------------------------------------------------------------------------------- /BlackBoardUser/image/st_btn_fpho@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/image/st_btn_fpho@2x.png -------------------------------------------------------------------------------- /BlackBoardUser/image/st_btn_photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/image/st_btn_photo.png -------------------------------------------------------------------------------- /BlackBoardUser/image/st_btn_photo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/image/st_btn_photo@2x.png -------------------------------------------------------------------------------- /BlackBoardUser/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUser/main.m -------------------------------------------------------------------------------- /BlackBoardUserTests/BlackBoardUserTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUserTests/BlackBoardUserTests.m -------------------------------------------------------------------------------- /BlackBoardUserTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUserTests/Info.plist -------------------------------------------------------------------------------- /BlackBoardUserUITests/BlackBoardUserUITests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUserUITests/BlackBoardUserUITests.m -------------------------------------------------------------------------------- /BlackBoardUserUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/BlackBoardUserUITests/Info.plist -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBin647/BlackBoardUser/HEAD/README.md --------------------------------------------------------------------------------