├── LICENSE ├── README.md ├── WebViewWithProgressLine.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcuserdata │ └── Michael.xcuserdatad │ └── xcschemes │ ├── WebViewWithProgressLine.xcscheme │ └── xcschememanagement.plist └── WebViewWithProgressLine ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets └── AppIcon.appiconset │ └── Contents.json ├── Base.lproj ├── LaunchScreen.storyboard └── Main.storyboard ├── Info.plist ├── ViewController.h ├── ViewController.m └── main.m /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timehzy/WebViewWithProgressLine/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # WebViewWithProgressLine 2 | 带加载进度条的webView,效果类似Safari 3 | 4 | 了解详情请前往http://www.jianshu.com/p/24b3e3ddc946 -------------------------------------------------------------------------------- /WebViewWithProgressLine.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timehzy/WebViewWithProgressLine/HEAD/WebViewWithProgressLine.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /WebViewWithProgressLine.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timehzy/WebViewWithProgressLine/HEAD/WebViewWithProgressLine.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /WebViewWithProgressLine.xcodeproj/xcuserdata/Michael.xcuserdatad/xcschemes/WebViewWithProgressLine.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timehzy/WebViewWithProgressLine/HEAD/WebViewWithProgressLine.xcodeproj/xcuserdata/Michael.xcuserdatad/xcschemes/WebViewWithProgressLine.xcscheme -------------------------------------------------------------------------------- /WebViewWithProgressLine.xcodeproj/xcuserdata/Michael.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timehzy/WebViewWithProgressLine/HEAD/WebViewWithProgressLine.xcodeproj/xcuserdata/Michael.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /WebViewWithProgressLine/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timehzy/WebViewWithProgressLine/HEAD/WebViewWithProgressLine/AppDelegate.h -------------------------------------------------------------------------------- /WebViewWithProgressLine/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timehzy/WebViewWithProgressLine/HEAD/WebViewWithProgressLine/AppDelegate.m -------------------------------------------------------------------------------- /WebViewWithProgressLine/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timehzy/WebViewWithProgressLine/HEAD/WebViewWithProgressLine/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /WebViewWithProgressLine/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timehzy/WebViewWithProgressLine/HEAD/WebViewWithProgressLine/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /WebViewWithProgressLine/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timehzy/WebViewWithProgressLine/HEAD/WebViewWithProgressLine/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /WebViewWithProgressLine/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timehzy/WebViewWithProgressLine/HEAD/WebViewWithProgressLine/Info.plist -------------------------------------------------------------------------------- /WebViewWithProgressLine/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timehzy/WebViewWithProgressLine/HEAD/WebViewWithProgressLine/ViewController.h -------------------------------------------------------------------------------- /WebViewWithProgressLine/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timehzy/WebViewWithProgressLine/HEAD/WebViewWithProgressLine/ViewController.m -------------------------------------------------------------------------------- /WebViewWithProgressLine/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timehzy/WebViewWithProgressLine/HEAD/WebViewWithProgressLine/main.m --------------------------------------------------------------------------------