├── CommentDemo.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── appleboyaug.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── appleboyaug.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── CommentDemo.xcscheme │ └── xcschememanagement.plist ├── CommentDemo ├── 1111.png ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Bullet │ ├── BulletBackgroudView.h │ ├── BulletBackgroudView.m │ ├── BulletManager.h │ ├── BulletManager.m │ ├── BulletView.h │ └── BulletView.m ├── Info.plist ├── ViewController.h ├── ViewController.m └── main.m └── README.md /CommentDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleboyaug/CommentDemo/HEAD/CommentDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CommentDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleboyaug/CommentDemo/HEAD/CommentDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /CommentDemo.xcodeproj/project.xcworkspace/xcuserdata/appleboyaug.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleboyaug/CommentDemo/HEAD/CommentDemo.xcodeproj/project.xcworkspace/xcuserdata/appleboyaug.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /CommentDemo.xcodeproj/xcuserdata/appleboyaug.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleboyaug/CommentDemo/HEAD/CommentDemo.xcodeproj/xcuserdata/appleboyaug.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /CommentDemo.xcodeproj/xcuserdata/appleboyaug.xcuserdatad/xcschemes/CommentDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleboyaug/CommentDemo/HEAD/CommentDemo.xcodeproj/xcuserdata/appleboyaug.xcuserdatad/xcschemes/CommentDemo.xcscheme -------------------------------------------------------------------------------- /CommentDemo.xcodeproj/xcuserdata/appleboyaug.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleboyaug/CommentDemo/HEAD/CommentDemo.xcodeproj/xcuserdata/appleboyaug.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /CommentDemo/1111.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleboyaug/CommentDemo/HEAD/CommentDemo/1111.png -------------------------------------------------------------------------------- /CommentDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleboyaug/CommentDemo/HEAD/CommentDemo/AppDelegate.h -------------------------------------------------------------------------------- /CommentDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleboyaug/CommentDemo/HEAD/CommentDemo/AppDelegate.m -------------------------------------------------------------------------------- /CommentDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleboyaug/CommentDemo/HEAD/CommentDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /CommentDemo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleboyaug/CommentDemo/HEAD/CommentDemo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /CommentDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleboyaug/CommentDemo/HEAD/CommentDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /CommentDemo/Bullet/BulletBackgroudView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleboyaug/CommentDemo/HEAD/CommentDemo/Bullet/BulletBackgroudView.h -------------------------------------------------------------------------------- /CommentDemo/Bullet/BulletBackgroudView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleboyaug/CommentDemo/HEAD/CommentDemo/Bullet/BulletBackgroudView.m -------------------------------------------------------------------------------- /CommentDemo/Bullet/BulletManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleboyaug/CommentDemo/HEAD/CommentDemo/Bullet/BulletManager.h -------------------------------------------------------------------------------- /CommentDemo/Bullet/BulletManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleboyaug/CommentDemo/HEAD/CommentDemo/Bullet/BulletManager.m -------------------------------------------------------------------------------- /CommentDemo/Bullet/BulletView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleboyaug/CommentDemo/HEAD/CommentDemo/Bullet/BulletView.h -------------------------------------------------------------------------------- /CommentDemo/Bullet/BulletView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleboyaug/CommentDemo/HEAD/CommentDemo/Bullet/BulletView.m -------------------------------------------------------------------------------- /CommentDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleboyaug/CommentDemo/HEAD/CommentDemo/Info.plist -------------------------------------------------------------------------------- /CommentDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleboyaug/CommentDemo/HEAD/CommentDemo/ViewController.h -------------------------------------------------------------------------------- /CommentDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleboyaug/CommentDemo/HEAD/CommentDemo/ViewController.m -------------------------------------------------------------------------------- /CommentDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleboyaug/CommentDemo/HEAD/CommentDemo/main.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleboyaug/CommentDemo/HEAD/README.md --------------------------------------------------------------------------------