├── .gitignore ├── .gitmodules ├── AutoScrollLabel ├── AutoScrollLabel.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ ├── cokecoffe.xcuserdatad │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ └── WorkspaceSettings.xcsettings │ │ │ └── wuwxj.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ ├── cokecoffe.xcuserdatad │ │ ├── xcdebugger │ │ │ └── Breakpoints.xcbkptlist │ │ └── xcschemes │ │ │ ├── Paoma.xcscheme │ │ │ └── xcschememanagement.plist │ │ └── wuwxj.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints.xcbkptlist │ │ └── xcschemes │ │ ├── Paoma.xcscheme │ │ └── xcschememanagement.plist ├── Paoma │ ├── AutoScrollLabel-Info.plist │ ├── AutoScrollLabel-Prefix.pch │ ├── AutoScrollLabel.h │ ├── AutoScrollLabel.m │ ├── PaomaAppDelegate.h │ ├── PaomaAppDelegate.m │ ├── PaomaViewController.h │ ├── PaomaViewController.m │ ├── en.lproj │ │ ├── InfoPlist.strings │ │ ├── MainWindow.xib │ │ └── PaomaViewController.xib │ └── main.m ├── PaomaTests │ ├── AutoScrollLabelTests-Info.plist │ ├── AutoScrollLabelTests-Prefix.pch │ ├── PaomaTests.h │ ├── PaomaTests.m │ └── en.lproj │ │ └── InfoPlist.strings ├── TextFlow.h └── TextFlow.m ├── Boyan_test ├── Boyan_test.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── Wangkeke.xcuserdatad │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ └── WorkspaceSettings.xcsettings │ └── xcuserdata │ │ └── Wangkeke.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints.xcbkptlist │ │ └── xcschemes │ │ ├── Boyan_test.xcscheme │ │ └── xcschememanagement.plist ├── Boyan_test │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Boyan_test-Info.plist │ ├── Boyan_test-Prefix.pch │ ├── Cell.xib │ ├── RootViewController.h │ ├── RootViewController.m │ ├── RootViewController.xib │ ├── en.lproj │ │ └── InfoPlist.strings │ └── main.m ├── CustomCell.h └── CustomCell.m ├── ButtonDemo ├── ButtonDemo.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── cokecoffe.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── cokecoffe.xcuserdatad │ │ └── xcschemes │ │ ├── ButtonDemo.xcscheme │ │ └── xcschememanagement.plist ├── ButtonDemo │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── ButtonDemo-Info.plist │ ├── ButtonDemo-Prefix.pch │ ├── ViewController.h │ ├── ViewController.m │ ├── en.lproj │ │ ├── InfoPlist.strings │ │ └── ViewController.xib │ └── main.m ├── checked@2x.png └── circle@2x.png ├── CALayerDemo ├── CALayerDemo.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── Wangkeke.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── Wangkeke.xcuserdatad │ │ └── xcschemes │ │ ├── CALayerDemo.xcscheme │ │ └── xcschememanagement.plist └── CALayerDemo │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── BattleMapSplashScreen.png │ ├── CALayerDemo-Info.plist │ ├── CALayerDemo-Prefix.pch │ ├── Common.h │ ├── Common.m │ ├── ViewController.h │ ├── ViewController.m │ ├── en.lproj │ ├── InfoPlist.strings │ └── ViewController.xib │ └── main.m ├── CameraWithAVFoudation ├── CameraWithAVFoudation.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ ├── Wangkeke.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ │ │ └── cokecoffe.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ ├── Wangkeke.xcuserdatad │ │ ├── xcdebugger │ │ │ └── Breakpoints.xcbkptlist │ │ └── xcschemes │ │ │ ├── CameraWithAVFoudation.xcscheme │ │ │ └── xcschememanagement.plist │ │ └── cokecoffe.xcuserdatad │ │ └── xcschemes │ │ ├── CameraWithAVFoudation.xcscheme │ │ └── xcschememanagement.plist └── CameraWithAVFoudation │ ├── CameraImageHelper.h │ ├── CameraImageHelper.m │ ├── CameraWithAVFoudation-Info.plist │ ├── CameraWithAVFoudation-Prefix.pch │ ├── WKKAppDelegate.h │ ├── WKKAppDelegate.m │ ├── WKKViewController.h │ ├── WKKViewController.m │ ├── WKKViewController.xib │ ├── en.lproj │ ├── InfoPlist.strings │ └── WKKViewController.xib │ └── main.m ├── CaseTool ├── CaseTool.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── Wangkeke.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── Wangkeke.xcuserdatad │ │ └── xcschemes │ │ ├── CaseTool.xcscheme │ │ └── xcschememanagement.plist └── CaseTool │ ├── AppController.h │ ├── AppController.m │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── CaseTool-Info.plist │ ├── CaseTool-Prefix.pch │ ├── en.lproj │ ├── Credits.rtf │ ├── InfoPlist.strings │ └── MainMenu.xib │ └── main.m ├── CheckBox ├── CheckBox.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ ├── Wangkeke.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ │ │ └── cokecoffe.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ ├── Wangkeke.xcuserdatad │ │ ├── xcdebugger │ │ │ └── Breakpoints.xcbkptlist │ │ └── xcschemes │ │ │ ├── CheckBox.xcscheme │ │ │ └── xcschememanagement.plist │ │ └── cokecoffe.xcuserdatad │ │ └── xcschemes │ │ ├── CheckBox.xcscheme │ │ └── xcschememanagement.plist ├── CheckBox │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── CheckBox-Info.plist │ ├── CheckBox-Prefix.pch │ ├── ViewController.h │ ├── ViewController.m │ ├── en.lproj │ │ ├── InfoPlist.strings │ │ └── ViewController.xib │ └── main.m └── RadioButton │ ├── CheckButton.h │ ├── CheckButton.m │ ├── checked.png │ └── unchecked.png ├── CollectionViewExample ├── .gitignore ├── CollectionViewExample.xcodeproj │ └── project.pbxproj ├── CollectionViewExample │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── CVCell.h │ ├── CVCell.m │ ├── CVCell.xib │ ├── CollectionViewExample-Info.plist │ ├── CollectionViewExample-Prefix.pch │ ├── NibCell.xib │ ├── ViewController.h │ ├── ViewController.m │ ├── en.lproj │ │ ├── InfoPlist.strings │ │ └── ViewController.xib │ └── main.m └── README.md ├── Core Location ├── Core Location.xcodeproj │ └── project.pbxproj └── Core Location │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Core Location-Info.plist │ ├── Core Location-Prefix.pch │ ├── Default-568h@2x.png │ ├── Default.png │ ├── Default@2x.png │ ├── ViewController.h │ ├── ViewController.m │ ├── en.lproj │ ├── InfoPlist.strings │ └── ViewController.xib │ └── main.m ├── CoreAnimationBegin ├── CoreAnimationBegin.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── Wangkeke.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── Wangkeke.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints.xcbkptlist │ │ └── xcschemes │ │ ├── CoreAnimationBegin.xcscheme │ │ └── xcschememanagement.plist └── CoreAnimationBegin │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── CoreAnimationBegin-Info.plist │ ├── CoreAnimationBegin-Prefix.pch │ ├── Icon.png │ ├── ViewController.h │ ├── ViewController.m │ ├── en.lproj │ ├── InfoPlist.strings │ └── ViewController.xib │ ├── main.m │ └── photo.jpg ├── CorePlotDemo ├── CorePlotDemo.xcodeproj │ └── project.pbxproj ├── CorePlotDemo │ ├── CPDAppDelegate.h │ ├── CPDAppDelegate.m │ ├── CPDBarGraphViewController.h │ ├── CPDBarGraphViewController.m │ ├── CPDPieChartViewController.h │ ├── CPDPieChartViewController.m │ ├── CPDScatterPlotViewController.h │ ├── CPDScatterPlotViewController.m │ ├── CorePlotDemo-Info.plist │ ├── CorePlotDemo-Prefix.pch │ ├── CorePlotHeaders │ │ ├── CPTAnnotation.h │ │ ├── CPTAnnotationHostLayer.h │ │ ├── CPTAxis.h │ │ ├── CPTAxisLabel.h │ │ ├── CPTAxisLabelGroup.h │ │ ├── CPTAxisSet.h │ │ ├── CPTAxisTitle.h │ │ ├── CPTBarPlot.h │ │ ├── CPTBorderedLayer.h │ │ ├── CPTColor.h │ │ ├── CPTColorSpace.h │ │ ├── CPTConstraints.h │ │ ├── CPTDefinitions.h │ │ ├── CPTExceptions.h │ │ ├── CPTFill.h │ │ ├── CPTGradient.h │ │ ├── CPTGraph.h │ │ ├── CPTGraphHostingView.h │ │ ├── CPTGridLineGroup.h │ │ ├── CPTGridLines.h │ │ ├── CPTImage.h │ │ ├── CPTLayer.h │ │ ├── CPTLayerAnnotation.h │ │ ├── CPTLegend.h │ │ ├── CPTLegendEntry.h │ │ ├── CPTLimitBand.h │ │ ├── CPTLineCap.h │ │ ├── CPTLineStyle.h │ │ ├── CPTMutableLineStyle.h │ │ ├── CPTMutableNumericData+TypeConversion.h │ │ ├── CPTMutableNumericData.h │ │ ├── CPTMutablePlotRange.h │ │ ├── CPTMutableShadow.h │ │ ├── CPTMutableTextStyle.h │ │ ├── CPTNumericData+TypeConversion.h │ │ ├── CPTNumericData.h │ │ ├── CPTNumericDataType.h │ │ ├── CPTPathExtensions.h │ │ ├── CPTPieChart.h │ │ ├── CPTPlatformSpecificCategories.h │ │ ├── CPTPlatformSpecificDefines.h │ │ ├── CPTPlatformSpecificFunctions.h │ │ ├── CPTPlot.h │ │ ├── CPTPlotArea.h │ │ ├── CPTPlotAreaFrame.h │ │ ├── CPTPlotGroup.h │ │ ├── CPTPlotRange.h │ │ ├── CPTPlotSpace.h │ │ ├── CPTPlotSpaceAnnotation.h │ │ ├── CPTPlotSymbol.h │ │ ├── CPTRangePlot.h │ │ ├── CPTResponder.h │ │ ├── CPTScatterPlot.h │ │ ├── CPTShadow.h │ │ ├── CPTTextLayer.h │ │ ├── CPTTextStyle.h │ │ ├── CPTTheme.h │ │ ├── CPTTimeFormatter.h │ │ ├── CPTTradingRangePlot.h │ │ ├── CPTUtilities.h │ │ ├── CPTXYAxis.h │ │ ├── CPTXYAxisSet.h │ │ ├── CPTXYGraph.h │ │ ├── CPTXYPlotSpace.h │ │ ├── CorePlot-CocoaTouch.h │ │ ├── NSCoderExtensions.h │ │ ├── NSDecimalNumberExtensions.h │ │ ├── NSNumberExtensions.h │ │ ├── _CPTConstraintsFixed.h │ │ ├── _CPTConstraintsRelative.h │ │ ├── _CPTDarkGradientTheme.h │ │ ├── _CPTFillColor.h │ │ ├── _CPTFillGradient.h │ │ ├── _CPTFillImage.h │ │ ├── _CPTPlainBlackTheme.h │ │ ├── _CPTPlainWhiteTheme.h │ │ ├── _CPTSlateTheme.h │ │ ├── _CPTStocksTheme.h │ │ └── _CPTXYTheme.h │ ├── en.lproj │ │ ├── InfoPlist.strings │ │ └── MainStoryboard.storyboard │ ├── first.png │ ├── first@2x.png │ ├── libCorePlot-CocoaTouch.a │ ├── main.m │ ├── second.png │ └── second@2x.png └── Starter Files │ ├── CPDConstants.h │ ├── CPDConstants.m │ ├── CPDStockPriceStore.h │ └── CPDStockPriceStore.m ├── CrashLog ├── bengkui.xcodeproj │ └── project.pbxproj └── bengkui │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── UncaughtExceptionHandler.h │ ├── UncaughtExceptionHandler.m │ ├── ViewController.h │ ├── ViewController.m │ ├── bengkui-Info.plist │ ├── bengkui-Prefix.pch │ ├── en.lproj │ ├── InfoPlist.strings │ └── ViewController.xib │ └── main.m ├── CustomCamaraView ├── 18行驶证度@2x.png ├── CustomCamaraView.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ ├── Wangkeke.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ │ │ └── cokecoffe.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ ├── Wangkeke.xcuserdatad │ │ ├── xcdebugger │ │ │ └── Breakpoints.xcbkptlist │ │ └── xcschemes │ │ │ ├── CustomCamaraView.xcscheme │ │ │ └── xcschememanagement.plist │ │ └── cokecoffe.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints.xcbkptlist │ │ └── xcschemes │ │ ├── CustomCamaraView.xcscheme │ │ └── xcschememanagement.plist ├── CustomCamaraView │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── CustomCamaraView-Info.plist │ ├── CustomCamaraView-Prefix.pch │ ├── OverlayView.h │ ├── OverlayView.m │ ├── OverlayView.xib │ ├── ViewController.h │ ├── ViewController.m │ ├── en.lproj │ │ ├── InfoPlist.strings │ │ └── ViewController.xib │ └── main.m ├── blackwhale.png ├── crosshair.png ├── logo-@2x.png ├── 保存-短凸@2x.png ├── 保存-短凹@2x.png ├── 拍照按钮-凸@2x.png ├── 拍照按钮-凹@2x.png ├── 拍照背景-右@2x.png ├── 拍照背景-左@2x.png ├── 拍行驶证框@2x.png ├── 返回-凸@2x.png ├── 返回-凹@2x.png ├── 重拍-凸@2x.png └── 重拍-凹@2x.png ├── Dispatch_queue ├── Dispatch_queue.xcodeproj │ └── project.pbxproj └── Dispatch_queue │ ├── Default-568h@2x.png │ ├── Default.png │ ├── Default@2x.png │ ├── Dispatch_queue-Info.plist │ ├── Dispatch_queue-Prefix.pch │ ├── UXAppDelegate.h │ ├── UXAppDelegate.m │ ├── en.lproj │ └── InfoPlist.strings │ └── main.m ├── FileWalker ├── FileWalker.xcodeproj │ └── project.pbxproj └── FileWalker │ ├── FileWalker-Prefix.pch │ ├── FileWalker.1 │ └── main.m ├── GKTank ├── Classes │ ├── TankAppDelegate.h │ ├── TankAppDelegate.m │ ├── TankViewController.h │ └── TankViewController.m ├── Default.png ├── GKTank-Info.plist ├── GKTank.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── dooseven.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── dooseven.xcuserdatad │ │ └── xcschemes │ │ ├── GKTank.xcscheme │ │ └── xcschememanagement.plist ├── GKTank_Prefix.pch ├── MainWindow.xib ├── README.txt ├── blockh.png ├── blockv.png ├── bluemissile.png ├── bluetank.png ├── level1.xml ├── main.m ├── redmissile.png ├── redtank.png ├── tank.png ├── tankViewController.xib └── tankbackground.png ├── HTTP ├── HTTP.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── Wangkeke.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── Wangkeke.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints.xcbkptlist │ │ └── xcschemes │ │ ├── HTTP.xcscheme │ │ └── xcschememanagement.plist └── HTTP │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── HTTP-Info.plist │ ├── HTTP-Prefix.pch │ ├── ViewController.h │ ├── ViewController.m │ ├── en.lproj │ ├── InfoPlist.strings │ └── ViewController.xib │ └── main.m ├── HelloOpenGL ├── HelloOpenGL.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ ├── Escaton.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ │ │ └── rwenderlich.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ ├── Escaton.xcuserdatad │ │ └── xcschemes │ │ │ ├── HelloOpenGL.xcscheme │ │ │ └── xcschememanagement.plist │ │ └── rwenderlich.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints.xcbkptlist │ │ └── xcschemes │ │ ├── HelloOpenGL.xcscheme │ │ └── xcschememanagement.plist └── HelloOpenGL │ ├── CC3Foundation.h │ ├── CC3Foundation.m │ ├── CC3GLMatrix.h │ ├── CC3GLMatrix.m │ ├── CC3Kazmath.c │ ├── CC3Kazmath.h │ ├── CC3Logging.h │ ├── CC3Math.h │ ├── CC3Math.m │ ├── HelloOpenGL-Info.plist │ ├── HelloOpenGL-Prefix.pch │ ├── HelloOpenGLAppDelegate.h │ ├── HelloOpenGLAppDelegate.m │ ├── Icon.png │ ├── OpenGLView.h │ ├── OpenGLView.m │ ├── SimpleFragment.glsl │ ├── SimpleVertex.glsl │ ├── ccTypes.h │ ├── en.lproj │ ├── InfoPlist.strings │ └── MainWindow.xib │ └── main.m ├── KVO_TestDemo ├── KVO_TestDemo.xcodeproj │ └── project.pbxproj └── KVO_TestDemo │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── DataModel.h │ ├── DataModel.m │ ├── KVO_TestDemo-Info.plist │ ├── KVO_TestDemo-Prefix.pch │ ├── ViewController.h │ ├── ViewController.m │ ├── en.lproj │ ├── InfoPlist.strings │ └── ViewController.xib │ └── main.m ├── LazyTableImages ├── Classes │ ├── AppRecord.h │ ├── AppRecord.m │ ├── IconDownloader.h │ ├── IconDownloader.m │ ├── LazyTableAppDelegate.h │ ├── LazyTableAppDelegate.m │ ├── ParseOperation.h │ ├── ParseOperation.m │ ├── RootViewController.h │ └── RootViewController.m ├── Info.plist ├── LazyTableImages.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ ├── Wangkeke.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ │ │ └── cokecoffe.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ ├── Wangkeke.xcuserdatad │ │ └── xcschemes │ │ │ ├── LazyTable.xcscheme │ │ │ └── xcschememanagement.plist │ │ └── cokecoffe.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints.xcbkptlist │ │ └── xcschemes │ │ ├── LazyTable.xcscheme │ │ └── xcschememanagement.plist ├── LazyTable_Prefix.pch ├── ReadMe.txt ├── en.lproj │ ├── MainWindow.xib │ └── RootViewController.xib ├── images │ ├── Default.png │ ├── Icon-Small.png │ ├── Icon-Small@2x.png │ ├── Icon.png │ ├── Icon@2x.png │ ├── Placeholder.png │ └── iTunesArtwork └── main.m ├── LevelView ├── LevelView.xcodeproj │ └── project.pbxproj └── LevelView │ ├── CCAppDelegate.h │ ├── CCAppDelegate.m │ ├── CCLevelView.h │ ├── CCLevelView.m │ ├── CCLevelView.xib │ ├── CCViewController.h │ ├── CCViewController.m │ ├── Default-568h@2x.png │ ├── Default.png │ ├── Default@2x.png │ ├── LevelView-Info.plist │ ├── LevelView-Prefix.pch │ ├── en.lproj │ ├── CCViewController.xib │ └── InfoPlist.strings │ ├── main.m │ ├── resultStar.png │ └── resultStarNo.png ├── MBProgressHUD ├── .gitattributes ├── .gitignore ├── Demo │ ├── Classes │ │ ├── HudDemoAppDelegate.h │ │ ├── HudDemoAppDelegate.m │ │ ├── HudDemoViewController.h │ │ └── HudDemoViewController.m │ ├── Default.png │ ├── Default@2x.png │ ├── Doxyfile │ ├── HudDemo.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ ├── HudDemoViewController.xib │ ├── HudDemo_Prefix.pch │ ├── Icon.png │ ├── Icon@2x.png │ ├── Images │ │ └── 37x-Checkmark.png │ ├── Info.plist │ ├── MainWindow.xib │ └── main.m ├── MBProgressHUD.h ├── MBProgressHUD.m └── README.mdown ├── MGBox2-master ├── .gitignore ├── CHANGELOG.markdown ├── Demo App │ ├── Demo App │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ ├── Demo App-Info.plist │ │ ├── Demo App-Prefix.pch │ │ ├── DemoViewController.h │ │ ├── DemoViewController.m │ │ ├── Images │ │ │ ├── add.png │ │ │ ├── add@2x.png │ │ │ ├── arrow.png │ │ │ ├── arrow@2x.png │ │ │ └── horse@2x.jpeg │ │ ├── MyViewController.h │ │ ├── MyViewController.m │ │ ├── PhotoBox.h │ │ ├── PhotoBox.m │ │ ├── en.lproj │ │ │ ├── InfoPlist.strings │ │ │ ├── iPad.storyboard │ │ │ └── iPhone.storyboard │ │ └── main.m │ └── MGBox Demo.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ └── xcschemes │ │ └── MGBox Demo.xcscheme ├── LICENSE ├── MGBox │ ├── Categories │ │ ├── NSAttributedString+MGTrim.h │ │ ├── NSAttributedString+MGTrim.m │ │ ├── NSObject+MGEvents.h │ │ ├── NSObject+MGEvents.m │ │ ├── UIColor+MGExpanded.h │ │ ├── UIColor+MGExpanded.m │ │ ├── UIControl+MGEvents.h │ │ ├── UIControl+MGEvents.m │ │ ├── UIResponder+FirstResponder.h │ │ ├── UIResponder+FirstResponder.m │ │ ├── UIView+MGEasyFrame.h │ │ └── UIView+MGEasyFrame.m │ ├── MGBase.h │ ├── MGBlockWrapper.h │ ├── MGBlockWrapper.m │ ├── MGBox.h │ ├── MGBox.m │ ├── MGButton.h │ ├── MGButton.m │ ├── MGLayoutBox.h │ ├── MGLayoutManager.h │ ├── MGLayoutManager.m │ ├── MGLine.h │ ├── MGLine.m │ ├── MGLineStyled.h │ ├── MGLineStyled.m │ ├── MGMushParser.h │ ├── MGMushParser.m │ ├── MGScrollView.h │ ├── MGScrollView.m │ ├── MGTableBox.h │ ├── MGTableBox.m │ ├── MGTableBoxStyled.h │ └── MGTableBoxStyled.m └── README.markdown ├── MYMGBoxPractise ├── MGBox │ ├── Categories │ │ ├── NSObject+MGEvents.h │ │ ├── NSObject+MGEvents.m │ │ ├── UIView+MGEasyFrame.h │ │ └── UIView+MGEasyFrame.m │ ├── MGBase.h │ ├── MGBlockWrapper.h │ ├── MGBlockWrapper.m │ ├── MGBox.h │ ├── MGBox.m │ ├── MGButton.h │ ├── MGButton.m │ ├── MGLayoutBox.h │ ├── MGLayoutManager.h │ ├── MGLayoutManager.m │ ├── MGLine.h │ ├── MGLine.m │ ├── MGScrollView.h │ ├── MGScrollView.m │ ├── MGTableBox.h │ ├── MGTableBox.m │ ├── MGTableBoxStyled.h │ └── MGTableBoxStyled.m ├── MYMGBoxPractise.xcodeproj │ └── project.pbxproj └── MYMGBoxPractise │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Default-568h@2x.png │ ├── Default.png │ ├── Default@2x.png │ ├── MYMGBoxPractise-Info.plist │ ├── MYMGBoxPractise-Prefix.pch │ ├── ViewController.h │ ├── ViewController.m │ ├── arrow@2x.png │ ├── en.lproj │ ├── InfoPlist.strings │ ├── ViewController_iPad.xib │ └── ViewController_iPhone.xib │ └── main.m ├── MergeUIImage ├── A.png ├── B.png ├── C@2x.png ├── D@2x.png ├── MergeUIImage.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── cokecoffe.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── cokecoffe.xcuserdatad │ │ └── xcschemes │ │ ├── MergeUIImage.xcscheme │ │ └── xcschememanagement.plist └── MergeUIImage │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── MergeUIImage-Info.plist │ ├── MergeUIImage-Prefix.pch │ ├── ViewController.h │ ├── ViewController.m │ ├── en.lproj │ ├── InfoPlist.strings │ └── ViewController.xib │ └── main.m ├── MoviePlayer_iPhone ├── Classes │ ├── MoviePlayerAppDelegate.h │ ├── MoviePlayerAppDelegate.m │ ├── MyImageView.h │ ├── MyImageView.m │ ├── MyMovieViewController.h │ ├── MyMovieViewController.m │ ├── MyOverlayView.h │ ├── MyOverlayView.m │ ├── MyStreamingMovieViewController.h │ ├── MyStreamingMovieViewController.m │ ├── MyViewController.h │ └── MyViewController.m ├── Icon.png ├── Info.plist ├── Movie.m4v ├── MoviePlayer.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── dooseven.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── dooseven.xcuserdatad │ │ └── xcschemes │ │ ├── MoviePlayer.xcscheme │ │ └── xcschememanagement.plist ├── MoviePlayer_Prefix.pch ├── ReadMe.txt ├── Settings.bundle │ └── Root.plist ├── en.lproj │ ├── MainWindow.xib │ └── SecondView.xib ├── local.png ├── main.m ├── preview.jpg └── streaming.png ├── MultiView ├── BlueView.xib ├── Classes │ ├── BlueViewController.h │ ├── BlueViewController.m │ ├── MultiViewAppDelegate.h │ ├── MultiViewAppDelegate.m │ ├── SwitchViewController.h │ ├── SwitchViewController.m │ ├── YellowViewController.h │ └── YellowViewController.m ├── MainWindow.xib ├── MultiView-Info.plist ├── MultiView.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── dooseven.xcuserdatad │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ └── WorkspaceSettings.xcsettings │ ├── suichangming.mode1v3 │ ├── suichangming.pbxuser │ └── xcuserdata │ │ └── dooseven.xcuserdatad │ │ └── xcschemes │ │ ├── MultiView.xcscheme │ │ └── xcschememanagement.plist ├── MultiView_Prefix.pch ├── YellowView.xib ├── build │ ├── Debug-iphonesimulator │ │ ├── MultiView.app.dSYM │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ └── Resources │ │ │ │ └── DWARF │ │ │ │ └── MultiView │ │ └── MultiView.app │ │ │ ├── BlueView.nib │ │ │ ├── Info.plist │ │ │ ├── MainWindow.nib │ │ │ ├── MultiView │ │ │ ├── PkgInfo │ │ │ └── YellowView.nib │ └── MultiView.build │ │ ├── Debug-iphonesimulator │ │ └── MultiView.build │ │ │ ├── MultiView-all-target-headers.hmap │ │ │ ├── MultiView-generated-files.hmap │ │ │ ├── MultiView-own-target-headers.hmap │ │ │ ├── MultiView-project-headers.hmap │ │ │ ├── MultiView.dep │ │ │ ├── MultiView.hmap │ │ │ ├── MultiView~.dep │ │ │ ├── Objects-normal │ │ │ └── i386 │ │ │ │ ├── BlueViewController.o │ │ │ │ ├── MultiView.LinkFileList │ │ │ │ ├── MultiViewAppDelegate.o │ │ │ │ ├── SwitchViewController.o │ │ │ │ ├── YellowViewController.o │ │ │ │ └── main.o │ │ │ ├── build-state.dat │ │ │ └── build-state~.dat │ │ └── MultiView.pbxindex │ │ ├── categories.pbxbtree │ │ ├── cdecls.pbxbtree │ │ ├── decls.pbxbtree │ │ ├── files.pbxbtree │ │ ├── imports.pbxbtree │ │ ├── pbxindex.header │ │ ├── protocols.pbxbtree │ │ ├── refs.pbxbtree │ │ ├── strings.pbxstrings │ │ ├── control │ │ └── strings │ │ ├── subclasses.pbxbtree │ │ └── symbols0.pbxsymbols └── main.m ├── NavigationController ├── NavigationController.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── Wangkeke.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── Wangkeke.xcuserdatad │ │ └── xcschemes │ │ ├── NavigationController.xcscheme │ │ └── xcschememanagement.plist └── NavigationController │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── DetailViewController.h │ ├── DetailViewController.m │ ├── DetailViewController.xib │ ├── NavigationController-Info.plist │ ├── NavigationController-Prefix.pch │ ├── RootViewController.h │ ├── RootViewController.m │ ├── RootViewController.xib │ ├── en.lproj │ └── InfoPlist.strings │ └── main.m ├── Pay Calculator ├── Pay Calculator.xcodeproj │ └── project.pbxproj └── Pay Calculator │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Pay Calculator-Info.plist │ ├── Pay Calculator-Prefix.pch │ ├── PayCalculator.h │ ├── PayCalculator.m │ ├── en.lproj │ ├── Credits.rtf │ ├── InfoPlist.strings │ └── MainMenu.xib │ └── main.m ├── Pickers ├── Classes │ ├── CustomPickerViewController.h │ ├── CustomPickerViewController.m │ ├── DatePickerViewController.h │ ├── DatePickerViewController.m │ ├── DependentComponentPickerViewController.h │ ├── DependentComponentPickerViewController.m │ ├── DoubleComponentPickerViewController.h │ ├── DoubleComponentPickerViewController.m │ ├── PickersAppDelegate.h │ ├── PickersAppDelegate.m │ ├── SingleComponentPickerViewController.h │ └── SingleComponentPickerViewController.m ├── Custom Picker Images │ ├── apple.png │ ├── bar.png │ ├── cherry.png │ ├── crown.png │ ├── lemon.png │ └── seven.png ├── Custom Picker Sounds │ ├── crunch.wav │ └── win.wav ├── CustomPickerView.xib ├── DatePickerView.xib ├── DependentComponentPickerView.xib ├── DoubleComponentPickerView.xib ├── Info.plist ├── MainWindow.xib ├── Pickers.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ ├── Escaton.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ │ │ └── dooseven.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ ├── suichangming.mode1v3 │ ├── suichangming.pbxuser │ └── xcuserdata │ │ ├── Escaton.xcuserdatad │ │ └── xcschemes │ │ │ ├── Pickers.xcscheme │ │ │ └── xcschememanagement.plist │ │ └── dooseven.xcuserdatad │ │ └── xcschemes │ │ ├── Pickers.xcscheme │ │ └── xcschememanagement.plist ├── Pickers_Prefix.pch ├── SingleComponentPickerView.xib ├── Tab Bar Icons │ ├── clockicon.png │ ├── dependenticon.png │ ├── doubleicon.png │ ├── singleicon.png │ └── toolicon.png ├── build │ ├── Debug-iphoneos │ │ ├── Pickers.app.dSYM │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ └── Resources │ │ │ │ └── DWARF │ │ │ │ └── Pickers │ │ └── Pickers.app │ │ │ ├── CodeResources │ │ │ ├── CustomPickerView.nib │ │ │ ├── DatePickerView.nib │ │ │ ├── DependentComponentPickerView.nib │ │ │ ├── DoubleComponentPickerView.nib │ │ │ ├── Info.plist │ │ │ ├── MainWindow.nib │ │ │ ├── Pickers │ │ │ ├── PkgInfo │ │ │ ├── ResourceRules.plist │ │ │ ├── SingleComponentPickerView.nib │ │ │ ├── _CodeSignature │ │ │ └── CodeResources │ │ │ ├── apple.png │ │ │ ├── bar.png │ │ │ ├── cherry.png │ │ │ ├── clockicon.png │ │ │ ├── crown.png │ │ │ ├── crunch.wav │ │ │ ├── dependenticon.png │ │ │ ├── doubleicon.png │ │ │ ├── embedded.mobileprovision │ │ │ ├── lemon.png │ │ │ ├── seven.png │ │ │ ├── singleicon.png │ │ │ ├── statedictionary.plist │ │ │ ├── toolicon.png │ │ │ └── win.wav │ └── Pickers.build │ │ ├── Debug-iphoneos │ │ └── Pickers.build │ │ │ ├── Objects-normal │ │ │ └── armv7 │ │ │ │ ├── CustomPickerViewController.o │ │ │ │ ├── DatePickerViewController.o │ │ │ │ ├── DependentComponentPickerViewController.o │ │ │ │ ├── DoubleComponentPickerViewController.o │ │ │ │ ├── Pickers.LinkFileList │ │ │ │ ├── PickersAppDelegate.o │ │ │ │ ├── SingleComponentPickerViewController.o │ │ │ │ └── main.o │ │ │ ├── Pickers-all-target-headers.hmap │ │ │ ├── Pickers-generated-files.hmap │ │ │ ├── Pickers-own-target-headers.hmap │ │ │ ├── Pickers-project-headers.hmap │ │ │ ├── Pickers.dep │ │ │ ├── Pickers.hmap │ │ │ ├── Pickers.xcent │ │ │ ├── Pickers~.dep │ │ │ ├── build-state.dat │ │ │ └── build-state~.dat │ │ ├── Debug │ │ └── Pickers.build │ │ │ ├── Pickers.dep │ │ │ └── build-state.dat │ │ └── Pickers.pbxindex │ │ ├── categories.pbxbtree │ │ ├── cdecls.pbxbtree │ │ ├── decls.pbxbtree │ │ ├── files.pbxbtree │ │ ├── imports.pbxbtree │ │ ├── pbxindex.header │ │ ├── protocols.pbxbtree │ │ ├── refs.pbxbtree │ │ ├── strings.pbxstrings │ │ ├── control │ │ └── strings │ │ ├── subclasses.pbxbtree │ │ └── symbols0.pbxsymbols ├── main.m └── statedictionary.plist ├── Pop_TableDemo ├── Pop_TableDemo.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ ├── Wangkeke.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ │ │ └── cokecoffe.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ ├── Wangkeke.xcuserdatad │ │ ├── xcdebugger │ │ │ └── Breakpoints.xcbkptlist │ │ └── xcschemes │ │ │ ├── Pop_TableDemo.xcscheme │ │ │ └── xcschememanagement.plist │ │ └── cokecoffe.xcuserdatad │ │ └── xcschemes │ │ ├── Pop_TableDemo.xcscheme │ │ └── xcschememanagement.plist └── Pop_TableDemo │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── DetailViewController.h │ ├── DetailViewController.m │ ├── MainTableViewController.h │ ├── MainTableViewController.m │ ├── Pop_TableDemo-Info.plist │ ├── Pop_TableDemo-Prefix.pch │ ├── ViewController.h │ ├── ViewController.m │ ├── en.lproj │ ├── InfoPlist.strings │ └── ViewController.xib │ └── main.m ├── Quartz2D ├── Quartz2D.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── Wangkeke.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── Wangkeke.xcuserdatad │ │ └── xcschemes │ │ ├── Quartz2D.xcscheme │ │ └── xcschememanagement.plist └── Quartz2D │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Draw2D.h │ ├── Draw2D.m │ ├── Quartz2D-Info.plist │ ├── Quartz2D-Prefix.pch │ ├── ViewController.h │ ├── ViewController.m │ ├── en.lproj │ ├── InfoPlist.strings │ └── ViewController.xib │ └── main.m ├── RadioButtonWithUIKit ├── RadioButton.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── Wangkeke.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── Wangkeke.xcuserdatad │ │ └── xcschemes │ │ ├── RadioButton.xcscheme │ │ └── xcschememanagement.plist └── RadioButton │ ├── RadioButton-Info.plist │ ├── RadioButton-Prefix.pch │ ├── RadioButton-Selected.png │ ├── RadioButton-Unselected.png │ ├── RadioButton.h │ ├── RadioButton.m │ ├── RadioButtonAppDelegate.h │ ├── RadioButtonAppDelegate.m │ ├── RadioButtonViewController.h │ ├── RadioButtonViewController.m │ ├── en.lproj │ ├── InfoPlist.strings │ ├── MainWindow.xib │ └── RadioButtonViewController.xib │ └── main.m ├── RadioTable ├── RadioTable.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── cokecoffe.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── cokecoffe.xcuserdatad │ │ └── xcschemes │ │ ├── RadioTable.xcscheme │ │ └── xcschememanagement.plist ├── RadioTable │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── RadioTable-Info.plist │ ├── RadioTable-Prefix.pch │ ├── ViewController.h │ ├── ViewController.m │ ├── en.lproj │ │ ├── InfoPlist.strings │ │ └── ViewController.xib │ └── main.m ├── RadioTableController.h ├── RadioTableController.m ├── RadioTableController.xib └── RadioTable_help ├── Reachability ├── Airport.png ├── Classes │ ├── Reachability.h │ ├── Reachability.m │ ├── ReachabilityAppDelegate.h │ └── ReachabilityAppDelegate.m ├── Default.png ├── English.lproj │ └── MainWindow.xib ├── Images │ ├── Icon-72.png │ ├── Icon-Small-50.png │ ├── Icon-Small.png │ ├── Icon-Small@2x.png │ ├── Icon.png │ ├── Icon@2x.png │ └── iTunesArtwork ├── Info.plist ├── Network.png ├── Reachability.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── cokecoffe.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── cokecoffe.xcuserdatad │ │ └── xcschemes │ │ ├── Reachability.xcscheme │ │ └── xcschememanagement.plist ├── Reachability_Prefix.pch ├── ReadMe.txt ├── WWAN5.png ├── icon.png ├── main.m ├── red.png └── stop-32.png ├── Readme.md ├── Retaincount ├── README.md ├── Retaincount.xcodeproj │ └── project.pbxproj └── Retaincount │ ├── RetainTracker.h │ ├── RetainTracker.m │ ├── Retaincount-Prefix.pch │ ├── Retaincount.1 │ └── main.m ├── SOAP ├── SOAP.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── cokecoffe.xcuserdatad │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ └── WorkspaceSettings.xcsettings │ └── xcuserdata │ │ └── cokecoffe.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints.xcbkptlist │ │ └── xcschemes │ │ ├── SOAP.xcscheme │ │ └── xcschememanagement.plist └── SOAP │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── SOAP-Info.plist │ ├── SOAP-Prefix.pch │ ├── ViewController.h │ ├── ViewController.m │ ├── en.lproj │ ├── InfoPlist.strings │ └── ViewController.xib │ └── main.m ├── SQLiteSample ├── Classes │ ├── BaseDao.h │ ├── BaseDao.m │ ├── DB.h │ ├── DB.m │ ├── FMDB │ │ ├── FMDatabase.h │ │ ├── FMDatabase.m │ │ ├── FMDatabaseAdditions.h │ │ ├── FMDatabaseAdditions.m │ │ ├── FMResultSet.h │ │ └── FMResultSet.m │ ├── Record.h │ ├── Record.m │ ├── RecordDao.h │ ├── RecordDao.m │ ├── SQLiteSampleAppDelegate.h │ ├── SQLiteSampleAppDelegate.m │ ├── ViewController.h │ └── ViewController.m ├── SQLiteSample-Info.plist ├── SQLiteSample.xcodeproj │ └── project.pbxproj ├── SQLiteSample_Prefix.pch ├── main.m └── sample.db ├── SQLite的基本使用 └── SQLiteDemo │ ├── SQLiteDemo.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ ├── Wangkeke.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ │ │ └── cokecoffe.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ ├── Wangkeke.xcuserdatad │ │ ├── xcdebugger │ │ │ └── Breakpoints.xcbkptlist │ │ └── xcschemes │ │ │ ├── SQLiteDemo.xcscheme │ │ │ └── xcschememanagement.plist │ │ └── cokecoffe.xcuserdatad │ │ └── xcschemes │ │ ├── SQLiteDemo.xcscheme │ │ └── xcschememanagement.plist │ └── SQLiteDemo │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── SQLiteDemo-Info.plist │ ├── SQLiteDemo-Prefix.pch │ ├── ViewController.h │ ├── ViewController.m │ ├── en.lproj │ ├── InfoPlist.strings │ └── ViewController.xib │ └── main.m ├── ScrollViews ├── ScrollViews.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ ├── Wangkeke.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ │ │ └── cokecoffe.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ ├── Wangkeke.xcuserdatad │ │ ├── xcdebugger │ │ │ └── Breakpoints.xcbkptlist │ │ └── xcschemes │ │ │ ├── ScrollViews.xcscheme │ │ │ └── xcschememanagement.plist │ │ └── cokecoffe.xcuserdatad │ │ └── xcschemes │ │ ├── ScrollViews.xcscheme │ │ └── xcschememanagement.plist ├── ScrollViews │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── CustomScrollViewController.h │ ├── CustomScrollViewController.m │ ├── PageScrollViewController.h │ ├── PageScrollViewController.m │ ├── PeekPagedScrollViewController.h │ ├── PeekPagedScrollViewController.m │ ├── ScrollViewContainer.h │ ├── ScrollViewContainer.m │ ├── ScrollViews-Info.plist │ ├── ScrollViews-Prefix.pch │ ├── ViewController.h │ ├── ViewController.m │ ├── en.lproj │ │ ├── InfoPlist.strings │ │ └── MainStoryboard.storyboard │ └── main.m └── ScrollViewsResources │ ├── photo1.png │ ├── photo2.png │ ├── photo3.png │ ├── photo4.png │ ├── photo5.png │ └── slow.png ├── SimpleFTPSample ├── Ancillary Code │ ├── AppDelegate.h │ ├── AppDelegate.m │ └── main.m ├── CreateDirController.h ├── CreateDirController.m ├── GetController.h ├── GetController.m ├── ListController.h ├── ListController.m ├── PutController.h ├── PutController.m ├── Read Me About SimpleFTPSample.txt ├── Resources │ ├── Images │ │ ├── Icon-72.png │ │ ├── Icon-Small-50.png │ │ ├── Icon-Small.png │ │ ├── Icon-Small@2x.png │ │ ├── Icon.png │ │ ├── Icon@2x.png │ │ └── iTunesArtwork │ ├── Info.plist │ ├── InitialDefaults.plist │ ├── MainWindow.xib │ ├── NoImage.png │ ├── TestImage1.png │ ├── TestImage2.png │ ├── TestImage3.png │ ├── TestImage4.png │ ├── get.png │ ├── list.png │ ├── mkdir.png │ └── put.png ├── SimpleFTPSample.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ ├── Escaton.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ │ │ └── Wangkeke.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ ├── Escaton.xcuserdatad │ │ └── xcschemes │ │ │ ├── SimpleFTPSample.xcscheme │ │ │ └── xcschememanagement.plist │ │ └── Wangkeke.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints.xcbkptlist │ │ └── xcschemes │ │ ├── SimpleFTPSample.xcscheme │ │ └── xcschememanagement.plist ├── URLGetController.h └── URLGetController.m ├── SwipeBar ├── README.md ├── RNSwipeBar.h ├── RNSwipeBar.m ├── example │ ├── RNBarView.h │ ├── RNBarView.m │ ├── RNBarView.xib │ ├── RNSwipeBar.h │ ├── RNSwipeBar.m │ ├── RNSwipeBar.xcodeproj │ │ └── project.pbxproj │ ├── RNSwipeBar │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── RNSwipeBar-Info.plist │ │ ├── RNSwipeBar-Prefix.pch │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── en.lproj │ │ │ ├── InfoPlist.strings │ │ │ └── ViewController.xib │ │ └── main.m │ ├── activities.jpg │ ├── button_bg.png │ └── button_bg@2x.png └── images │ ├── closed.png │ └── open.png ├── SwitchControllerDemo ├── SwitchControllerDemo.xcodeproj │ └── project.pbxproj └── SwitchControllerDemo │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── BlueViewController.h │ ├── BlueViewController.m │ ├── BlueViewController.xib │ ├── SwitchControllerDemo-Info.plist │ ├── SwitchControllerDemo-Prefix.pch │ ├── ViewController.h │ ├── ViewController.m │ ├── YellowViewController.h │ ├── YellowViewController.m │ ├── YellowViewController.xib │ ├── en.lproj │ ├── InfoPlist.strings │ └── ViewController.xib │ └── main.m ├── TPKeyboardAvoiding ├── README.md ├── TPKeyboardAvoidingSample.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── TPKeyboardAvoidingSample │ ├── FirstViewController.h │ ├── FirstViewController.m │ ├── SecondViewController.h │ ├── SecondViewController.m │ ├── TPKeyboardAvoidingSample-Info.plist │ ├── TPKeyboardAvoidingSample-Prefix.pch │ ├── TPKeyboardAvoidingSampleAppDelegate.h │ ├── TPKeyboardAvoidingSampleAppDelegate.m │ ├── en.lproj │ │ ├── FirstView.xib │ │ ├── InfoPlist.strings │ │ ├── MainWindow.xib │ │ └── SecondView.xib │ └── main.m ├── TPKeyboardAvoidingScrollView.h ├── TPKeyboardAvoidingScrollView.m ├── TPKeyboardAvoidingTableView.h └── TPKeyboardAvoidingTableView.m ├── TabBar_Demo ├── TabBar_Demo.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── Wangkeke.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── Wangkeke.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints.xcbkptlist │ │ └── xcschemes │ │ ├── TabBar_Demo.xcscheme │ │ └── xcschememanagement.plist └── TabBar_Demo │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── FirstViewController.h │ ├── FirstViewController.m │ ├── MoreDetailViewController.h │ ├── MoreDetailViewController.m │ ├── MoreDetailViewController.xib │ ├── SecondViewController.h │ ├── SecondViewController.m │ ├── TabBar_Demo-Info.plist │ ├── TabBar_Demo-Prefix.pch │ ├── en.lproj │ ├── FirstViewController.xib │ ├── InfoPlist.strings │ └── SecondViewController.xib │ ├── first.png │ ├── first@2x.png │ ├── main.m │ ├── second.png │ └── second@2x.png ├── TableView ├── TableView.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ ├── cokecoffe.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ │ │ └── servmenu.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ ├── cokecoffe.xcuserdatad │ │ └── xcschemes │ │ │ ├── TableView.xcscheme │ │ │ └── xcschememanagement.plist │ │ └── servmenu.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints.xcbkptlist │ │ └── xcschemes │ │ ├── TableView.xcscheme │ │ └── xcschememanagement.plist └── TableView │ ├── 1.png │ ├── EGORefreshTableHeaderView.h │ ├── EGORefreshTableHeaderView.m │ ├── TableView-Info.plist │ ├── TableView-Prefix.pch │ ├── TableViewAppDelegate.h │ ├── TableViewAppDelegate.m │ ├── TableViewViewController.h │ ├── TableViewViewController.m │ ├── blackArrow.png │ ├── blackArrow@2x.png │ ├── blueArrow.png │ ├── blueArrow@2x.png │ ├── en.lproj │ ├── InfoPlist.strings │ ├── MainWindow.xib │ └── TableViewViewController.xib │ ├── grayArrow.png │ ├── grayArrow@2x.png │ ├── main.m │ ├── whiteArrow.png │ └── whiteArrow@2x.png ├── Tableview_Refresh ├── cokecoffe-LoadMoreTableFooterView-上提加载 │ ├── .gitignore │ ├── Demo │ │ └── TableViewPull │ │ │ ├── Classes │ │ │ ├── Controller │ │ │ │ └── RootViewController │ │ │ │ │ ├── RootViewController.h │ │ │ │ │ └── RootViewController.m │ │ │ ├── Delegate │ │ │ │ ├── TableViewPullAppDelegate.h │ │ │ │ └── TableViewPullAppDelegate.m │ │ │ └── View │ │ │ │ └── LoadMoreTableFooterView │ │ │ │ ├── LoadMoreTableFooterView.h │ │ │ │ └── LoadMoreTableFooterView.m │ │ │ ├── Resources │ │ │ ├── MainWindow.xib │ │ │ ├── RootViewController.xib │ │ │ └── TableViewPull-Info.plist │ │ │ ├── TableViewPull.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcuserdata │ │ │ │ │ └── cokecoffe.xcuserdatad │ │ │ │ │ └── UserInterfaceState.xcuserstate │ │ │ └── xcuserdata │ │ │ │ └── cokecoffe.xcuserdatad │ │ │ │ └── xcschemes │ │ │ │ ├── TableViewPull.xcscheme │ │ │ │ └── xcschememanagement.plist │ │ │ ├── TableViewPull_Prefix.pch │ │ │ └── main.m │ ├── LoadMoreTableFooterView │ │ └── Classes │ │ │ ├── LoadMoreTableFooterView.h │ │ │ └── LoadMoreTableFooterView.m │ └── README ├── enormego-EGOTableViewPullRefresh-下拉刷新 │ ├── Demo │ │ └── TableViewPull │ │ │ ├── Classes │ │ │ ├── Controller │ │ │ │ └── RootViewController │ │ │ │ │ ├── RootViewController.h │ │ │ │ │ └── RootViewController.m │ │ │ ├── Delegate │ │ │ │ ├── TableViewPullAppDelegate.h │ │ │ │ └── TableViewPullAppDelegate.m │ │ │ └── View │ │ │ │ └── RefreshTableHeaderView │ │ │ │ ├── EGORefreshTableHeaderView.h │ │ │ │ └── EGORefreshTableHeaderView.m │ │ │ ├── Resources │ │ │ ├── MainWindow.xib │ │ │ ├── RootViewController.xib │ │ │ ├── TableViewPull-Info.plist │ │ │ ├── blackArrow.png │ │ │ ├── blackArrow@2x.png │ │ │ ├── blueArrow.png │ │ │ ├── blueArrow@2x.png │ │ │ ├── grayArrow.png │ │ │ ├── grayArrow@2x.png │ │ │ ├── whiteArrow.png │ │ │ └── whiteArrow@2x.png │ │ │ ├── TableViewPull.xcodeproj │ │ │ ├── codekeeper.mode1v3 │ │ │ ├── codekeeper.pbxuser │ │ │ ├── devin.mode1v3 │ │ │ ├── devin.pbxuser │ │ │ ├── enormego.mode1v3 │ │ │ ├── enormego.pbxuser │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcuserdata │ │ │ │ │ ├── Wangkeke.xcuserdatad │ │ │ │ │ └── UserInterfaceState.xcuserstate │ │ │ │ │ └── cokecoffe.xcuserdatad │ │ │ │ │ └── UserInterfaceState.xcuserstate │ │ │ └── xcuserdata │ │ │ │ ├── Wangkeke.xcuserdatad │ │ │ │ └── xcschemes │ │ │ │ │ ├── TableViewPull.xcscheme │ │ │ │ │ └── xcschememanagement.plist │ │ │ │ └── cokecoffe.xcuserdatad │ │ │ │ └── xcschemes │ │ │ │ ├── TableViewPull.xcscheme │ │ │ │ └── xcschememanagement.plist │ │ │ ├── TableViewPull_Prefix.pch │ │ │ ├── build │ │ │ ├── Debug-iphonesimulator │ │ │ │ ├── TableViewPull.app.dSYM │ │ │ │ │ └── Contents │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ └── Resources │ │ │ │ │ │ └── DWARF │ │ │ │ │ │ └── TableViewPull │ │ │ │ └── TableViewPull.app │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── MainWindow.nib │ │ │ │ │ ├── PkgInfo │ │ │ │ │ ├── RootViewController.nib │ │ │ │ │ ├── TableViewPull │ │ │ │ │ ├── blackArrow.png │ │ │ │ │ ├── blackArrow@2x.png │ │ │ │ │ ├── blueArrow.png │ │ │ │ │ ├── blueArrow@2x.png │ │ │ │ │ ├── grayArrow.png │ │ │ │ │ ├── grayArrow@2x.png │ │ │ │ │ ├── whiteArrow.png │ │ │ │ │ └── whiteArrow@2x.png │ │ │ └── TableViewPull.build │ │ │ │ ├── Debug-iphoneos │ │ │ │ └── TableViewPull.build │ │ │ │ │ ├── TableViewPull.dep │ │ │ │ │ └── build-state.dat │ │ │ │ ├── Debug-iphonesimulator │ │ │ │ └── TableViewPull.build │ │ │ │ │ ├── Objects-normal │ │ │ │ │ └── i386 │ │ │ │ │ │ ├── EGORefreshTableHeaderView.o │ │ │ │ │ │ ├── RootViewController.o │ │ │ │ │ │ ├── TableViewPull.LinkFileList │ │ │ │ │ │ ├── TableViewPullAppDelegate.o │ │ │ │ │ │ └── main.o │ │ │ │ │ ├── TableViewPull-all-target-headers.hmap │ │ │ │ │ ├── TableViewPull-generated-files.hmap │ │ │ │ │ ├── TableViewPull-own-target-headers.hmap │ │ │ │ │ ├── TableViewPull-project-headers.hmap │ │ │ │ │ ├── TableViewPull.dep │ │ │ │ │ ├── TableViewPull.hmap │ │ │ │ │ ├── TableViewPull~.dep │ │ │ │ │ ├── build-state.dat │ │ │ │ │ └── build-state~.dat │ │ │ │ ├── Debug │ │ │ │ └── TableViewPull.build │ │ │ │ │ ├── TableViewPull.dep │ │ │ │ │ └── build-state.dat │ │ │ │ └── TableViewPull.pbxindex │ │ │ │ ├── categories.pbxbtree │ │ │ │ ├── cdecls.pbxbtree │ │ │ │ ├── decls.pbxbtree │ │ │ │ ├── files.pbxbtree │ │ │ │ ├── imports.pbxbtree │ │ │ │ ├── pbxindex.header │ │ │ │ ├── protocols.pbxbtree │ │ │ │ ├── refs.pbxbtree │ │ │ │ ├── strings.pbxstrings │ │ │ │ ├── control │ │ │ │ └── strings │ │ │ │ ├── subclasses.pbxbtree │ │ │ │ └── symbols0.pbxsymbols │ │ │ └── main.m │ ├── EGOTableViewPullRefresh │ │ ├── Classes │ │ │ └── View │ │ │ │ ├── EGORefreshTableHeaderView.h │ │ │ │ └── EGORefreshTableHeaderView.m │ │ └── Resources │ │ │ ├── blackArrow.png │ │ │ ├── blackArrow@2x.png │ │ │ ├── blueArrow.png │ │ │ ├── blueArrow@2x.png │ │ │ ├── grayArrow.png │ │ │ ├── grayArrow@2x.png │ │ │ ├── whiteArrow.png │ │ │ └── whiteArrow@2x.png │ └── README ├── 封装好的列表(刷新+加载)STableViewController │ ├── .gitignore │ ├── Demo │ │ ├── Demo.xcodeproj │ │ │ └── project.pbxproj │ │ └── Demo │ │ │ ├── Demo-Info.plist │ │ │ ├── Demo-Prefix.pch │ │ │ ├── DemoAppDelegate.h │ │ │ ├── DemoAppDelegate.m │ │ │ ├── DemoTableFooterView.h │ │ │ ├── DemoTableFooterView.m │ │ │ ├── DemoTableFooterView.xib │ │ │ ├── DemoTableHeaderView.h │ │ │ ├── DemoTableHeaderView.m │ │ │ ├── DemoTableHeaderView.xib │ │ │ ├── DemoTableViewController.h │ │ │ ├── DemoTableViewController.m │ │ │ ├── en.lproj │ │ │ └── InfoPlist.strings │ │ │ └── main.m │ ├── LICENSE │ ├── README.md │ └── STableViewController │ │ ├── STableViewController.h │ │ └── STableViewController.m └── 简单方式-loadmore │ ├── .gitattributes │ ├── .gitignore │ ├── Classes │ ├── LoadMoreAppDelegate.h │ ├── LoadMoreAppDelegate.m │ ├── RootViewController.h │ └── RootViewController.m │ ├── LoadMore-Info.plist │ ├── LoadMore.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── Wangkeke.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── Wangkeke.xcuserdatad │ │ └── xcschemes │ │ ├── LoadMore.xcscheme │ │ └── xcschememanagement.plist │ ├── LoadMore_Prefix.pch │ ├── MainWindow.xib │ ├── README │ ├── RootViewController.xib │ └── main.m ├── TheElements ├── Classes │ ├── AtomicElement.h │ ├── AtomicElement.m │ ├── AtomicElementFlippedView.h │ ├── AtomicElementFlippedView.m │ ├── AtomicElementTableViewCell.h │ ├── AtomicElementTableViewCell.m │ ├── AtomicElementTileView.h │ ├── AtomicElementTileView.m │ ├── AtomicElementView.h │ ├── AtomicElementView.m │ ├── AtomicElementViewController.h │ ├── AtomicElementViewController.m │ ├── ElementsDataSourceProtocol.h │ ├── ElementsSortedByAtomicNumberDataSource.h │ ├── ElementsSortedByAtomicNumberDataSource.m │ ├── ElementsSortedByNameDataSource.h │ ├── ElementsSortedByNameDataSource.m │ ├── ElementsSortedByStateDataSource.h │ ├── ElementsSortedByStateDataSource.m │ ├── ElementsSortedBySymbolDataSource.h │ ├── ElementsSortedBySymbolDataSource.m │ ├── ElementsTableViewController.h │ ├── ElementsTableViewController.m │ ├── PeriodicElements.h │ ├── PeriodicElements.m │ ├── TheElementsAppDelegate.h │ └── TheElementsAppDelegate.m ├── Elements.plist ├── Images │ ├── ApplicationFlow.png │ ├── Artificial_24.png │ ├── Artificial_256.png │ ├── Artificial_30.png │ ├── Artificial_37.png │ ├── Default.png │ ├── Gas_24.png │ ├── Gas_256.png │ ├── Gas_30.png │ ├── Gas_37.png │ ├── Icon-72.png │ ├── Icon-Small-50.png │ ├── Icon-Small.png │ ├── Icon-Small@2x.png │ ├── Icon.png │ ├── Icon@2x.png │ ├── Liquid_24.png │ ├── Liquid_256.png │ ├── Liquid_30.png │ ├── Liquid_37.png │ ├── Solid_24.png │ ├── Solid_256.png │ ├── Solid_30.png │ ├── Solid_37.png │ ├── buttonsWithSpacing.png │ ├── flipper_list_blue.png │ ├── iTunesArtwork │ ├── name_gray.png │ ├── number_gray.png │ ├── state_gray.png │ ├── symbol_gray.png │ └── table_gray.png ├── Info.plist ├── Readme.md ├── Readme.txt ├── TheElements.xcodeproj │ └── project.pbxproj ├── TheElements_Prefix.pch └── main.m ├── UICatalog ├── AlertsViewController.h ├── AlertsViewController.m ├── AppDelegate.h ├── AppDelegate.m ├── ButtonsViewController.h ├── ButtonsViewController.m ├── Constants.h ├── ControlsViewController.h ├── ControlsViewController.m ├── ImagesViewController.h ├── ImagesViewController.m ├── Info.plist ├── MainViewController.h ├── MainViewController.m ├── Picker │ ├── CustomPickerDataSource.h │ ├── CustomPickerDataSource.m │ ├── CustomView.h │ └── CustomView.m ├── PickerViewController.h ├── PickerViewController.m ├── Prefix.pch ├── ReadMe.txt ├── SearchBarController.h ├── SearchBarController.m ├── SegmentViewController.h ├── SegmentViewController.m ├── TextFieldController.h ├── TextFieldController.m ├── TextViewController.h ├── TextViewController.m ├── ToolbarViewController.h ├── ToolbarViewController.m ├── TransitionViewController.h ├── TransitionViewController.m ├── UICatalog.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── Escaton.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── Escaton.xcuserdatad │ │ └── xcschemes │ │ ├── UICatalog.xcscheme │ │ └── xcschememanagement.plist ├── ViewControllers │ ├── AlertsViewController.h │ ├── AlertsViewController.m │ ├── ButtonsViewController.h │ ├── ButtonsViewController.m │ ├── ControlsViewController.h │ ├── ControlsViewController.m │ ├── ImagesViewController.h │ ├── ImagesViewController.m │ ├── MainViewController.h │ ├── MainViewController.m │ ├── PickerViewController.h │ ├── PickerViewController.m │ ├── SearchBarController.h │ ├── SearchBarController.m │ ├── SegmentViewController.h │ ├── SegmentViewController.m │ ├── TextFieldController.h │ ├── TextFieldController.m │ ├── TextViewController.h │ ├── TextViewController.m │ ├── ToolbarViewController.h │ ├── ToolbarViewController.m │ ├── TransitionViewController.h │ ├── TransitionViewController.m │ ├── WebViewController.h │ └── WebViewController.m ├── WebViewController.h ├── WebViewController.m ├── en.lproj │ ├── AlertsViewController.xib │ ├── ButtonsViewController.xib │ ├── ControlsViewController.xib │ ├── ImagesViewController.xib │ ├── Localizable.strings │ ├── MainWindow.xib │ ├── PickerViewController.xib │ ├── SearchBarController.xib │ ├── SegmentViewController.xib │ ├── TextFieldController.xib │ ├── TextViewController.xib │ ├── ToolbarViewController.xib │ ├── TransitionViewController.xib │ └── WebViewController.xib ├── images │ ├── 12-6AM.png │ ├── 12-6PM.png │ ├── 6-12AM.png │ ├── 6-12PM.png │ ├── Default-568h@2x.png │ ├── Default.png │ ├── Default@2x.png │ ├── Icon-72.png │ ├── Icon-Small-50.png │ ├── Icon-Small.png │ ├── Icon-Small@2x.png │ ├── Icon.png │ ├── Icon@2x.png │ ├── UIButton_custom.png │ ├── blueButton.png │ ├── bookmarkImage.png │ ├── bookmarkImageHighlighted.png │ ├── divider.png │ ├── iTunesArtwork │ ├── orangeslide.png │ ├── scene1.jpg │ ├── scene2.jpg │ ├── scene3.jpg │ ├── scene4.jpg │ ├── scene5.jpg │ ├── searchBarBackground.png │ ├── segment_check.png │ ├── segment_search.png │ ├── segment_tools.png │ ├── segmentedBackground.png │ ├── slider_ball.png │ ├── toolbarBackground.png │ ├── whiteButton.png │ └── yellowslide.png └── main.m ├── UIView_Animation ├── PicnicFiles │ ├── bug.png │ ├── door_bottom.png │ ├── door_top.png │ ├── fabric_bottom.png │ ├── fabric_top.png │ ├── plate_cheese.png │ └── squish.caf ├── UIView_Animation.xcodeproj │ └── project.pbxproj └── UIView_Animation │ ├── Default-568h@2x.png │ ├── Default.png │ ├── Default@2x.png │ ├── UIView_Animation-Info.plist │ ├── UIView_Animation-Prefix.pch │ ├── UXAppDelegate.h │ ├── UXAppDelegate.m │ ├── UXViewController.h │ ├── UXViewController.m │ ├── en.lproj │ ├── InfoPlist.strings │ └── MainStoryboard.storyboard │ └── main.m ├── UIView_Animation2 ├── FakeHUD.png ├── UIView_Animation2.xcodeproj │ └── project.pbxproj ├── UIView_Animation2 │ ├── AnimationCurvePicker.h │ ├── AnimationCurvePicker.m │ ├── AnimationCurvePicker.xib │ ├── Default-568h@2x.png │ ├── Default.png │ ├── Default@2x.png │ ├── FakeHUD.h │ ├── FakeHUD.m │ ├── FakeHUD.png │ ├── FakeHUD.xib │ ├── UIView+Animation.h │ ├── UIView+Animation.m │ ├── UIView_Animation2-Info.plist │ ├── UIView_Animation2-Prefix.pch │ ├── UXAppDelegate.h │ ├── UXAppDelegate.m │ ├── UXViewController.h │ ├── UXViewController.m │ ├── arrow1.png │ ├── en.lproj │ │ ├── InfoPlist.strings │ │ └── MainStoryboard.storyboard │ └── main.m └── arrow1.png ├── UI_DEMOS ├── TableContent.plist ├── UI_DEMOS.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── Wangkeke.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── Wangkeke.xcuserdatad │ │ └── xcschemes │ │ ├── UI_DEMOS.xcscheme │ │ └── xcschememanagement.plist └── UI_DEMOS │ ├── Default-568h@2x.png │ ├── Default.png │ ├── Default@2x.png │ ├── ReadMe │ ├── UI_DEMOS-Info.plist │ ├── UI_DEMOS-Prefix.pch │ ├── WKKAnimationViewController.h │ ├── WKKAnimationViewController.m │ ├── WKKAnimationViewController.xib │ ├── WKKAppDelegate.h │ ├── WKKAppDelegate.m │ ├── WKKModalViewController.h │ ├── WKKModalViewController.m │ ├── WKKModalViewController.xib │ ├── WKKRootTableViewController.h │ ├── WKKRootTableViewController.m │ ├── WKKTestModalViewController.h │ ├── WKKTestModalViewController.m │ ├── WKKTestModalViewController.xib │ ├── en.lproj │ └── InfoPlist.strings │ └── main.m ├── Unix_program └── MultiThread.c ├── UseNetWork ├── Classes │ ├── AsynchronousDownLoad.h │ ├── AsynchronousDownLoad.m │ ├── AsynchronousDownLoad.xib │ ├── Authentication.h │ ├── Authentication.m │ ├── Authentication.xib │ ├── Classes-1.moved-aside │ │ ├── UIDevice-IP.h │ │ └── UIDevice-IP.m │ ├── Classes-2.moved-aside │ │ ├── DownLoadHelper.h │ │ └── DownLoadHelper.m │ ├── DownLoad.h │ ├── DownLoad.m │ ├── DownLoad.xib │ ├── DownLoadHelper.h │ ├── DownLoadHelper.m │ ├── DownLoadHelper.xib │ ├── ParserJSON.h │ ├── ParserJSON.m │ ├── ParserJSON.xib │ ├── Reachability.h │ ├── Reachability.m │ ├── Setting.h │ ├── Setting.m │ ├── Setting.xib │ ├── TestBed.h │ ├── TestBed.m │ ├── TestBed.xib │ ├── TestNetWorkConnection.h │ ├── TestNetWorkConnection.m │ ├── TestNetWorkConnection.xib │ ├── UIDevice-IP.h │ ├── UIDevice-IP.m │ ├── UseNetWorkAppDelegate.h │ ├── UseNetWorkAppDelegate.m │ ├── UseNetWorkViewController.h │ ├── UseNetWorkViewController.m │ ├── UseXMLParser.h │ ├── UseXMLParser.m │ ├── UseXMLParser.xib │ ├── UserNSXMLParser.xib │ ├── checkWebSitReachable.h │ ├── checkWebSitReachable.m │ ├── checkWebSitReachable.xib │ ├── untitled.h │ └── untitled.m ├── JSON.h ├── MainWindow.xib ├── NSObject+SBJSON.h ├── NSObject+SBJSON.m ├── NSString+SBJSON.h ├── NSString+SBJSON.m ├── SBJsonBase.h ├── SBJsonBase.m ├── SBJsonParser.h ├── SBJsonParser.m ├── SBJsonStreamWriter.h ├── SBJsonStreamWriter.m ├── SBJsonWriter.h ├── SBJsonWriter.m ├── SBProxyForJson.h ├── UseNetWork-Info.plist ├── UseNetWork.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── Wangkeke.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ ├── vistech.mode1v3 │ ├── vistech.pbxuser │ └── xcuserdata │ │ └── Wangkeke.xcuserdatad │ │ └── xcschemes │ │ ├── UseNetWork.xcscheme │ │ └── xcschememanagement.plist ├── UseNetWorkViewController.xib ├── UseNetWork_Prefix.pch ├── main.m └── test.json ├── WSDL2ObjC_example ├── WSDL2ObjC.xcodeproj │ ├── .svn │ │ ├── entries │ │ └── text-base │ │ │ └── project.pbxproj.svn-base │ └── project.pbxproj ├── WSDL2ObjC │ ├── .svn │ │ ├── entries │ │ ├── prop-base │ │ │ ├── Default-568h@2x.png.svn-base │ │ │ ├── Default.png.svn-base │ │ │ └── Default@2x.png.svn-base │ │ └── text-base │ │ │ ├── Default-568h@2x.png.svn-base │ │ │ ├── Default.png.svn-base │ │ │ ├── Default@2x.png.svn-base │ │ │ ├── UXAppDelegate.h.svn-base │ │ │ ├── UXAppDelegate.m.svn-base │ │ │ ├── UXViewController.h.svn-base │ │ │ ├── UXViewController.m.svn-base │ │ │ ├── WSDL2ObjC-Info.plist.svn-base │ │ │ ├── WSDL2ObjC-Prefix.pch.svn-base │ │ │ └── main.m.svn-base │ ├── Default-568h@2x.png │ ├── Default.png │ ├── Default@2x.png │ ├── UXAppDelegate.h │ ├── UXAppDelegate.m │ ├── UXViewController.h │ ├── UXViewController.m │ ├── WSDL │ │ ├── .svn │ │ │ ├── entries │ │ │ └── text-base │ │ │ │ ├── ForAndroid.h.svn-base │ │ │ │ ├── ForAndroid.m.svn-base │ │ │ │ ├── NSDate+ISO8601Parsing.h.svn-base │ │ │ │ ├── NSDate+ISO8601Parsing.m.svn-base │ │ │ │ ├── NSDate+ISO8601Unparsing.h.svn-base │ │ │ │ ├── NSDate+ISO8601Unparsing.m.svn-base │ │ │ │ ├── USAdditions.h.svn-base │ │ │ │ ├── USAdditions.m.svn-base │ │ │ │ ├── USGlobals.h.svn-base │ │ │ │ ├── USGlobals.m.svn-base │ │ │ │ ├── xsd.h.svn-base │ │ │ │ └── xsd.m.svn-base │ │ ├── ForAndroid.h │ │ ├── ForAndroid.m │ │ ├── NSDate+ISO8601Parsing.h │ │ ├── NSDate+ISO8601Parsing.m │ │ ├── NSDate+ISO8601Unparsing.h │ │ ├── NSDate+ISO8601Unparsing.m │ │ ├── USAdditions.h │ │ ├── USAdditions.m │ │ ├── USGlobals.h │ │ ├── USGlobals.m │ │ ├── xsd.h │ │ └── xsd.m │ ├── WSDL2ObjC-Info.plist │ ├── WSDL2ObjC-Prefix.pch │ ├── en.lproj │ │ ├── .svn │ │ │ ├── entries │ │ │ └── text-base │ │ │ │ ├── InfoPlist.strings.svn-base │ │ │ │ └── UXViewController.xib.svn-base │ │ ├── InfoPlist.strings │ │ └── UXViewController.xib │ └── main.m └── wsdl_help.rtf ├── WebServiceDemo ├── Required_Libs │ ├── HTTPRequest │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── Build Scripts │ │ │ ├── fetch_ios_ghunit.rb │ │ │ ├── fetch_mac_ghunit.rb │ │ │ └── set_version_number.rb │ │ ├── Classes │ │ │ ├── ASIAuthenticationDialog.h │ │ │ ├── ASIAuthenticationDialog.m │ │ │ ├── ASICacheDelegate.h │ │ │ ├── ASIDataCompressor.h │ │ │ ├── ASIDataCompressor.m │ │ │ ├── ASIDataDecompressor.h │ │ │ ├── ASIDataDecompressor.m │ │ │ ├── ASIDownloadCache.h │ │ │ ├── ASIDownloadCache.m │ │ │ ├── ASIFormDataRequest.h │ │ │ ├── ASIFormDataRequest.m │ │ │ ├── ASIHTTPRequest.h │ │ │ ├── ASIHTTPRequest.m │ │ │ ├── ASIHTTPRequestConfig.h │ │ │ ├── ASIHTTPRequestDelegate.h │ │ │ ├── ASIInputStream.h │ │ │ ├── ASIInputStream.m │ │ │ ├── ASINetworkQueue.h │ │ │ ├── ASINetworkQueue.m │ │ │ ├── ASIProgressDelegate.h │ │ │ ├── ASIWebPageRequest │ │ │ │ ├── ASIWebPageRequest.h │ │ │ │ └── ASIWebPageRequest.m │ │ │ ├── CloudFiles │ │ │ │ ├── ASICloudFilesCDNRequest.h │ │ │ │ ├── ASICloudFilesCDNRequest.m │ │ │ │ ├── ASICloudFilesContainer.h │ │ │ │ ├── ASICloudFilesContainer.m │ │ │ │ ├── ASICloudFilesContainerRequest.h │ │ │ │ ├── ASICloudFilesContainerRequest.m │ │ │ │ ├── ASICloudFilesContainerXMLParserDelegate.h │ │ │ │ ├── ASICloudFilesContainerXMLParserDelegate.m │ │ │ │ ├── ASICloudFilesObject.h │ │ │ │ ├── ASICloudFilesObject.m │ │ │ │ ├── ASICloudFilesObjectRequest.h │ │ │ │ ├── ASICloudFilesObjectRequest.m │ │ │ │ ├── ASICloudFilesRequest.h │ │ │ │ └── ASICloudFilesRequest.m │ │ │ ├── S3 │ │ │ │ ├── ASINSXMLParserCompat.h │ │ │ │ ├── ASIS3Bucket.h │ │ │ │ ├── ASIS3Bucket.m │ │ │ │ ├── ASIS3BucketObject.h │ │ │ │ ├── ASIS3BucketObject.m │ │ │ │ ├── ASIS3BucketRequest.h │ │ │ │ ├── ASIS3BucketRequest.m │ │ │ │ ├── ASIS3ObjectRequest.h │ │ │ │ ├── ASIS3ObjectRequest.m │ │ │ │ ├── ASIS3Request.h │ │ │ │ ├── ASIS3Request.m │ │ │ │ ├── ASIS3ServiceRequest.h │ │ │ │ └── ASIS3ServiceRequest.m │ │ │ └── Tests │ │ │ │ ├── ASICloudFilesRequestTests.h │ │ │ │ ├── ASICloudFilesRequestTests.m │ │ │ │ ├── ASIDataCompressorTests.h │ │ │ │ ├── ASIDataCompressorTests.m │ │ │ │ ├── ASIDownloadCacheTests.h │ │ │ │ ├── ASIDownloadCacheTests.m │ │ │ │ ├── ASIFormDataRequestTests.h │ │ │ │ ├── ASIFormDataRequestTests.m │ │ │ │ ├── ASIHTTPRequestTests.h │ │ │ │ ├── ASIHTTPRequestTests.m │ │ │ │ ├── ASINetworkQueueTests.h │ │ │ │ ├── ASINetworkQueueTests.m │ │ │ │ ├── ASIS3RequestTests.h │ │ │ │ ├── ASIS3RequestTests.m │ │ │ │ ├── ASITestCase.h │ │ │ │ ├── ASITestCase.m │ │ │ │ ├── ASIWebPageRequestTests.h │ │ │ │ ├── ASIWebPageRequestTests.m │ │ │ │ ├── BlocksTests.h │ │ │ │ ├── BlocksTests.m │ │ │ │ ├── ClientCertificateTests.h │ │ │ │ ├── ClientCertificateTests.m │ │ │ │ ├── GHUnitTestMain.m │ │ │ │ ├── PerformanceTests.h │ │ │ │ ├── PerformanceTests.m │ │ │ │ ├── ProxyTests.h │ │ │ │ ├── ProxyTests.m │ │ │ │ ├── StressTests.h │ │ │ │ └── StressTests.m │ │ ├── DONORS │ │ ├── External │ │ │ └── Reachability │ │ │ │ ├── Reachability.h │ │ │ │ └── Reachability.m │ │ ├── LICENSE │ │ ├── Mac Sample │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── English.lproj │ │ │ │ ├── InfoPlist.strings │ │ │ │ └── MainMenu.xib │ │ │ ├── Info.plist │ │ │ ├── Mac_Prefix.pch │ │ │ ├── Tests-Info.plist │ │ │ └── main.m │ │ ├── Mac.xcodeproj │ │ │ ├── TemplateIcon.icns │ │ │ └── project.pbxproj │ │ ├── README.textile │ │ ├── iPhone Sample │ │ │ ├── AuthenticationViewController.h │ │ │ ├── AuthenticationViewController.m │ │ │ ├── DetailCell.h │ │ │ ├── DetailCell.m │ │ │ ├── GHUnitIOSTestMain.m │ │ │ ├── InfoCell.h │ │ │ ├── InfoCell.m │ │ │ ├── QueueViewController.h │ │ │ ├── QueueViewController.m │ │ │ ├── RequestProgressCell.h │ │ │ ├── RequestProgressCell.m │ │ │ ├── Resources │ │ │ │ ├── Sample.xib │ │ │ │ ├── client.p12 │ │ │ │ ├── iPadMainWindow.xib │ │ │ │ ├── iPhoneMainWindow.xib │ │ │ │ └── info.png │ │ │ ├── RootViewController.h │ │ │ ├── RootViewController.m │ │ │ ├── SampleViewController.h │ │ │ ├── SampleViewController.m │ │ │ ├── SynchronousViewController.h │ │ │ ├── SynchronousViewController.m │ │ │ ├── Tests-Info.plist │ │ │ ├── ToggleCell.h │ │ │ ├── ToggleCell.m │ │ │ ├── UploadViewController.h │ │ │ ├── UploadViewController.m │ │ │ ├── WebPageViewController.h │ │ │ ├── WebPageViewController.m │ │ │ ├── iPadInfo.plist │ │ │ ├── iPadSampleAppDelegate.h │ │ │ ├── iPadSampleAppDelegate.m │ │ │ ├── iPhoneInfo.plist │ │ │ ├── iPhoneSampleAppDelegate.h │ │ │ ├── iPhoneSampleAppDelegate.m │ │ │ ├── iPhone_Prefix.pch │ │ │ ├── iphone-icon.png │ │ │ ├── iphone-tests-icon.png │ │ │ └── main.m │ │ ├── iPhone.xcodeproj │ │ │ └── project.pbxproj │ │ └── strict.xcconfig │ ├── MBPProgressHUD │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── Demo │ │ │ ├── Classes │ │ │ │ ├── HudDemoAppDelegate.h │ │ │ │ ├── HudDemoAppDelegate.m │ │ │ │ ├── HudDemoViewController.h │ │ │ │ └── HudDemoViewController.m │ │ │ ├── HudDemo.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace │ │ │ │ │ └── contents.xcworkspacedata │ │ │ ├── HudDemo_Prefix.pch │ │ │ ├── Images │ │ │ │ ├── 37x-Checkmark.png │ │ │ │ ├── 37x-Checkmark@2x.png │ │ │ │ ├── Default.png │ │ │ │ ├── Default@2x.png │ │ │ │ ├── Icon.png │ │ │ │ └── Icon@2x.png │ │ │ ├── Info.plist │ │ │ ├── en.lproj │ │ │ │ ├── HudDemoViewController.xib │ │ │ │ └── MainWindow.xib │ │ │ └── main.m │ │ ├── MBProgressHUD.h │ │ ├── MBProgressHUD.m │ │ ├── MBProgressHUD.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ ├── MBProgressHUD.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── README.mdown │ └── SBJson_3.1 │ │ ├── .gitignore │ │ ├── CREDITS.md │ │ ├── Classes │ │ ├── NSObject+SBJson.h │ │ ├── NSObject+SBJson.m │ │ ├── SBJson.h │ │ ├── SBJsonParser.h │ │ ├── SBJsonParser.m │ │ ├── SBJsonStreamParser.h │ │ ├── SBJsonStreamParser.m │ │ ├── SBJsonStreamParserAccumulator.h │ │ ├── SBJsonStreamParserAccumulator.m │ │ ├── SBJsonStreamParserAdapter.h │ │ ├── SBJsonStreamParserAdapter.m │ │ ├── SBJsonStreamParserState.h │ │ ├── SBJsonStreamParserState.m │ │ ├── SBJsonStreamWriter.h │ │ ├── SBJsonStreamWriter.m │ │ ├── SBJsonStreamWriterAccumulator.h │ │ ├── SBJsonStreamWriterAccumulator.m │ │ ├── SBJsonStreamWriterState.h │ │ ├── SBJsonStreamWriterState.m │ │ ├── SBJsonTokeniser.h │ │ ├── SBJsonTokeniser.m │ │ ├── SBJsonUTF8Stream.h │ │ ├── SBJsonUTF8Stream.m │ │ ├── SBJsonWriter.h │ │ └── SBJsonWriter.m │ │ ├── Examples │ │ ├── DisplayPretty │ │ │ ├── .gitignore │ │ │ ├── DisplayPretty.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ ├── DisplayPretty │ │ │ │ ├── DisplayPretty-Info.plist │ │ │ │ ├── DisplayPretty-Prefix.pch │ │ │ │ ├── DisplayPrettyAppDelegate.h │ │ │ │ ├── DisplayPrettyAppDelegate.m │ │ │ │ ├── DisplayPrettyController.h │ │ │ │ ├── DisplayPrettyController.m │ │ │ │ ├── en.lproj │ │ │ │ │ ├── Credits.rtf │ │ │ │ │ ├── InfoPlist.strings │ │ │ │ │ └── MainMenu.xib │ │ │ │ └── main.m │ │ │ └── Readme.md │ │ └── TweetStream │ │ │ ├── .gitignore │ │ │ ├── Readme.md │ │ │ ├── TweetStream.xcodeproj │ │ │ └── project.pbxproj │ │ │ └── TweetStream │ │ │ ├── TweetStream-Info.plist │ │ │ ├── TweetStream-Prefix.pch │ │ │ ├── TweetStreamAppDelegate.h │ │ │ ├── TweetStreamAppDelegate.m │ │ │ ├── TweetStreamViewController.h │ │ │ ├── TweetStreamViewController.m │ │ │ ├── en.lproj │ │ │ ├── InfoPlist.strings │ │ │ ├── MainWindow.xib │ │ │ └── TweetStreamViewController.xib │ │ │ └── main.m │ │ ├── INSTALL.md │ │ ├── InstallDocumentation.sh │ │ ├── LICENSE.md │ │ ├── NEWS.md │ │ ├── README.md │ │ ├── SBJson.xcodeproj │ │ └── project.pbxproj │ │ ├── SBJson.xcworkspace │ │ └── contents.xcworkspacedata │ │ ├── SBJson │ │ ├── SBJson-Info.plist │ │ ├── SBJson-Prefix.pch │ │ └── en.lproj │ │ │ └── InfoPlist.strings │ │ ├── SBJsonTests │ │ ├── SBJsonTests-Info.plist │ │ ├── SBJsonTests-Prefix.pch │ │ └── en.lproj │ │ │ └── InfoPlist.strings │ │ ├── Tests │ │ ├── Data │ │ │ ├── comparatorsort │ │ │ │ ├── basic │ │ │ │ │ ├── input │ │ │ │ │ └── output │ │ │ │ ├── json.org │ │ │ │ │ └── a │ │ │ │ │ │ ├── input │ │ │ │ │ │ └── output │ │ │ │ └── rfc4627 │ │ │ │ │ └── a │ │ │ │ │ ├── input │ │ │ │ │ └── output │ │ │ ├── format │ │ │ │ ├── basic │ │ │ │ │ ├── input │ │ │ │ │ └── output │ │ │ │ ├── json.org │ │ │ │ │ ├── README │ │ │ │ │ ├── a │ │ │ │ │ │ ├── input │ │ │ │ │ │ └── output │ │ │ │ │ ├── b │ │ │ │ │ │ ├── input │ │ │ │ │ │ └── output │ │ │ │ │ ├── c │ │ │ │ │ │ ├── input │ │ │ │ │ │ └── output │ │ │ │ │ ├── d │ │ │ │ │ │ ├── input │ │ │ │ │ │ └── output │ │ │ │ │ └── e │ │ │ │ │ │ ├── input │ │ │ │ │ │ └── output │ │ │ │ └── rfc4627 │ │ │ │ │ ├── README │ │ │ │ │ ├── a │ │ │ │ │ ├── input │ │ │ │ │ └── output │ │ │ │ │ └── b │ │ │ │ │ ├── input │ │ │ │ │ └── output │ │ │ ├── invalid │ │ │ │ ├── array │ │ │ │ │ ├── eof-1 │ │ │ │ │ │ ├── error │ │ │ │ │ │ └── input │ │ │ │ │ ├── eof-2 │ │ │ │ │ │ ├── error │ │ │ │ │ │ └── input │ │ │ │ │ ├── eof-3 │ │ │ │ │ │ ├── error │ │ │ │ │ │ └── input │ │ │ │ │ └── eof-4 │ │ │ │ │ │ ├── error │ │ │ │ │ │ └── input │ │ │ │ ├── boolean │ │ │ │ │ ├── false │ │ │ │ │ │ ├── error │ │ │ │ │ │ └── input │ │ │ │ │ └── true │ │ │ │ │ │ ├── error │ │ │ │ │ │ └── input │ │ │ │ ├── depth │ │ │ │ │ ├── error │ │ │ │ │ └── input │ │ │ │ ├── encoding │ │ │ │ │ └── utf8 │ │ │ │ │ │ ├── error │ │ │ │ │ │ └── input │ │ │ │ ├── eof │ │ │ │ │ └── error │ │ │ │ ├── garbage │ │ │ │ │ ├── asterisk │ │ │ │ │ │ ├── error │ │ │ │ │ │ └── input │ │ │ │ │ └── single-quote │ │ │ │ │ │ ├── error │ │ │ │ │ │ └── input │ │ │ │ ├── null │ │ │ │ │ ├── error │ │ │ │ │ └── input │ │ │ │ ├── number │ │ │ │ │ ├── leading-plus │ │ │ │ │ │ ├── error │ │ │ │ │ │ └── input │ │ │ │ │ ├── leading-zero │ │ │ │ │ │ ├── error │ │ │ │ │ │ └── input │ │ │ │ │ ├── no-digits-after-decimal │ │ │ │ │ │ ├── error │ │ │ │ │ │ └── input │ │ │ │ │ ├── no-digits-after-exponent-1 │ │ │ │ │ │ ├── error │ │ │ │ │ │ └── input │ │ │ │ │ ├── no-digits-after-exponent-2 │ │ │ │ │ │ ├── error │ │ │ │ │ │ └── input │ │ │ │ │ ├── no-digits-after-exponent-3 │ │ │ │ │ │ ├── error │ │ │ │ │ │ └── input │ │ │ │ │ ├── no-digits-after-minus │ │ │ │ │ │ ├── error │ │ │ │ │ │ └── input │ │ │ │ │ ├── overflow-exponent-1 │ │ │ │ │ │ ├── error │ │ │ │ │ │ └── input │ │ │ │ │ ├── overflow-exponent-2 │ │ │ │ │ │ ├── error │ │ │ │ │ │ └── input │ │ │ │ │ └── overflow-mantissa │ │ │ │ │ │ ├── error │ │ │ │ │ │ └── input │ │ │ │ ├── object │ │ │ │ │ ├── eof-1 │ │ │ │ │ │ ├── error │ │ │ │ │ │ └── input │ │ │ │ │ ├── eof-2 │ │ │ │ │ │ ├── error │ │ │ │ │ │ └── input │ │ │ │ │ ├── eof-3 │ │ │ │ │ │ ├── error │ │ │ │ │ │ └── input │ │ │ │ │ └── eof-4 │ │ │ │ │ │ ├── error │ │ │ │ │ │ └── input │ │ │ │ └── string │ │ │ │ │ ├── ctrl-chars │ │ │ │ │ ├── newline │ │ │ │ │ │ ├── error │ │ │ │ │ │ └── input │ │ │ │ │ └── tab │ │ │ │ │ │ ├── error │ │ │ │ │ │ └── input │ │ │ │ │ ├── invalid-hex-quad │ │ │ │ │ ├── error │ │ │ │ │ └── input │ │ │ │ │ ├── unicode-invalid-high-surrogate │ │ │ │ │ ├── error │ │ │ │ │ └── input │ │ │ │ │ ├── unicode-invalid-low-surrogate │ │ │ │ │ ├── error │ │ │ │ │ └── input │ │ │ │ │ └── unicode-missing-low-surrogate │ │ │ │ │ ├── error │ │ │ │ │ └── input │ │ │ ├── jsonchecker │ │ │ │ ├── README │ │ │ │ ├── fail1.json │ │ │ │ ├── fail10.json │ │ │ │ ├── fail11.json │ │ │ │ ├── fail12.json │ │ │ │ ├── fail13.json │ │ │ │ ├── fail14.json │ │ │ │ ├── fail15.json │ │ │ │ ├── fail16.json │ │ │ │ ├── fail17.json │ │ │ │ ├── fail18.json │ │ │ │ ├── fail19.json │ │ │ │ ├── fail2.json │ │ │ │ ├── fail20.json │ │ │ │ ├── fail21.json │ │ │ │ ├── fail22.json │ │ │ │ ├── fail23.json │ │ │ │ ├── fail24.json │ │ │ │ ├── fail25.json │ │ │ │ ├── fail26.json │ │ │ │ ├── fail27.json │ │ │ │ ├── fail28.json │ │ │ │ ├── fail29.json │ │ │ │ ├── fail3.json │ │ │ │ ├── fail30.json │ │ │ │ ├── fail31.json │ │ │ │ ├── fail32.json │ │ │ │ ├── fail33.json │ │ │ │ ├── fail4.json │ │ │ │ ├── fail5.json │ │ │ │ ├── fail6.json │ │ │ │ ├── fail7.json │ │ │ │ ├── fail8.json │ │ │ │ ├── fail9.json │ │ │ │ ├── pass1.json │ │ │ │ ├── pass2.json │ │ │ │ └── pass3.json │ │ │ └── valid │ │ │ │ ├── array │ │ │ │ ├── input │ │ │ │ └── output │ │ │ │ ├── boolean │ │ │ │ ├── input │ │ │ │ └── output │ │ │ │ ├── null │ │ │ │ ├── input │ │ │ │ └── output │ │ │ │ ├── number │ │ │ │ ├── exponential │ │ │ │ │ ├── input │ │ │ │ │ └── output │ │ │ │ ├── float │ │ │ │ │ ├── input │ │ │ │ │ └── output │ │ │ │ └── integer │ │ │ │ │ ├── input │ │ │ │ │ └── output │ │ │ │ ├── object │ │ │ │ ├── input │ │ │ │ └── output │ │ │ │ └── string │ │ │ │ ├── ctrl-shorthand │ │ │ │ ├── input │ │ │ │ └── output │ │ │ │ ├── ctrl │ │ │ │ ├── input │ │ │ │ └── output │ │ │ │ ├── escapes │ │ │ │ ├── input │ │ │ │ └── output │ │ │ │ ├── simple │ │ │ │ ├── input │ │ │ │ └── output │ │ │ │ ├── unicode-captial-alpha │ │ │ │ ├── input │ │ │ │ └── output │ │ │ │ ├── unicode-e-acute-and-ge-and-42 │ │ │ │ ├── input │ │ │ │ └── output │ │ │ │ ├── unicode-e-acute-and-ge │ │ │ │ ├── input │ │ │ │ └── output │ │ │ │ ├── unicode-e-acute │ │ │ │ ├── input │ │ │ │ └── output │ │ │ │ └── unicode-g-clef │ │ │ │ ├── input │ │ │ │ └── output │ │ ├── ErrorTest.m │ │ ├── FormatTest.m │ │ ├── JsonCheckerTest.m │ │ ├── JsonTestCase.h │ │ ├── JsonTestCase.m │ │ ├── ProxyTest.m │ │ ├── RoundTripTest.m │ │ ├── SortedFormatTest.m │ │ ├── Stream │ │ │ ├── xaa │ │ │ ├── xab │ │ │ ├── xac │ │ │ ├── xad │ │ │ ├── xae │ │ │ ├── xaf │ │ │ ├── xag │ │ │ ├── xah │ │ │ ├── xai │ │ │ ├── xaj │ │ │ ├── xak │ │ │ ├── xal │ │ │ ├── xam │ │ │ ├── xan │ │ │ ├── xao │ │ │ ├── xap │ │ │ ├── xaq │ │ │ ├── xar │ │ │ ├── xas │ │ │ ├── xat │ │ │ ├── xau │ │ │ ├── xav │ │ │ ├── xaw │ │ │ ├── xax │ │ │ ├── xay │ │ │ ├── xaz │ │ │ ├── xba │ │ │ ├── xbb │ │ │ ├── xbc │ │ │ ├── xbd │ │ │ ├── xbe │ │ │ ├── xbf │ │ │ ├── xbg │ │ │ ├── xbh │ │ │ ├── xbi │ │ │ ├── xbj │ │ │ ├── xbk │ │ │ ├── xbl │ │ │ ├── xbm │ │ │ ├── xbn │ │ │ ├── xbo │ │ │ ├── xbp │ │ │ ├── xbq │ │ │ ├── xbr │ │ │ ├── xbs │ │ │ ├── xbt │ │ │ ├── xbu │ │ │ ├── xbv │ │ │ ├── xbw │ │ │ ├── xbx │ │ │ ├── xby │ │ │ ├── xbz │ │ │ ├── xca │ │ │ ├── xcb │ │ │ ├── xcc │ │ │ ├── xcd │ │ │ ├── xce │ │ │ ├── xcf │ │ │ ├── xcg │ │ │ ├── xch │ │ │ ├── xci │ │ │ ├── xcj │ │ │ ├── xck │ │ │ ├── xcl │ │ │ ├── xcm │ │ │ ├── xcn │ │ │ ├── xco │ │ │ ├── xcp │ │ │ ├── xcq │ │ │ ├── xcr │ │ │ ├── xcs │ │ │ ├── xct │ │ │ ├── xcu │ │ │ ├── xcv │ │ │ ├── xcw │ │ │ ├── xcx │ │ │ ├── xcy │ │ │ ├── xcz │ │ │ ├── xda │ │ │ ├── xdb │ │ │ ├── xdc │ │ │ ├── xdd │ │ │ ├── xde │ │ │ ├── xdf │ │ │ ├── xdg │ │ │ ├── xdh │ │ │ ├── xdi │ │ │ ├── xdj │ │ │ ├── xdk │ │ │ ├── xdl │ │ │ ├── xdm │ │ │ ├── xdn │ │ │ ├── xdo │ │ │ ├── xdp │ │ │ ├── xdq │ │ │ ├── xdr │ │ │ ├── xds │ │ │ ├── xdt │ │ │ ├── xdu │ │ │ └── xxx │ │ ├── StreamParserIntegrationTest.m │ │ └── WriterTest.m │ │ ├── sbjson-ios │ │ └── sbjson-ios-Prefix.pch │ │ └── sbjson-iosTests │ │ ├── en.lproj │ │ └── InfoPlist.strings │ │ ├── sbjson-iosTests-Info.plist │ │ └── sbjson-iosTests-Prefix.pch ├── WebServiceTest │ ├── ASIAuthenticationDialog.h │ ├── ASIAuthenticationDialog.m │ ├── ASICacheDelegate.h │ ├── ASIDataCompressor.h │ ├── ASIDataCompressor.m │ ├── ASIDataDecompressor.h │ ├── ASIDataDecompressor.m │ ├── ASIDownloadCache.h │ ├── ASIDownloadCache.m │ ├── ASIFormDataRequest.h │ ├── ASIFormDataRequest.m │ ├── ASIHTTPRequest.h │ ├── ASIHTTPRequest.m │ ├── ASIHTTPRequestConfig.h │ ├── ASIHTTPRequestDelegate.h │ ├── ASIInputStream.h │ ├── ASIInputStream.m │ ├── ASINetworkQueue.h │ ├── ASINetworkQueue.m │ ├── ASIProgressDelegate.h │ ├── MBProgressHUD.h │ ├── MBProgressHUD.m │ ├── NSObject+SBJson.h │ ├── NSObject+SBJson.m │ ├── Reachability │ │ ├── Reachability.h │ │ └── Reachability.m │ ├── SBJson.h │ ├── SBJsonParser.h │ ├── SBJsonParser.m │ ├── SBJsonStreamParser.h │ ├── SBJsonStreamParser.m │ ├── SBJsonStreamParserAccumulator.h │ ├── SBJsonStreamParserAccumulator.m │ ├── SBJsonStreamParserAdapter.h │ ├── SBJsonStreamParserAdapter.m │ ├── SBJsonStreamParserState.h │ ├── SBJsonStreamParserState.m │ ├── SBJsonStreamWriter.h │ ├── SBJsonStreamWriter.m │ ├── SBJsonStreamWriterAccumulator.h │ ├── SBJsonStreamWriterAccumulator.m │ ├── SBJsonStreamWriterState.h │ ├── SBJsonStreamWriterState.m │ ├── SBJsonTokeniser.h │ ├── SBJsonTokeniser.m │ ├── SBJsonUTF8Stream.h │ ├── SBJsonUTF8Stream.m │ ├── SBJsonWriter.h │ ├── SBJsonWriter.m │ ├── WebServiceTest.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcuserdata │ │ │ │ └── Wangkeke.xcuserdatad │ │ │ │ └── UserInterfaceState.xcuserstate │ │ └── xcuserdata │ │ │ └── Wangkeke.xcuserdatad │ │ │ └── xcschemes │ │ │ ├── WebServiceTest.xcscheme │ │ │ └── xcschememanagement.plist │ └── WebServiceTest │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── WebServiceTest-Info.plist │ │ ├── WebServiceTest-Prefix.pch │ │ ├── en.lproj │ │ ├── InfoPlist.strings │ │ └── ViewController.xib │ │ └── main.m └── readme.txt ├── WebServiceLocalTimeSoap ├── Classes │ ├── MyLocalTimeSoapAppDelegate.h │ ├── MyLocalTimeSoapAppDelegate.m │ ├── MyLocalTimeSoapViewController.h │ └── MyLocalTimeSoapViewController.m ├── LocalTime │ ├── LocalTime.h │ ├── LocalTime.m │ ├── NSDate+ISO8601Parsing.h │ ├── NSDate+ISO8601Parsing.m │ ├── NSDate+ISO8601Unparsing.h │ ├── NSDate+ISO8601Unparsing.m │ ├── USAdditions.h │ ├── USAdditions.m │ ├── USGlobals.h │ ├── USGlobals.m │ ├── xs.h │ └── xs.m ├── MainWindow.xib ├── MyLocalTimeSoap-Info.plist ├── MyLocalTimeSoap.xcodeproj │ └── project.pbxproj ├── MyLocalTimeSoapViewController.xib ├── MyLocalTimeSoap_Prefix.pch └── main.m ├── WebViewDemo ├── 1.html ├── WebViewDemo.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── cokecoffe.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── cokecoffe.xcuserdatad │ │ └── xcschemes │ │ ├── WebViewDemo.xcscheme │ │ └── xcschememanagement.plist └── WebViewDemo │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── ViewController.h │ ├── ViewController.m │ ├── WebViewDemo-Info.plist │ ├── WebViewDemo-Prefix.pch │ ├── en.lproj │ ├── InfoPlist.strings │ └── ViewController.xib │ └── main.m ├── XMPP_Demo ├── Authentication │ ├── Anonymous │ │ ├── XMPPAnonymousAuthentication.h │ │ └── XMPPAnonymousAuthentication.m │ ├── Deprecated-Digest │ │ ├── XMPPDeprecatedDigestAuthentication.h │ │ └── XMPPDeprecatedDigestAuthentication.m │ ├── Deprecated-Plain │ │ ├── XMPPDeprecatedPlainAuthentication.h │ │ └── XMPPDeprecatedPlainAuthentication.m │ ├── Digest-MD5 │ │ ├── XMPPDigestMD5Authentication.h │ │ └── XMPPDigestMD5Authentication.m │ ├── Plain │ │ ├── XMPPPlainAuthentication.h │ │ └── XMPPPlainAuthentication.m │ ├── X-Facebook-Platform │ │ ├── XMPPXFacebookPlatformAuthentication.h │ │ └── XMPPXFacebookPlatformAuthentication.m │ └── XMPPSASLAuthentication.h ├── Categories │ ├── NSData+XMPP.h │ ├── NSData+XMPP.m │ ├── NSNumber+XMPP.h │ ├── NSNumber+XMPP.m │ ├── NSXMLElement+XMPP.h │ └── NSXMLElement+XMPP.m ├── Core │ ├── XMPP.h │ ├── XMPPElement.h │ ├── XMPPElement.m │ ├── XMPPIQ.h │ ├── XMPPIQ.m │ ├── XMPPInternal.h │ ├── XMPPJID.h │ ├── XMPPJID.m │ ├── XMPPLogging.h │ ├── XMPPMessage.h │ ├── XMPPMessage.m │ ├── XMPPModule.h │ ├── XMPPModule.m │ ├── XMPPParser.h │ ├── XMPPParser.m │ ├── XMPPPresence.h │ ├── XMPPPresence.m │ ├── XMPPStream.h │ └── XMPPStream.m ├── Utilities │ ├── DDList.h │ ├── DDList.m │ ├── GCDMulticastDelegate.h │ ├── GCDMulticastDelegate.m │ ├── LibIDN.h │ ├── LibIDN.m │ ├── RFImageToDataTransformer.h │ ├── RFImageToDataTransformer.m │ ├── XMPPIDTracker.h │ ├── XMPPIDTracker.m │ ├── XMPPSRVResolver.h │ └── XMPPSRVResolver.m ├── Vendor │ ├── CocoaAsyncSocket │ │ ├── GCDAsyncSocket.h │ │ └── GCDAsyncSocket.m │ ├── CocoaLumberjack │ │ ├── DDASLLogger.h │ │ ├── DDASLLogger.m │ │ ├── DDAbstractDatabaseLogger.h │ │ ├── DDAbstractDatabaseLogger.m │ │ ├── DDFileLogger.h │ │ ├── DDFileLogger.m │ │ ├── DDLog.h │ │ ├── DDLog.m │ │ ├── DDTTYLogger.h │ │ ├── DDTTYLogger.m │ │ └── Extensions │ │ │ ├── ContextFilterLogFormatter.h │ │ │ ├── ContextFilterLogFormatter.m │ │ │ ├── DispatchQueueLogFormatter.h │ │ │ ├── DispatchQueueLogFormatter.m │ │ │ └── README.txt │ ├── KissXML │ │ ├── Categories │ │ │ ├── NSString+DDXML.h │ │ │ └── NSString+DDXML.m │ │ ├── DDXML.h │ │ ├── DDXMLDocument.h │ │ ├── DDXMLDocument.m │ │ ├── DDXMLElement.h │ │ ├── DDXMLElement.m │ │ ├── DDXMLNode.h │ │ ├── DDXMLNode.m │ │ └── Private │ │ │ └── DDXMLPrivate.h │ └── libidn │ │ ├── idn-int.h │ │ ├── libidn-1.24.tar.gz │ │ ├── libidn.a │ │ └── stringprep.h ├── XMPP_Demo.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── Wangkeke.xcuserdatad │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ └── WorkspaceSettings.xcsettings │ └── xcuserdata │ │ └── Wangkeke.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints.xcbkptlist │ │ └── xcschemes │ │ ├── XMPP_Demo.xcscheme │ │ └── xcschememanagement.plist └── XMPP_Demo │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── BuddyListViewController.h │ ├── BuddyListViewController.m │ ├── BuddyListViewController.xib │ ├── ChatDelegate.h │ ├── ChatViewController.h │ ├── ChatViewController.m │ ├── ChatViewController.xib │ ├── LoginViewController.h │ ├── LoginViewController.m │ ├── LoginViewController.xib │ ├── MessageDelegate.h │ ├── XMPP_Demo-Info.plist │ ├── XMPP_Demo-Prefix.pch │ ├── en.lproj │ └── InfoPlist.strings │ └── main.m ├── animations ├── animations.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ ├── Wangkeke.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ │ │ ├── cokecoffe.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ │ │ └── ww.xcuserdatad │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ └── WorkspaceSettings.xcsettings │ └── xcuserdata │ │ ├── Wangkeke.xcuserdatad │ │ └── xcschemes │ │ │ ├── animations.xcscheme │ │ │ └── xcschememanagement.plist │ │ ├── cokecoffe.xcuserdatad │ │ ├── xcdebugger │ │ │ └── Breakpoints.xcbkptlist │ │ └── xcschemes │ │ │ ├── animations.xcscheme │ │ │ └── xcschememanagement.plist │ │ └── ww.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints.xcbkptlist │ │ └── xcschemes │ │ ├── animations.xcscheme │ │ └── xcschememanagement.plist └── animations │ ├── 3.jpg │ ├── AnotherViewController.h │ ├── AnotherViewController.m │ ├── AnotherViewController.xib │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── ViewController.h │ ├── ViewController.m │ ├── animations-Info.plist │ ├── animations-Prefix.pch │ ├── en.lproj │ ├── InfoPlist.strings │ └── ViewController.xib │ ├── l.jpg │ ├── m.jpg │ └── main.m ├── appLifeCycle ├── appLifeCycle.xcodeproj │ └── project.pbxproj ├── appLifeCycle │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Default-568h@2x.png │ ├── Default.png │ ├── Default@2x.png │ ├── ViewController.h │ ├── ViewController.m │ ├── appLifeCycle-Info.plist │ ├── appLifeCycle-Prefix.pch │ ├── apple.png │ ├── en.lproj │ │ ├── InfoPlist.strings │ │ └── ViewController.xib │ └── main.m └── lifecycle.pdf ├── block ├── block.xcodeproj │ └── project.pbxproj └── block │ ├── block-Prefix.pch │ ├── block.1 │ └── main.m ├── capturepause ├── .gitignore ├── CapturePause.xcodeproj │ └── project.pbxproj ├── CapturePause │ ├── CameraEngine.h │ ├── CameraEngine.m │ ├── CapturePause-Info.plist │ ├── CapturePause-Prefix.pch │ ├── CapturePauseAppDelegate.h │ ├── CapturePauseAppDelegate.m │ ├── CapturePauseViewController.h │ ├── CapturePauseViewController.m │ ├── Default-568h@2x.png │ ├── Default.png │ ├── Default@2x.png │ ├── VideoEncoder.h │ ├── VideoEncoder.m │ ├── en.lproj │ │ ├── InfoPlist.strings │ │ └── MainStoryboard.storyboard │ └── main.m └── LICENSE.markdown ├── copy ├── copy.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ ├── Wangkeke.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ │ │ └── cokecoffe.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ ├── Wangkeke.xcuserdatad │ │ └── xcschemes │ │ │ ├── copy.xcscheme │ │ │ └── xcschememanagement.plist │ │ └── cokecoffe.xcuserdatad │ │ └── xcschemes │ │ ├── copy.xcscheme │ │ └── xcschememanagement.plist └── copy │ ├── copy-Prefix.pch │ ├── copy.1 │ └── main.m ├── dynamicSearchView ├── FilterButton.h ├── FilterButton.m ├── FilterButton.xib ├── FilterDelegate.h ├── FilterLeftViewController.h ├── FilterLeftViewController.m ├── FilterLeftViewController.xib ├── FilterScrollView.h └── FilterScrollView.m ├── excel-plist ├── File.txt ├── excel-plist.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── cokecoffe.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── cokecoffe.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints.xcbkptlist │ │ └── xcschemes │ │ ├── excel-plist.xcscheme │ │ └── xcschememanagement.plist └── excel-plist │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── en.lproj │ └── InfoPlist.strings │ ├── excel-plist-Info.plist │ ├── excel-plist-Prefix.pch │ └── main.m ├── iPad 拆分视图 ├── MultipleDetailViews │ ├── Classes │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── FirstDetailViewController.h │ │ ├── FirstDetailViewController.m │ │ ├── RootViewController.h │ │ ├── RootViewController.m │ │ ├── SecondDetailViewController.h │ │ └── SecondDetailViewController.m │ ├── MultipleDetailViews-Info.plist │ ├── MultipleDetailViews.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcuserdata │ │ │ │ └── Wangkeke.xcuserdatad │ │ │ │ └── UserInterfaceState.xcuserstate │ │ └── xcuserdata │ │ │ └── Wangkeke.xcuserdatad │ │ │ ├── xcdebugger │ │ │ └── Breakpoints.xcbkptlist │ │ │ └── xcschemes │ │ │ ├── MultipleDetailViews.xcscheme │ │ │ └── xcschememanagement.plist │ ├── MultipleDetailViews_Prefix.pch │ ├── ReadMe.txt │ ├── en.lproj │ │ ├── FirstDetailView.xib │ │ ├── MainWindow.xib │ │ └── SecondDetailView.xib │ └── main.m └── UIsplitView │ ├── UIsplitView.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── Wangkeke.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── Wangkeke.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints.xcbkptlist │ │ └── xcschemes │ │ ├── UIsplitView.xcscheme │ │ └── xcschememanagement.plist │ └── UIsplitView │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── DetailViewController.h │ ├── DetailViewController.m │ ├── DetailViewController.xib │ ├── MainWindow.xib │ ├── RootViewController.h │ ├── RootViewController.m │ ├── RootViewController.xib │ ├── UIsplitView-Info.plist │ ├── UIsplitView-Prefix.pch │ ├── en.lproj │ └── InfoPlist.strings │ └── main.m ├── iPad_PopoverView ├── iPad_PopoverView.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── cokecoffe.xcuserdatad │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ └── WorkspaceSettings.xcsettings │ └── xcuserdata │ │ └── cokecoffe.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints.xcbkptlist │ │ └── xcschemes │ │ ├── iPad_PopoverView.xcscheme │ │ └── xcschememanagement.plist └── iPad_PopoverView │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── PopContentViewController.h │ ├── PopContentViewController.m │ ├── PopContentViewController.xib │ ├── PopTableViewController.h │ ├── PopTableViewController.m │ ├── ViewController.h │ ├── ViewController.m │ ├── en.lproj │ ├── InfoPlist.strings │ └── ViewController.xib │ ├── iPad_PopoverView-Info.plist │ ├── iPad_PopoverView-Prefix.pch │ ├── main.m │ └── readme ├── kvoTest ├── kvoTest.xcodeproj │ └── project.pbxproj └── kvoTest │ ├── Default-568h@2x.png │ ├── Default.png │ ├── Default@2x.png │ ├── en.lproj │ └── InfoPlist.strings │ ├── kvoTest-Info.plist │ ├── kvoTest-Prefix.pch │ └── main.m ├── mouse ├── mouse.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── cokecoffe.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── cokecoffe.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints.xcbkptlist │ │ └── xcschemes │ │ ├── mouse.xcscheme │ │ └── xcschememanagement.plist └── mouse │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── CarBodyView.xib │ ├── ViewController.h │ ├── ViewController.m │ ├── detectouter_10.png │ ├── en.lproj │ ├── InfoPlist.strings │ └── ViewController.xib │ ├── main.m │ ├── mouse-Info.plist │ ├── mouse-Prefix.pch │ ├── myview.h │ ├── myview.m │ ├── pointLocation.plist │ └── 线框@2x.png ├── tableviewHeadView ├── tableviewHeadView.xcodeproj │ └── project.pbxproj └── tableviewHeadView │ ├── Default-568h@2x.png │ ├── Default.png │ ├── Default@2x.png │ ├── UXAppDelegate.h │ ├── UXAppDelegate.m │ ├── UXTableViewController.h │ ├── UXTableViewController.m │ ├── UXTableViewController.xib │ ├── en.lproj │ └── InfoPlist.strings │ ├── main.m │ ├── tableviewHeadView-Info.plist │ └── tableviewHeadView-Prefix.pch ├── tableview_picture_GCD ├── tableview_picture_GCD.xcodeproj │ └── project.pbxproj └── tableview_picture_GCD │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Default-568h@2x.png │ ├── Default.png │ ├── Default@2x.png │ ├── ViewController.h │ ├── ViewController.m │ ├── en.lproj │ ├── InfoPlist.strings │ └── ViewController.xib │ ├── main.m │ ├── tableview_picture_GCD-Info.plist │ └── tableview_picture_GCD-Prefix.pch └── uisplitview ├── .svn ├── all-wcprops ├── entries └── text-base │ ├── MainWindow.xib.svn-base │ ├── ipad_demo-Info.plist.svn-base │ ├── ipad_demo_Prefix.pch.svn-base │ └── main.m.svn-base ├── Classes ├── .svn │ ├── all-wcprops │ ├── entries │ └── text-base │ │ ├── DetailViewController.h.svn-base │ │ ├── DetailViewController.m.svn-base │ │ ├── DetailViewController.xib.svn-base │ │ ├── RootViewController.h.svn-base │ │ ├── RootViewController.m.svn-base │ │ ├── RootViewController.xib.svn-base │ │ ├── ipad_demoAppDelegate.h.svn-base │ │ └── ipad_demoAppDelegate.m.svn-base ├── DetailViewController.h ├── DetailViewController.m ├── DetailViewController.xib ├── RootViewController.h ├── RootViewController.m ├── RootViewController.xib ├── ipad_demoAppDelegate.h └── ipad_demoAppDelegate.m ├── MainWindow.xib ├── ipad.demo.xcodeproj ├── .svn │ ├── all-wcprops │ ├── entries │ ├── prop-base │ │ └── project.pbxproj.svn-base │ └── text-base │ │ ├── project.pbxproj.svn-base │ │ ├── vsp.mode1v3.svn-base │ │ └── vsp.pbxuser.svn-base ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── Wangkeke.xcuserdatad │ │ └── UserInterfaceState.xcuserstate ├── vsp.mode1v3 ├── vsp.pbxuser └── xcuserdata │ └── Wangkeke.xcuserdatad │ └── xcschemes │ ├── ipad.demo.xcscheme │ └── xcschememanagement.plist ├── ipad_demo-Info.plist ├── ipad_demo_Prefix.pch └── main.m /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/.gitmodules -------------------------------------------------------------------------------- /AutoScrollLabel/Paoma/AutoScrollLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/AutoScrollLabel/Paoma/AutoScrollLabel.h -------------------------------------------------------------------------------- /AutoScrollLabel/Paoma/AutoScrollLabel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/AutoScrollLabel/Paoma/AutoScrollLabel.m -------------------------------------------------------------------------------- /AutoScrollLabel/Paoma/PaomaAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/AutoScrollLabel/Paoma/PaomaAppDelegate.h -------------------------------------------------------------------------------- /AutoScrollLabel/Paoma/PaomaAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/AutoScrollLabel/Paoma/PaomaAppDelegate.m -------------------------------------------------------------------------------- /AutoScrollLabel/Paoma/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /AutoScrollLabel/Paoma/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/AutoScrollLabel/Paoma/main.m -------------------------------------------------------------------------------- /AutoScrollLabel/PaomaTests/PaomaTests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/AutoScrollLabel/PaomaTests/PaomaTests.h -------------------------------------------------------------------------------- /AutoScrollLabel/PaomaTests/PaomaTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/AutoScrollLabel/PaomaTests/PaomaTests.m -------------------------------------------------------------------------------- /AutoScrollLabel/PaomaTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /AutoScrollLabel/TextFlow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/AutoScrollLabel/TextFlow.h -------------------------------------------------------------------------------- /AutoScrollLabel/TextFlow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/AutoScrollLabel/TextFlow.m -------------------------------------------------------------------------------- /Boyan_test/Boyan_test/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/Boyan_test/Boyan_test/AppDelegate.h -------------------------------------------------------------------------------- /Boyan_test/Boyan_test/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/Boyan_test/Boyan_test/AppDelegate.m -------------------------------------------------------------------------------- /Boyan_test/Boyan_test/Cell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/Boyan_test/Boyan_test/Cell.xib -------------------------------------------------------------------------------- /Boyan_test/Boyan_test/RootViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/Boyan_test/Boyan_test/RootViewController.h -------------------------------------------------------------------------------- /Boyan_test/Boyan_test/RootViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/Boyan_test/Boyan_test/RootViewController.m -------------------------------------------------------------------------------- /Boyan_test/Boyan_test/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Boyan_test/Boyan_test/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/Boyan_test/Boyan_test/main.m -------------------------------------------------------------------------------- /Boyan_test/CustomCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/Boyan_test/CustomCell.h -------------------------------------------------------------------------------- /Boyan_test/CustomCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/Boyan_test/CustomCell.m -------------------------------------------------------------------------------- /ButtonDemo/ButtonDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/ButtonDemo/ButtonDemo/AppDelegate.h -------------------------------------------------------------------------------- /ButtonDemo/ButtonDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/ButtonDemo/ButtonDemo/AppDelegate.m -------------------------------------------------------------------------------- /ButtonDemo/ButtonDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/ButtonDemo/ButtonDemo/ViewController.h -------------------------------------------------------------------------------- /ButtonDemo/ButtonDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/ButtonDemo/ButtonDemo/ViewController.m -------------------------------------------------------------------------------- /ButtonDemo/ButtonDemo/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /ButtonDemo/ButtonDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/ButtonDemo/ButtonDemo/main.m -------------------------------------------------------------------------------- /ButtonDemo/checked@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/ButtonDemo/checked@2x.png -------------------------------------------------------------------------------- /ButtonDemo/circle@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/ButtonDemo/circle@2x.png -------------------------------------------------------------------------------- /CALayerDemo/CALayerDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/CALayerDemo/CALayerDemo/AppDelegate.h -------------------------------------------------------------------------------- /CALayerDemo/CALayerDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/CALayerDemo/CALayerDemo/AppDelegate.m -------------------------------------------------------------------------------- /CALayerDemo/CALayerDemo/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/CALayerDemo/CALayerDemo/Common.h -------------------------------------------------------------------------------- /CALayerDemo/CALayerDemo/Common.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/CALayerDemo/CALayerDemo/Common.m -------------------------------------------------------------------------------- /CALayerDemo/CALayerDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/CALayerDemo/CALayerDemo/ViewController.h -------------------------------------------------------------------------------- /CALayerDemo/CALayerDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/CALayerDemo/CALayerDemo/ViewController.m -------------------------------------------------------------------------------- /CALayerDemo/CALayerDemo/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /CALayerDemo/CALayerDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/CALayerDemo/CALayerDemo/main.m -------------------------------------------------------------------------------- /CameraWithAVFoudation/CameraWithAVFoudation/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /CaseTool/CaseTool/AppController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/CaseTool/CaseTool/AppController.h -------------------------------------------------------------------------------- /CaseTool/CaseTool/AppController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/CaseTool/CaseTool/AppController.m -------------------------------------------------------------------------------- /CaseTool/CaseTool/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/CaseTool/CaseTool/AppDelegate.h -------------------------------------------------------------------------------- /CaseTool/CaseTool/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/CaseTool/CaseTool/AppDelegate.m -------------------------------------------------------------------------------- /CaseTool/CaseTool/CaseTool-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/CaseTool/CaseTool/CaseTool-Info.plist -------------------------------------------------------------------------------- /CaseTool/CaseTool/CaseTool-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/CaseTool/CaseTool/CaseTool-Prefix.pch -------------------------------------------------------------------------------- /CaseTool/CaseTool/en.lproj/Credits.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/CaseTool/CaseTool/en.lproj/Credits.rtf -------------------------------------------------------------------------------- /CaseTool/CaseTool/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /CaseTool/CaseTool/en.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/CaseTool/CaseTool/en.lproj/MainMenu.xib -------------------------------------------------------------------------------- /CaseTool/CaseTool/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/CaseTool/CaseTool/main.m -------------------------------------------------------------------------------- /CheckBox/CheckBox/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/CheckBox/CheckBox/AppDelegate.h -------------------------------------------------------------------------------- /CheckBox/CheckBox/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/CheckBox/CheckBox/AppDelegate.m -------------------------------------------------------------------------------- /CheckBox/CheckBox/CheckBox-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/CheckBox/CheckBox/CheckBox-Info.plist -------------------------------------------------------------------------------- /CheckBox/CheckBox/CheckBox-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/CheckBox/CheckBox/CheckBox-Prefix.pch -------------------------------------------------------------------------------- /CheckBox/CheckBox/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/CheckBox/CheckBox/ViewController.h -------------------------------------------------------------------------------- /CheckBox/CheckBox/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/CheckBox/CheckBox/ViewController.m -------------------------------------------------------------------------------- /CheckBox/CheckBox/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /CheckBox/CheckBox/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/CheckBox/CheckBox/main.m -------------------------------------------------------------------------------- /CheckBox/RadioButton/CheckButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/CheckBox/RadioButton/CheckButton.h -------------------------------------------------------------------------------- /CheckBox/RadioButton/CheckButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/CheckBox/RadioButton/CheckButton.m -------------------------------------------------------------------------------- /CheckBox/RadioButton/checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/CheckBox/RadioButton/checked.png -------------------------------------------------------------------------------- /CheckBox/RadioButton/unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/CheckBox/RadioButton/unchecked.png -------------------------------------------------------------------------------- /CollectionViewExample/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/CollectionViewExample/.gitignore -------------------------------------------------------------------------------- /CollectionViewExample/CollectionViewExample/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /CollectionViewExample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/CollectionViewExample/README.md -------------------------------------------------------------------------------- /Core Location/Core Location/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/Core Location/Core Location/AppDelegate.h -------------------------------------------------------------------------------- /Core Location/Core Location/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/Core Location/Core Location/AppDelegate.m -------------------------------------------------------------------------------- /Core Location/Core Location/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/Core Location/Core Location/Default.png -------------------------------------------------------------------------------- /Core Location/Core Location/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/Core Location/Core Location/Default@2x.png -------------------------------------------------------------------------------- /Core Location/Core Location/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Core Location/Core Location/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/Core Location/Core Location/main.m -------------------------------------------------------------------------------- /CoreAnimationBegin/CoreAnimationBegin/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /CorePlotDemo/CorePlotDemo/CPDAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/CorePlotDemo/CorePlotDemo/CPDAppDelegate.h -------------------------------------------------------------------------------- /CorePlotDemo/CorePlotDemo/CPDAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/CorePlotDemo/CorePlotDemo/CPDAppDelegate.m -------------------------------------------------------------------------------- /CorePlotDemo/CorePlotDemo/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /CorePlotDemo/CorePlotDemo/first.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/CorePlotDemo/CorePlotDemo/first.png -------------------------------------------------------------------------------- /CorePlotDemo/CorePlotDemo/first@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/CorePlotDemo/CorePlotDemo/first@2x.png -------------------------------------------------------------------------------- /CorePlotDemo/CorePlotDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/CorePlotDemo/CorePlotDemo/main.m -------------------------------------------------------------------------------- /CorePlotDemo/CorePlotDemo/second.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/CorePlotDemo/CorePlotDemo/second.png -------------------------------------------------------------------------------- /CorePlotDemo/CorePlotDemo/second@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/CorePlotDemo/CorePlotDemo/second@2x.png -------------------------------------------------------------------------------- /CorePlotDemo/Starter Files/CPDConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/CorePlotDemo/Starter Files/CPDConstants.h -------------------------------------------------------------------------------- /CorePlotDemo/Starter Files/CPDConstants.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/CorePlotDemo/Starter Files/CPDConstants.m -------------------------------------------------------------------------------- /CrashLog/bengkui.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/CrashLog/bengkui.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CrashLog/bengkui/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/CrashLog/bengkui/AppDelegate.h -------------------------------------------------------------------------------- /CrashLog/bengkui/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/CrashLog/bengkui/AppDelegate.m -------------------------------------------------------------------------------- /CrashLog/bengkui/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/CrashLog/bengkui/ViewController.h -------------------------------------------------------------------------------- /CrashLog/bengkui/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/CrashLog/bengkui/ViewController.m -------------------------------------------------------------------------------- /CrashLog/bengkui/bengkui-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/CrashLog/bengkui/bengkui-Info.plist -------------------------------------------------------------------------------- /CrashLog/bengkui/bengkui-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/CrashLog/bengkui/bengkui-Prefix.pch -------------------------------------------------------------------------------- /CrashLog/bengkui/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /CrashLog/bengkui/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/CrashLog/bengkui/main.m -------------------------------------------------------------------------------- /CustomCamaraView/18行驶证度@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/CustomCamaraView/18行驶证度@2x.png -------------------------------------------------------------------------------- /CustomCamaraView/CustomCamaraView/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /CustomCamaraView/CustomCamaraView/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/CustomCamaraView/CustomCamaraView/main.m -------------------------------------------------------------------------------- /CustomCamaraView/blackwhale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/CustomCamaraView/blackwhale.png -------------------------------------------------------------------------------- /CustomCamaraView/crosshair.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/CustomCamaraView/crosshair.png -------------------------------------------------------------------------------- /CustomCamaraView/logo-@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/CustomCamaraView/logo-@2x.png -------------------------------------------------------------------------------- /CustomCamaraView/保存-短凸@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/CustomCamaraView/保存-短凸@2x.png -------------------------------------------------------------------------------- /CustomCamaraView/保存-短凹@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/CustomCamaraView/保存-短凹@2x.png -------------------------------------------------------------------------------- /CustomCamaraView/拍照按钮-凸@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/CustomCamaraView/拍照按钮-凸@2x.png -------------------------------------------------------------------------------- /CustomCamaraView/拍照按钮-凹@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/CustomCamaraView/拍照按钮-凹@2x.png -------------------------------------------------------------------------------- /CustomCamaraView/拍照背景-右@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/CustomCamaraView/拍照背景-右@2x.png -------------------------------------------------------------------------------- /CustomCamaraView/拍照背景-左@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/CustomCamaraView/拍照背景-左@2x.png -------------------------------------------------------------------------------- /CustomCamaraView/拍行驶证框@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/CustomCamaraView/拍行驶证框@2x.png -------------------------------------------------------------------------------- /CustomCamaraView/返回-凸@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/CustomCamaraView/返回-凸@2x.png -------------------------------------------------------------------------------- /CustomCamaraView/返回-凹@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/CustomCamaraView/返回-凹@2x.png -------------------------------------------------------------------------------- /CustomCamaraView/重拍-凸@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/CustomCamaraView/重拍-凸@2x.png -------------------------------------------------------------------------------- /CustomCamaraView/重拍-凹@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/CustomCamaraView/重拍-凹@2x.png -------------------------------------------------------------------------------- /Dispatch_queue/Dispatch_queue/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/Dispatch_queue/Dispatch_queue/Default.png -------------------------------------------------------------------------------- /Dispatch_queue/Dispatch_queue/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Dispatch_queue/Dispatch_queue/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/Dispatch_queue/Dispatch_queue/main.m -------------------------------------------------------------------------------- /FileWalker/FileWalker/FileWalker.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/FileWalker/FileWalker/FileWalker.1 -------------------------------------------------------------------------------- /FileWalker/FileWalker/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/FileWalker/FileWalker/main.m -------------------------------------------------------------------------------- /GKTank/Classes/TankAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/GKTank/Classes/TankAppDelegate.h -------------------------------------------------------------------------------- /GKTank/Classes/TankAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/GKTank/Classes/TankAppDelegate.m -------------------------------------------------------------------------------- /GKTank/Classes/TankViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/GKTank/Classes/TankViewController.h -------------------------------------------------------------------------------- /GKTank/Classes/TankViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/GKTank/Classes/TankViewController.m -------------------------------------------------------------------------------- /GKTank/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/GKTank/Default.png -------------------------------------------------------------------------------- /GKTank/GKTank-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/GKTank/GKTank-Info.plist -------------------------------------------------------------------------------- /GKTank/GKTank.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/GKTank/GKTank.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /GKTank/GKTank_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/GKTank/GKTank_Prefix.pch -------------------------------------------------------------------------------- /GKTank/MainWindow.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/GKTank/MainWindow.xib -------------------------------------------------------------------------------- /GKTank/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/GKTank/README.txt -------------------------------------------------------------------------------- /GKTank/blockh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/GKTank/blockh.png -------------------------------------------------------------------------------- /GKTank/blockv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/GKTank/blockv.png -------------------------------------------------------------------------------- /GKTank/bluemissile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/GKTank/bluemissile.png -------------------------------------------------------------------------------- /GKTank/bluetank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/GKTank/bluetank.png -------------------------------------------------------------------------------- /GKTank/level1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/GKTank/level1.xml -------------------------------------------------------------------------------- /GKTank/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/GKTank/main.m -------------------------------------------------------------------------------- /GKTank/redmissile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/GKTank/redmissile.png -------------------------------------------------------------------------------- /GKTank/redtank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/GKTank/redtank.png -------------------------------------------------------------------------------- /GKTank/tank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/GKTank/tank.png -------------------------------------------------------------------------------- /GKTank/tankViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/GKTank/tankViewController.xib -------------------------------------------------------------------------------- /GKTank/tankbackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/GKTank/tankbackground.png -------------------------------------------------------------------------------- /HTTP/HTTP.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/HTTP/HTTP.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /HTTP/HTTP/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/HTTP/HTTP/AppDelegate.h -------------------------------------------------------------------------------- /HTTP/HTTP/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/HTTP/HTTP/AppDelegate.m -------------------------------------------------------------------------------- /HTTP/HTTP/HTTP-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/HTTP/HTTP/HTTP-Info.plist -------------------------------------------------------------------------------- /HTTP/HTTP/HTTP-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/HTTP/HTTP/HTTP-Prefix.pch -------------------------------------------------------------------------------- /HTTP/HTTP/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/HTTP/HTTP/ViewController.h -------------------------------------------------------------------------------- /HTTP/HTTP/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/HTTP/HTTP/ViewController.m -------------------------------------------------------------------------------- /HTTP/HTTP/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /HTTP/HTTP/en.lproj/ViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/HTTP/HTTP/en.lproj/ViewController.xib -------------------------------------------------------------------------------- /HTTP/HTTP/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/HTTP/HTTP/main.m -------------------------------------------------------------------------------- /HelloOpenGL/HelloOpenGL/CC3Foundation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/HelloOpenGL/HelloOpenGL/CC3Foundation.h -------------------------------------------------------------------------------- /HelloOpenGL/HelloOpenGL/CC3Foundation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/HelloOpenGL/HelloOpenGL/CC3Foundation.m -------------------------------------------------------------------------------- /HelloOpenGL/HelloOpenGL/CC3GLMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/HelloOpenGL/HelloOpenGL/CC3GLMatrix.h -------------------------------------------------------------------------------- /HelloOpenGL/HelloOpenGL/CC3GLMatrix.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/HelloOpenGL/HelloOpenGL/CC3GLMatrix.m -------------------------------------------------------------------------------- /HelloOpenGL/HelloOpenGL/CC3Kazmath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/HelloOpenGL/HelloOpenGL/CC3Kazmath.c -------------------------------------------------------------------------------- /HelloOpenGL/HelloOpenGL/CC3Kazmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/HelloOpenGL/HelloOpenGL/CC3Kazmath.h -------------------------------------------------------------------------------- /HelloOpenGL/HelloOpenGL/CC3Logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/HelloOpenGL/HelloOpenGL/CC3Logging.h -------------------------------------------------------------------------------- /HelloOpenGL/HelloOpenGL/CC3Math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/HelloOpenGL/HelloOpenGL/CC3Math.h -------------------------------------------------------------------------------- /HelloOpenGL/HelloOpenGL/CC3Math.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/HelloOpenGL/HelloOpenGL/CC3Math.m -------------------------------------------------------------------------------- /HelloOpenGL/HelloOpenGL/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/HelloOpenGL/HelloOpenGL/Icon.png -------------------------------------------------------------------------------- /HelloOpenGL/HelloOpenGL/OpenGLView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/HelloOpenGL/HelloOpenGL/OpenGLView.h -------------------------------------------------------------------------------- /HelloOpenGL/HelloOpenGL/OpenGLView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/HelloOpenGL/HelloOpenGL/OpenGLView.m -------------------------------------------------------------------------------- /HelloOpenGL/HelloOpenGL/SimpleVertex.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/HelloOpenGL/HelloOpenGL/SimpleVertex.glsl -------------------------------------------------------------------------------- /HelloOpenGL/HelloOpenGL/ccTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/HelloOpenGL/HelloOpenGL/ccTypes.h -------------------------------------------------------------------------------- /HelloOpenGL/HelloOpenGL/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /HelloOpenGL/HelloOpenGL/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/HelloOpenGL/HelloOpenGL/main.m -------------------------------------------------------------------------------- /KVO_TestDemo/KVO_TestDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/KVO_TestDemo/KVO_TestDemo/AppDelegate.h -------------------------------------------------------------------------------- /KVO_TestDemo/KVO_TestDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/KVO_TestDemo/KVO_TestDemo/AppDelegate.m -------------------------------------------------------------------------------- /KVO_TestDemo/KVO_TestDemo/DataModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/KVO_TestDemo/KVO_TestDemo/DataModel.h -------------------------------------------------------------------------------- /KVO_TestDemo/KVO_TestDemo/DataModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/KVO_TestDemo/KVO_TestDemo/DataModel.m -------------------------------------------------------------------------------- /KVO_TestDemo/KVO_TestDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/KVO_TestDemo/KVO_TestDemo/ViewController.h -------------------------------------------------------------------------------- /KVO_TestDemo/KVO_TestDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/KVO_TestDemo/KVO_TestDemo/ViewController.m -------------------------------------------------------------------------------- /KVO_TestDemo/KVO_TestDemo/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /KVO_TestDemo/KVO_TestDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/KVO_TestDemo/KVO_TestDemo/main.m -------------------------------------------------------------------------------- /LazyTableImages/Classes/AppRecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/LazyTableImages/Classes/AppRecord.h -------------------------------------------------------------------------------- /LazyTableImages/Classes/AppRecord.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/LazyTableImages/Classes/AppRecord.m -------------------------------------------------------------------------------- /LazyTableImages/Classes/IconDownloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/LazyTableImages/Classes/IconDownloader.h -------------------------------------------------------------------------------- /LazyTableImages/Classes/IconDownloader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/LazyTableImages/Classes/IconDownloader.m -------------------------------------------------------------------------------- /LazyTableImages/Classes/ParseOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/LazyTableImages/Classes/ParseOperation.h -------------------------------------------------------------------------------- /LazyTableImages/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/LazyTableImages/Info.plist -------------------------------------------------------------------------------- /LazyTableImages/LazyTable_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/LazyTableImages/LazyTable_Prefix.pch -------------------------------------------------------------------------------- /LazyTableImages/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/LazyTableImages/ReadMe.txt -------------------------------------------------------------------------------- /LazyTableImages/en.lproj/MainWindow.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/LazyTableImages/en.lproj/MainWindow.xib -------------------------------------------------------------------------------- /LazyTableImages/images/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/LazyTableImages/images/Default.png -------------------------------------------------------------------------------- /LazyTableImages/images/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/LazyTableImages/images/Icon-Small.png -------------------------------------------------------------------------------- /LazyTableImages/images/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/LazyTableImages/images/Icon.png -------------------------------------------------------------------------------- /LazyTableImages/images/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/LazyTableImages/images/Icon@2x.png -------------------------------------------------------------------------------- /LazyTableImages/images/Placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/LazyTableImages/images/Placeholder.png -------------------------------------------------------------------------------- /LazyTableImages/images/iTunesArtwork: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/LazyTableImages/images/iTunesArtwork -------------------------------------------------------------------------------- /LazyTableImages/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/LazyTableImages/main.m -------------------------------------------------------------------------------- /LevelView/LevelView/CCAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/LevelView/LevelView/CCAppDelegate.h -------------------------------------------------------------------------------- /LevelView/LevelView/CCAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/LevelView/LevelView/CCAppDelegate.m -------------------------------------------------------------------------------- /LevelView/LevelView/CCLevelView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/LevelView/LevelView/CCLevelView.h -------------------------------------------------------------------------------- /LevelView/LevelView/CCLevelView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/LevelView/LevelView/CCLevelView.m -------------------------------------------------------------------------------- /LevelView/LevelView/CCLevelView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/LevelView/LevelView/CCLevelView.xib -------------------------------------------------------------------------------- /LevelView/LevelView/CCViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/LevelView/LevelView/CCViewController.h -------------------------------------------------------------------------------- /LevelView/LevelView/CCViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/LevelView/LevelView/CCViewController.m -------------------------------------------------------------------------------- /LevelView/LevelView/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/LevelView/LevelView/Default-568h@2x.png -------------------------------------------------------------------------------- /LevelView/LevelView/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/LevelView/LevelView/Default.png -------------------------------------------------------------------------------- /LevelView/LevelView/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/LevelView/LevelView/Default@2x.png -------------------------------------------------------------------------------- /LevelView/LevelView/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /LevelView/LevelView/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/LevelView/LevelView/main.m -------------------------------------------------------------------------------- /LevelView/LevelView/resultStar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/LevelView/LevelView/resultStar.png -------------------------------------------------------------------------------- /LevelView/LevelView/resultStarNo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/LevelView/LevelView/resultStarNo.png -------------------------------------------------------------------------------- /MBProgressHUD/.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -crlf -diff -merge 2 | -------------------------------------------------------------------------------- /MBProgressHUD/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/MBProgressHUD/.gitignore -------------------------------------------------------------------------------- /MBProgressHUD/Demo/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/MBProgressHUD/Demo/Default.png -------------------------------------------------------------------------------- /MBProgressHUD/Demo/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/MBProgressHUD/Demo/Default@2x.png -------------------------------------------------------------------------------- /MBProgressHUD/Demo/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/MBProgressHUD/Demo/Doxyfile -------------------------------------------------------------------------------- /MBProgressHUD/Demo/HudDemo_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/MBProgressHUD/Demo/HudDemo_Prefix.pch -------------------------------------------------------------------------------- /MBProgressHUD/Demo/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/MBProgressHUD/Demo/Icon.png -------------------------------------------------------------------------------- /MBProgressHUD/Demo/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/MBProgressHUD/Demo/Icon@2x.png -------------------------------------------------------------------------------- /MBProgressHUD/Demo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/MBProgressHUD/Demo/Info.plist -------------------------------------------------------------------------------- /MBProgressHUD/Demo/MainWindow.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/MBProgressHUD/Demo/MainWindow.xib -------------------------------------------------------------------------------- /MBProgressHUD/Demo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/MBProgressHUD/Demo/main.m -------------------------------------------------------------------------------- /MBProgressHUD/MBProgressHUD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/MBProgressHUD/MBProgressHUD.h -------------------------------------------------------------------------------- /MBProgressHUD/MBProgressHUD.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/MBProgressHUD/MBProgressHUD.m -------------------------------------------------------------------------------- /MBProgressHUD/README.mdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/MBProgressHUD/README.mdown -------------------------------------------------------------------------------- /MGBox2-master/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/MGBox2-master/.gitignore -------------------------------------------------------------------------------- /MGBox2-master/CHANGELOG.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/MGBox2-master/CHANGELOG.markdown -------------------------------------------------------------------------------- /MGBox2-master/Demo App/Demo App/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /MGBox2-master/Demo App/Demo App/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/MGBox2-master/Demo App/Demo App/main.m -------------------------------------------------------------------------------- /MGBox2-master/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/MGBox2-master/LICENSE -------------------------------------------------------------------------------- /MGBox2-master/MGBox/MGBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/MGBox2-master/MGBox/MGBase.h -------------------------------------------------------------------------------- /MGBox2-master/MGBox/MGBlockWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/MGBox2-master/MGBox/MGBlockWrapper.h -------------------------------------------------------------------------------- /MGBox2-master/MGBox/MGBlockWrapper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/MGBox2-master/MGBox/MGBlockWrapper.m -------------------------------------------------------------------------------- /MGBox2-master/MGBox/MGBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/MGBox2-master/MGBox/MGBox.h -------------------------------------------------------------------------------- /MGBox2-master/MGBox/MGBox.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/MGBox2-master/MGBox/MGBox.m -------------------------------------------------------------------------------- /MGBox2-master/MGBox/MGButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/MGBox2-master/MGBox/MGButton.h -------------------------------------------------------------------------------- /MGBox2-master/MGBox/MGButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/MGBox2-master/MGBox/MGButton.m -------------------------------------------------------------------------------- /MGBox2-master/MGBox/MGLayoutBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/MGBox2-master/MGBox/MGLayoutBox.h -------------------------------------------------------------------------------- /MGBox2-master/MGBox/MGLayoutManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/MGBox2-master/MGBox/MGLayoutManager.h -------------------------------------------------------------------------------- /MGBox2-master/MGBox/MGLayoutManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/MGBox2-master/MGBox/MGLayoutManager.m -------------------------------------------------------------------------------- /MGBox2-master/MGBox/MGLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/MGBox2-master/MGBox/MGLine.h -------------------------------------------------------------------------------- /MGBox2-master/MGBox/MGLine.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/MGBox2-master/MGBox/MGLine.m -------------------------------------------------------------------------------- /MGBox2-master/MGBox/MGLineStyled.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/MGBox2-master/MGBox/MGLineStyled.h -------------------------------------------------------------------------------- /MGBox2-master/MGBox/MGLineStyled.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/MGBox2-master/MGBox/MGLineStyled.m -------------------------------------------------------------------------------- /MGBox2-master/MGBox/MGMushParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/MGBox2-master/MGBox/MGMushParser.h -------------------------------------------------------------------------------- /MGBox2-master/MGBox/MGMushParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/MGBox2-master/MGBox/MGMushParser.m -------------------------------------------------------------------------------- /MGBox2-master/MGBox/MGScrollView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/MGBox2-master/MGBox/MGScrollView.h -------------------------------------------------------------------------------- /MGBox2-master/MGBox/MGScrollView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/MGBox2-master/MGBox/MGScrollView.m -------------------------------------------------------------------------------- /MGBox2-master/MGBox/MGTableBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/MGBox2-master/MGBox/MGTableBox.h -------------------------------------------------------------------------------- /MGBox2-master/MGBox/MGTableBox.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/MGBox2-master/MGBox/MGTableBox.m -------------------------------------------------------------------------------- /MGBox2-master/MGBox/MGTableBoxStyled.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/MGBox2-master/MGBox/MGTableBoxStyled.h -------------------------------------------------------------------------------- /MGBox2-master/MGBox/MGTableBoxStyled.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/MGBox2-master/MGBox/MGTableBoxStyled.m -------------------------------------------------------------------------------- /MGBox2-master/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/MGBox2-master/README.markdown -------------------------------------------------------------------------------- /MYMGBoxPractise/MGBox/MGBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/MYMGBoxPractise/MGBox/MGBase.h -------------------------------------------------------------------------------- /MYMGBoxPractise/MGBox/MGBlockWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/MYMGBoxPractise/MGBox/MGBlockWrapper.h -------------------------------------------------------------------------------- /MYMGBoxPractise/MGBox/MGBlockWrapper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/MYMGBoxPractise/MGBox/MGBlockWrapper.m -------------------------------------------------------------------------------- /MYMGBoxPractise/MGBox/MGBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/MYMGBoxPractise/MGBox/MGBox.h -------------------------------------------------------------------------------- /MYMGBoxPractise/MGBox/MGBox.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/MYMGBoxPractise/MGBox/MGBox.m -------------------------------------------------------------------------------- /MYMGBoxPractise/MGBox/MGButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/MYMGBoxPractise/MGBox/MGButton.h -------------------------------------------------------------------------------- /MYMGBoxPractise/MGBox/MGButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/MYMGBoxPractise/MGBox/MGButton.m -------------------------------------------------------------------------------- /MYMGBoxPractise/MGBox/MGLayoutBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/MYMGBoxPractise/MGBox/MGLayoutBox.h -------------------------------------------------------------------------------- /MYMGBoxPractise/MGBox/MGLayoutManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/MYMGBoxPractise/MGBox/MGLayoutManager.h -------------------------------------------------------------------------------- /MYMGBoxPractise/MGBox/MGLayoutManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/MYMGBoxPractise/MGBox/MGLayoutManager.m -------------------------------------------------------------------------------- /MYMGBoxPractise/MGBox/MGLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/MYMGBoxPractise/MGBox/MGLine.h -------------------------------------------------------------------------------- /MYMGBoxPractise/MGBox/MGLine.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/MYMGBoxPractise/MGBox/MGLine.m -------------------------------------------------------------------------------- /MYMGBoxPractise/MGBox/MGScrollView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/MYMGBoxPractise/MGBox/MGScrollView.h -------------------------------------------------------------------------------- /MYMGBoxPractise/MGBox/MGScrollView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/MYMGBoxPractise/MGBox/MGScrollView.m -------------------------------------------------------------------------------- /MYMGBoxPractise/MGBox/MGTableBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/MYMGBoxPractise/MGBox/MGTableBox.h -------------------------------------------------------------------------------- /MYMGBoxPractise/MGBox/MGTableBox.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/MYMGBoxPractise/MGBox/MGTableBox.m -------------------------------------------------------------------------------- /MYMGBoxPractise/MYMGBoxPractise/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /MYMGBoxPractise/MYMGBoxPractise/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/MYMGBoxPractise/MYMGBoxPractise/main.m -------------------------------------------------------------------------------- /MergeUIImage/A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/MergeUIImage/A.png -------------------------------------------------------------------------------- /MergeUIImage/B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/MergeUIImage/B.png -------------------------------------------------------------------------------- /MergeUIImage/C@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/MergeUIImage/C@2x.png -------------------------------------------------------------------------------- /MergeUIImage/D@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/MergeUIImage/D@2x.png -------------------------------------------------------------------------------- /MergeUIImage/MergeUIImage/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/MergeUIImage/MergeUIImage/AppDelegate.h -------------------------------------------------------------------------------- /MergeUIImage/MergeUIImage/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/MergeUIImage/MergeUIImage/AppDelegate.m -------------------------------------------------------------------------------- /MergeUIImage/MergeUIImage/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /MergeUIImage/MergeUIImage/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/MergeUIImage/MergeUIImage/main.m -------------------------------------------------------------------------------- /MoviePlayer_iPhone/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/MoviePlayer_iPhone/Icon.png -------------------------------------------------------------------------------- /MoviePlayer_iPhone/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/MoviePlayer_iPhone/Info.plist -------------------------------------------------------------------------------- /MoviePlayer_iPhone/Movie.m4v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/MoviePlayer_iPhone/Movie.m4v -------------------------------------------------------------------------------- /MoviePlayer_iPhone/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/MoviePlayer_iPhone/ReadMe.txt -------------------------------------------------------------------------------- /MoviePlayer_iPhone/local.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/MoviePlayer_iPhone/local.png -------------------------------------------------------------------------------- /MoviePlayer_iPhone/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/MoviePlayer_iPhone/main.m -------------------------------------------------------------------------------- /MoviePlayer_iPhone/preview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/MoviePlayer_iPhone/preview.jpg -------------------------------------------------------------------------------- /MoviePlayer_iPhone/streaming.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/MoviePlayer_iPhone/streaming.png -------------------------------------------------------------------------------- /MultiView/BlueView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/MultiView/BlueView.xib -------------------------------------------------------------------------------- /MultiView/Classes/BlueViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/MultiView/Classes/BlueViewController.h -------------------------------------------------------------------------------- /MultiView/Classes/BlueViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/MultiView/Classes/BlueViewController.m -------------------------------------------------------------------------------- /MultiView/MainWindow.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/MultiView/MainWindow.xib -------------------------------------------------------------------------------- /MultiView/MultiView-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/MultiView/MultiView-Info.plist -------------------------------------------------------------------------------- /MultiView/MultiView_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/MultiView/MultiView_Prefix.pch -------------------------------------------------------------------------------- /MultiView/YellowView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/MultiView/YellowView.xib -------------------------------------------------------------------------------- /MultiView/build/Debug-iphonesimulator/MultiView.app/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /MultiView/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/MultiView/main.m -------------------------------------------------------------------------------- /NavigationController/NavigationController/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Pay Calculator/Pay Calculator/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Pay Calculator/Pay Calculator/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/Pay Calculator/Pay Calculator/main.m -------------------------------------------------------------------------------- /Pickers/Classes/PickersAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/Pickers/Classes/PickersAppDelegate.h -------------------------------------------------------------------------------- /Pickers/Classes/PickersAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/Pickers/Classes/PickersAppDelegate.m -------------------------------------------------------------------------------- /Pickers/Custom Picker Images/apple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/Pickers/Custom Picker Images/apple.png -------------------------------------------------------------------------------- /Pickers/Custom Picker Images/bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/Pickers/Custom Picker Images/bar.png -------------------------------------------------------------------------------- /Pickers/Custom Picker Images/cherry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/Pickers/Custom Picker Images/cherry.png -------------------------------------------------------------------------------- /Pickers/Custom Picker Images/crown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/Pickers/Custom Picker Images/crown.png -------------------------------------------------------------------------------- /Pickers/Custom Picker Images/lemon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/Pickers/Custom Picker Images/lemon.png -------------------------------------------------------------------------------- /Pickers/Custom Picker Images/seven.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/Pickers/Custom Picker Images/seven.png -------------------------------------------------------------------------------- /Pickers/Custom Picker Sounds/crunch.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/Pickers/Custom Picker Sounds/crunch.wav -------------------------------------------------------------------------------- /Pickers/Custom Picker Sounds/win.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/Pickers/Custom Picker Sounds/win.wav -------------------------------------------------------------------------------- /Pickers/CustomPickerView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/Pickers/CustomPickerView.xib -------------------------------------------------------------------------------- /Pickers/DatePickerView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/Pickers/DatePickerView.xib -------------------------------------------------------------------------------- /Pickers/DoubleComponentPickerView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/Pickers/DoubleComponentPickerView.xib -------------------------------------------------------------------------------- /Pickers/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/Pickers/Info.plist -------------------------------------------------------------------------------- /Pickers/MainWindow.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/Pickers/MainWindow.xib -------------------------------------------------------------------------------- /Pickers/Pickers_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/Pickers/Pickers_Prefix.pch -------------------------------------------------------------------------------- /Pickers/SingleComponentPickerView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/Pickers/SingleComponentPickerView.xib -------------------------------------------------------------------------------- /Pickers/Tab Bar Icons/clockicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/Pickers/Tab Bar Icons/clockicon.png -------------------------------------------------------------------------------- /Pickers/Tab Bar Icons/dependenticon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/Pickers/Tab Bar Icons/dependenticon.png -------------------------------------------------------------------------------- /Pickers/Tab Bar Icons/doubleicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/Pickers/Tab Bar Icons/doubleicon.png -------------------------------------------------------------------------------- /Pickers/Tab Bar Icons/singleicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/Pickers/Tab Bar Icons/singleicon.png -------------------------------------------------------------------------------- /Pickers/Tab Bar Icons/toolicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/Pickers/Tab Bar Icons/toolicon.png -------------------------------------------------------------------------------- /Pickers/build/Debug-iphoneos/Pickers.app/CodeResources: -------------------------------------------------------------------------------- 1 | _CodeSignature/CodeResources -------------------------------------------------------------------------------- /Pickers/build/Debug-iphoneos/Pickers.app/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /Pickers/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/Pickers/main.m -------------------------------------------------------------------------------- /Pickers/statedictionary.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/Pickers/statedictionary.plist -------------------------------------------------------------------------------- /Pop_TableDemo/Pop_TableDemo/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Pop_TableDemo/Pop_TableDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/Pop_TableDemo/Pop_TableDemo/main.m -------------------------------------------------------------------------------- /Quartz2D/Quartz2D/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/Quartz2D/Quartz2D/AppDelegate.h -------------------------------------------------------------------------------- /Quartz2D/Quartz2D/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/Quartz2D/Quartz2D/AppDelegate.m -------------------------------------------------------------------------------- /Quartz2D/Quartz2D/Draw2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/Quartz2D/Quartz2D/Draw2D.h -------------------------------------------------------------------------------- /Quartz2D/Quartz2D/Draw2D.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/Quartz2D/Quartz2D/Draw2D.m -------------------------------------------------------------------------------- /Quartz2D/Quartz2D/Quartz2D-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/Quartz2D/Quartz2D/Quartz2D-Info.plist -------------------------------------------------------------------------------- /Quartz2D/Quartz2D/Quartz2D-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/Quartz2D/Quartz2D/Quartz2D-Prefix.pch -------------------------------------------------------------------------------- /Quartz2D/Quartz2D/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/Quartz2D/Quartz2D/ViewController.h -------------------------------------------------------------------------------- /Quartz2D/Quartz2D/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/Quartz2D/Quartz2D/ViewController.m -------------------------------------------------------------------------------- /Quartz2D/Quartz2D/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Quartz2D/Quartz2D/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/Quartz2D/Quartz2D/main.m -------------------------------------------------------------------------------- /RadioButtonWithUIKit/RadioButton/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /RadioButtonWithUIKit/RadioButton/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/RadioButtonWithUIKit/RadioButton/main.m -------------------------------------------------------------------------------- /RadioTable/RadioTable/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/RadioTable/RadioTable/AppDelegate.h -------------------------------------------------------------------------------- /RadioTable/RadioTable/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/RadioTable/RadioTable/AppDelegate.m -------------------------------------------------------------------------------- /RadioTable/RadioTable/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/RadioTable/RadioTable/ViewController.h -------------------------------------------------------------------------------- /RadioTable/RadioTable/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/RadioTable/RadioTable/ViewController.m -------------------------------------------------------------------------------- /RadioTable/RadioTable/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /RadioTable/RadioTable/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/RadioTable/RadioTable/main.m -------------------------------------------------------------------------------- /RadioTable/RadioTableController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/RadioTable/RadioTableController.h -------------------------------------------------------------------------------- /RadioTable/RadioTableController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/RadioTable/RadioTableController.m -------------------------------------------------------------------------------- /RadioTable/RadioTableController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/RadioTable/RadioTableController.xib -------------------------------------------------------------------------------- /RadioTable/RadioTable_help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/RadioTable/RadioTable_help -------------------------------------------------------------------------------- /Reachability/Airport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/Reachability/Airport.png -------------------------------------------------------------------------------- /Reachability/Classes/Reachability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/Reachability/Classes/Reachability.h -------------------------------------------------------------------------------- /Reachability/Classes/Reachability.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/Reachability/Classes/Reachability.m -------------------------------------------------------------------------------- /Reachability/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/Reachability/Default.png -------------------------------------------------------------------------------- /Reachability/Images/Icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/Reachability/Images/Icon-72.png -------------------------------------------------------------------------------- /Reachability/Images/Icon-Small-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/Reachability/Images/Icon-Small-50.png -------------------------------------------------------------------------------- /Reachability/Images/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/Reachability/Images/Icon-Small.png -------------------------------------------------------------------------------- /Reachability/Images/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/Reachability/Images/Icon-Small@2x.png -------------------------------------------------------------------------------- /Reachability/Images/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/Reachability/Images/Icon.png -------------------------------------------------------------------------------- /Reachability/Images/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/Reachability/Images/Icon@2x.png -------------------------------------------------------------------------------- /Reachability/Images/iTunesArtwork: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/Reachability/Images/iTunesArtwork -------------------------------------------------------------------------------- /Reachability/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/Reachability/Info.plist -------------------------------------------------------------------------------- /Reachability/Network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/Reachability/Network.png -------------------------------------------------------------------------------- /Reachability/Reachability_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/Reachability/Reachability_Prefix.pch -------------------------------------------------------------------------------- /Reachability/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/Reachability/ReadMe.txt -------------------------------------------------------------------------------- /Reachability/WWAN5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/Reachability/WWAN5.png -------------------------------------------------------------------------------- /Reachability/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/Reachability/icon.png -------------------------------------------------------------------------------- /Reachability/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/Reachability/main.m -------------------------------------------------------------------------------- /Reachability/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/Reachability/red.png -------------------------------------------------------------------------------- /Reachability/stop-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/Reachability/stop-32.png -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/Readme.md -------------------------------------------------------------------------------- /Retaincount/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/Retaincount/README.md -------------------------------------------------------------------------------- /Retaincount/Retaincount/RetainTracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/Retaincount/Retaincount/RetainTracker.h -------------------------------------------------------------------------------- /Retaincount/Retaincount/RetainTracker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/Retaincount/Retaincount/RetainTracker.m -------------------------------------------------------------------------------- /Retaincount/Retaincount/Retaincount.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/Retaincount/Retaincount/Retaincount.1 -------------------------------------------------------------------------------- /Retaincount/Retaincount/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/Retaincount/Retaincount/main.m -------------------------------------------------------------------------------- /SOAP/SOAP.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/SOAP/SOAP.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SOAP/SOAP/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/SOAP/SOAP/AppDelegate.h -------------------------------------------------------------------------------- /SOAP/SOAP/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/SOAP/SOAP/AppDelegate.m -------------------------------------------------------------------------------- /SOAP/SOAP/SOAP-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/SOAP/SOAP/SOAP-Info.plist -------------------------------------------------------------------------------- /SOAP/SOAP/SOAP-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/SOAP/SOAP/SOAP-Prefix.pch -------------------------------------------------------------------------------- /SOAP/SOAP/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/SOAP/SOAP/ViewController.h -------------------------------------------------------------------------------- /SOAP/SOAP/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/SOAP/SOAP/ViewController.m -------------------------------------------------------------------------------- /SOAP/SOAP/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /SOAP/SOAP/en.lproj/ViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/SOAP/SOAP/en.lproj/ViewController.xib -------------------------------------------------------------------------------- /SOAP/SOAP/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/SOAP/SOAP/main.m -------------------------------------------------------------------------------- /SQLiteSample/Classes/BaseDao.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/SQLiteSample/Classes/BaseDao.h -------------------------------------------------------------------------------- /SQLiteSample/Classes/BaseDao.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/SQLiteSample/Classes/BaseDao.m -------------------------------------------------------------------------------- /SQLiteSample/Classes/DB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/SQLiteSample/Classes/DB.h -------------------------------------------------------------------------------- /SQLiteSample/Classes/DB.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/SQLiteSample/Classes/DB.m -------------------------------------------------------------------------------- /SQLiteSample/Classes/FMDB/FMDatabase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/SQLiteSample/Classes/FMDB/FMDatabase.h -------------------------------------------------------------------------------- /SQLiteSample/Classes/FMDB/FMDatabase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/SQLiteSample/Classes/FMDB/FMDatabase.m -------------------------------------------------------------------------------- /SQLiteSample/Classes/FMDB/FMResultSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/SQLiteSample/Classes/FMDB/FMResultSet.h -------------------------------------------------------------------------------- /SQLiteSample/Classes/FMDB/FMResultSet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/SQLiteSample/Classes/FMDB/FMResultSet.m -------------------------------------------------------------------------------- /SQLiteSample/Classes/Record.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/SQLiteSample/Classes/Record.h -------------------------------------------------------------------------------- /SQLiteSample/Classes/Record.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/SQLiteSample/Classes/Record.m -------------------------------------------------------------------------------- /SQLiteSample/Classes/RecordDao.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/SQLiteSample/Classes/RecordDao.h -------------------------------------------------------------------------------- /SQLiteSample/Classes/RecordDao.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/SQLiteSample/Classes/RecordDao.m -------------------------------------------------------------------------------- /SQLiteSample/Classes/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/SQLiteSample/Classes/ViewController.h -------------------------------------------------------------------------------- /SQLiteSample/Classes/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/SQLiteSample/Classes/ViewController.m -------------------------------------------------------------------------------- /SQLiteSample/SQLiteSample-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/SQLiteSample/SQLiteSample-Info.plist -------------------------------------------------------------------------------- /SQLiteSample/SQLiteSample_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/SQLiteSample/SQLiteSample_Prefix.pch -------------------------------------------------------------------------------- /SQLiteSample/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/SQLiteSample/main.m -------------------------------------------------------------------------------- /SQLiteSample/sample.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/SQLiteSample/sample.db -------------------------------------------------------------------------------- /SQLite的基本使用/SQLiteDemo/SQLiteDemo/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /ScrollViews/ScrollViews/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/ScrollViews/ScrollViews/AppDelegate.h -------------------------------------------------------------------------------- /ScrollViews/ScrollViews/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/ScrollViews/ScrollViews/AppDelegate.m -------------------------------------------------------------------------------- /ScrollViews/ScrollViews/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /ScrollViews/ScrollViews/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/ScrollViews/ScrollViews/main.m -------------------------------------------------------------------------------- /SimpleFTPSample/Ancillary Code/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/SimpleFTPSample/Ancillary Code/main.m -------------------------------------------------------------------------------- /SimpleFTPSample/CreateDirController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/SimpleFTPSample/CreateDirController.h -------------------------------------------------------------------------------- /SimpleFTPSample/CreateDirController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/SimpleFTPSample/CreateDirController.m -------------------------------------------------------------------------------- /SimpleFTPSample/GetController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/SimpleFTPSample/GetController.h -------------------------------------------------------------------------------- /SimpleFTPSample/GetController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/SimpleFTPSample/GetController.m -------------------------------------------------------------------------------- /SimpleFTPSample/ListController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/SimpleFTPSample/ListController.h -------------------------------------------------------------------------------- /SimpleFTPSample/ListController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/SimpleFTPSample/ListController.m -------------------------------------------------------------------------------- /SimpleFTPSample/PutController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/SimpleFTPSample/PutController.h -------------------------------------------------------------------------------- /SimpleFTPSample/PutController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/SimpleFTPSample/PutController.m -------------------------------------------------------------------------------- /SimpleFTPSample/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/SimpleFTPSample/Resources/Info.plist -------------------------------------------------------------------------------- /SimpleFTPSample/Resources/NoImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/SimpleFTPSample/Resources/NoImage.png -------------------------------------------------------------------------------- /SimpleFTPSample/Resources/get.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/SimpleFTPSample/Resources/get.png -------------------------------------------------------------------------------- /SimpleFTPSample/Resources/list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/SimpleFTPSample/Resources/list.png -------------------------------------------------------------------------------- /SimpleFTPSample/Resources/mkdir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/SimpleFTPSample/Resources/mkdir.png -------------------------------------------------------------------------------- /SimpleFTPSample/Resources/put.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/SimpleFTPSample/Resources/put.png -------------------------------------------------------------------------------- /SimpleFTPSample/URLGetController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/SimpleFTPSample/URLGetController.h -------------------------------------------------------------------------------- /SimpleFTPSample/URLGetController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/SimpleFTPSample/URLGetController.m -------------------------------------------------------------------------------- /SwipeBar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/SwipeBar/README.md -------------------------------------------------------------------------------- /SwipeBar/RNSwipeBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/SwipeBar/RNSwipeBar.h -------------------------------------------------------------------------------- /SwipeBar/RNSwipeBar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/SwipeBar/RNSwipeBar.m -------------------------------------------------------------------------------- /SwipeBar/example/RNBarView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/SwipeBar/example/RNBarView.h -------------------------------------------------------------------------------- /SwipeBar/example/RNBarView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/SwipeBar/example/RNBarView.m -------------------------------------------------------------------------------- /SwipeBar/example/RNBarView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/SwipeBar/example/RNBarView.xib -------------------------------------------------------------------------------- /SwipeBar/example/RNSwipeBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/SwipeBar/example/RNSwipeBar.h -------------------------------------------------------------------------------- /SwipeBar/example/RNSwipeBar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/SwipeBar/example/RNSwipeBar.m -------------------------------------------------------------------------------- /SwipeBar/example/RNSwipeBar/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /SwipeBar/example/RNSwipeBar/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/SwipeBar/example/RNSwipeBar/main.m -------------------------------------------------------------------------------- /SwipeBar/example/activities.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/SwipeBar/example/activities.jpg -------------------------------------------------------------------------------- /SwipeBar/example/button_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/SwipeBar/example/button_bg.png -------------------------------------------------------------------------------- /SwipeBar/example/button_bg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/SwipeBar/example/button_bg@2x.png -------------------------------------------------------------------------------- /SwipeBar/images/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/SwipeBar/images/closed.png -------------------------------------------------------------------------------- /SwipeBar/images/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/SwipeBar/images/open.png -------------------------------------------------------------------------------- /SwitchControllerDemo/SwitchControllerDemo/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /TPKeyboardAvoiding/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/TPKeyboardAvoiding/README.md -------------------------------------------------------------------------------- /TPKeyboardAvoiding/TPKeyboardAvoidingSample/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /TabBar_Demo/TabBar_Demo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/TabBar_Demo/TabBar_Demo/AppDelegate.h -------------------------------------------------------------------------------- /TabBar_Demo/TabBar_Demo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/TabBar_Demo/TabBar_Demo/AppDelegate.m -------------------------------------------------------------------------------- /TabBar_Demo/TabBar_Demo/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /TabBar_Demo/TabBar_Demo/first.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/TabBar_Demo/TabBar_Demo/first.png -------------------------------------------------------------------------------- /TabBar_Demo/TabBar_Demo/first@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/TabBar_Demo/TabBar_Demo/first@2x.png -------------------------------------------------------------------------------- /TabBar_Demo/TabBar_Demo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/TabBar_Demo/TabBar_Demo/main.m -------------------------------------------------------------------------------- /TabBar_Demo/TabBar_Demo/second.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/TabBar_Demo/TabBar_Demo/second.png -------------------------------------------------------------------------------- /TabBar_Demo/TabBar_Demo/second@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/TabBar_Demo/TabBar_Demo/second@2x.png -------------------------------------------------------------------------------- /TableView/TableView/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/TableView/TableView/1.png -------------------------------------------------------------------------------- /TableView/TableView/blackArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/TableView/TableView/blackArrow.png -------------------------------------------------------------------------------- /TableView/TableView/blackArrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/TableView/TableView/blackArrow@2x.png -------------------------------------------------------------------------------- /TableView/TableView/blueArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/TableView/TableView/blueArrow.png -------------------------------------------------------------------------------- /TableView/TableView/blueArrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/TableView/TableView/blueArrow@2x.png -------------------------------------------------------------------------------- /TableView/TableView/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /TableView/TableView/grayArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/TableView/TableView/grayArrow.png -------------------------------------------------------------------------------- /TableView/TableView/grayArrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/TableView/TableView/grayArrow@2x.png -------------------------------------------------------------------------------- /TableView/TableView/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/TableView/TableView/main.m -------------------------------------------------------------------------------- /TableView/TableView/whiteArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/TableView/TableView/whiteArrow.png -------------------------------------------------------------------------------- /TableView/TableView/whiteArrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/TableView/TableView/whiteArrow@2x.png -------------------------------------------------------------------------------- /Tableview_Refresh/enormego-EGOTableViewPullRefresh-下拉刷新/README: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tableview_Refresh/简单方式-loadmore/.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -crlf -diff -merge 2 | -------------------------------------------------------------------------------- /Tableview_Refresh/简单方式-loadmore/README: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tableview_Refresh/简单方式-loadmore/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/Tableview_Refresh/简单方式-loadmore/main.m -------------------------------------------------------------------------------- /TheElements/Classes/AtomicElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/TheElements/Classes/AtomicElement.h -------------------------------------------------------------------------------- /TheElements/Classes/AtomicElement.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/TheElements/Classes/AtomicElement.m -------------------------------------------------------------------------------- /TheElements/Classes/AtomicElementView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/TheElements/Classes/AtomicElementView.h -------------------------------------------------------------------------------- /TheElements/Classes/AtomicElementView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/TheElements/Classes/AtomicElementView.m -------------------------------------------------------------------------------- /TheElements/Classes/PeriodicElements.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/TheElements/Classes/PeriodicElements.h -------------------------------------------------------------------------------- /TheElements/Classes/PeriodicElements.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/TheElements/Classes/PeriodicElements.m -------------------------------------------------------------------------------- /TheElements/Elements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/TheElements/Elements.plist -------------------------------------------------------------------------------- /TheElements/Images/ApplicationFlow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/TheElements/Images/ApplicationFlow.png -------------------------------------------------------------------------------- /TheElements/Images/Artificial_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/TheElements/Images/Artificial_24.png -------------------------------------------------------------------------------- /TheElements/Images/Artificial_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/TheElements/Images/Artificial_256.png -------------------------------------------------------------------------------- /TheElements/Images/Artificial_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/TheElements/Images/Artificial_30.png -------------------------------------------------------------------------------- /TheElements/Images/Artificial_37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/TheElements/Images/Artificial_37.png -------------------------------------------------------------------------------- /TheElements/Images/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/TheElements/Images/Default.png -------------------------------------------------------------------------------- /TheElements/Images/Gas_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/TheElements/Images/Gas_24.png -------------------------------------------------------------------------------- /TheElements/Images/Gas_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/TheElements/Images/Gas_256.png -------------------------------------------------------------------------------- /TheElements/Images/Gas_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/TheElements/Images/Gas_30.png -------------------------------------------------------------------------------- /TheElements/Images/Gas_37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/TheElements/Images/Gas_37.png -------------------------------------------------------------------------------- /TheElements/Images/Icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/TheElements/Images/Icon-72.png -------------------------------------------------------------------------------- /TheElements/Images/Icon-Small-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/TheElements/Images/Icon-Small-50.png -------------------------------------------------------------------------------- /TheElements/Images/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/TheElements/Images/Icon-Small.png -------------------------------------------------------------------------------- /TheElements/Images/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/TheElements/Images/Icon-Small@2x.png -------------------------------------------------------------------------------- /TheElements/Images/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/TheElements/Images/Icon.png -------------------------------------------------------------------------------- /TheElements/Images/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/TheElements/Images/Icon@2x.png -------------------------------------------------------------------------------- /TheElements/Images/Liquid_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/TheElements/Images/Liquid_24.png -------------------------------------------------------------------------------- /TheElements/Images/Liquid_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/TheElements/Images/Liquid_256.png -------------------------------------------------------------------------------- /TheElements/Images/Liquid_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/TheElements/Images/Liquid_30.png -------------------------------------------------------------------------------- /TheElements/Images/Liquid_37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/TheElements/Images/Liquid_37.png -------------------------------------------------------------------------------- /TheElements/Images/Solid_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/TheElements/Images/Solid_24.png -------------------------------------------------------------------------------- /TheElements/Images/Solid_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/TheElements/Images/Solid_256.png -------------------------------------------------------------------------------- /TheElements/Images/Solid_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/TheElements/Images/Solid_30.png -------------------------------------------------------------------------------- /TheElements/Images/Solid_37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/TheElements/Images/Solid_37.png -------------------------------------------------------------------------------- /TheElements/Images/iTunesArtwork: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/TheElements/Images/iTunesArtwork -------------------------------------------------------------------------------- /TheElements/Images/name_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/TheElements/Images/name_gray.png -------------------------------------------------------------------------------- /TheElements/Images/number_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/TheElements/Images/number_gray.png -------------------------------------------------------------------------------- /TheElements/Images/state_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/TheElements/Images/state_gray.png -------------------------------------------------------------------------------- /TheElements/Images/symbol_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/TheElements/Images/symbol_gray.png -------------------------------------------------------------------------------- /TheElements/Images/table_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/TheElements/Images/table_gray.png -------------------------------------------------------------------------------- /TheElements/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/TheElements/Info.plist -------------------------------------------------------------------------------- /TheElements/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/TheElements/Readme.md -------------------------------------------------------------------------------- /TheElements/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/TheElements/Readme.txt -------------------------------------------------------------------------------- /TheElements/TheElements_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/TheElements/TheElements_Prefix.pch -------------------------------------------------------------------------------- /TheElements/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/TheElements/main.m -------------------------------------------------------------------------------- /UICatalog/AlertsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UICatalog/AlertsViewController.h -------------------------------------------------------------------------------- /UICatalog/AlertsViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UICatalog/AlertsViewController.m -------------------------------------------------------------------------------- /UICatalog/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UICatalog/AppDelegate.h -------------------------------------------------------------------------------- /UICatalog/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UICatalog/AppDelegate.m -------------------------------------------------------------------------------- /UICatalog/ButtonsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UICatalog/ButtonsViewController.h -------------------------------------------------------------------------------- /UICatalog/ButtonsViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UICatalog/ButtonsViewController.m -------------------------------------------------------------------------------- /UICatalog/Constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UICatalog/Constants.h -------------------------------------------------------------------------------- /UICatalog/ControlsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UICatalog/ControlsViewController.h -------------------------------------------------------------------------------- /UICatalog/ControlsViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UICatalog/ControlsViewController.m -------------------------------------------------------------------------------- /UICatalog/ImagesViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UICatalog/ImagesViewController.h -------------------------------------------------------------------------------- /UICatalog/ImagesViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UICatalog/ImagesViewController.m -------------------------------------------------------------------------------- /UICatalog/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UICatalog/Info.plist -------------------------------------------------------------------------------- /UICatalog/MainViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UICatalog/MainViewController.h -------------------------------------------------------------------------------- /UICatalog/MainViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UICatalog/MainViewController.m -------------------------------------------------------------------------------- /UICatalog/Picker/CustomView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UICatalog/Picker/CustomView.h -------------------------------------------------------------------------------- /UICatalog/Picker/CustomView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UICatalog/Picker/CustomView.m -------------------------------------------------------------------------------- /UICatalog/PickerViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UICatalog/PickerViewController.h -------------------------------------------------------------------------------- /UICatalog/PickerViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UICatalog/PickerViewController.m -------------------------------------------------------------------------------- /UICatalog/Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UICatalog/Prefix.pch -------------------------------------------------------------------------------- /UICatalog/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UICatalog/ReadMe.txt -------------------------------------------------------------------------------- /UICatalog/SearchBarController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UICatalog/SearchBarController.h -------------------------------------------------------------------------------- /UICatalog/SearchBarController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UICatalog/SearchBarController.m -------------------------------------------------------------------------------- /UICatalog/SegmentViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UICatalog/SegmentViewController.h -------------------------------------------------------------------------------- /UICatalog/SegmentViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UICatalog/SegmentViewController.m -------------------------------------------------------------------------------- /UICatalog/TextFieldController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UICatalog/TextFieldController.h -------------------------------------------------------------------------------- /UICatalog/TextFieldController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UICatalog/TextFieldController.m -------------------------------------------------------------------------------- /UICatalog/TextViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UICatalog/TextViewController.h -------------------------------------------------------------------------------- /UICatalog/TextViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UICatalog/TextViewController.m -------------------------------------------------------------------------------- /UICatalog/ToolbarViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UICatalog/ToolbarViewController.h -------------------------------------------------------------------------------- /UICatalog/ToolbarViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UICatalog/ToolbarViewController.m -------------------------------------------------------------------------------- /UICatalog/TransitionViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UICatalog/TransitionViewController.h -------------------------------------------------------------------------------- /UICatalog/TransitionViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UICatalog/TransitionViewController.m -------------------------------------------------------------------------------- /UICatalog/WebViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UICatalog/WebViewController.h -------------------------------------------------------------------------------- /UICatalog/WebViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UICatalog/WebViewController.m -------------------------------------------------------------------------------- /UICatalog/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UICatalog/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /UICatalog/en.lproj/MainWindow.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UICatalog/en.lproj/MainWindow.xib -------------------------------------------------------------------------------- /UICatalog/images/12-6AM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UICatalog/images/12-6AM.png -------------------------------------------------------------------------------- /UICatalog/images/12-6PM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UICatalog/images/12-6PM.png -------------------------------------------------------------------------------- /UICatalog/images/6-12AM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UICatalog/images/6-12AM.png -------------------------------------------------------------------------------- /UICatalog/images/6-12PM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UICatalog/images/6-12PM.png -------------------------------------------------------------------------------- /UICatalog/images/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UICatalog/images/Default-568h@2x.png -------------------------------------------------------------------------------- /UICatalog/images/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UICatalog/images/Default.png -------------------------------------------------------------------------------- /UICatalog/images/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UICatalog/images/Default@2x.png -------------------------------------------------------------------------------- /UICatalog/images/Icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UICatalog/images/Icon-72.png -------------------------------------------------------------------------------- /UICatalog/images/Icon-Small-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UICatalog/images/Icon-Small-50.png -------------------------------------------------------------------------------- /UICatalog/images/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UICatalog/images/Icon-Small.png -------------------------------------------------------------------------------- /UICatalog/images/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UICatalog/images/Icon-Small@2x.png -------------------------------------------------------------------------------- /UICatalog/images/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UICatalog/images/Icon.png -------------------------------------------------------------------------------- /UICatalog/images/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UICatalog/images/Icon@2x.png -------------------------------------------------------------------------------- /UICatalog/images/UIButton_custom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UICatalog/images/UIButton_custom.png -------------------------------------------------------------------------------- /UICatalog/images/blueButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UICatalog/images/blueButton.png -------------------------------------------------------------------------------- /UICatalog/images/bookmarkImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UICatalog/images/bookmarkImage.png -------------------------------------------------------------------------------- /UICatalog/images/divider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UICatalog/images/divider.png -------------------------------------------------------------------------------- /UICatalog/images/iTunesArtwork: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UICatalog/images/iTunesArtwork -------------------------------------------------------------------------------- /UICatalog/images/orangeslide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UICatalog/images/orangeslide.png -------------------------------------------------------------------------------- /UICatalog/images/scene1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UICatalog/images/scene1.jpg -------------------------------------------------------------------------------- /UICatalog/images/scene2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UICatalog/images/scene2.jpg -------------------------------------------------------------------------------- /UICatalog/images/scene3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UICatalog/images/scene3.jpg -------------------------------------------------------------------------------- /UICatalog/images/scene4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UICatalog/images/scene4.jpg -------------------------------------------------------------------------------- /UICatalog/images/scene5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UICatalog/images/scene5.jpg -------------------------------------------------------------------------------- /UICatalog/images/segment_check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UICatalog/images/segment_check.png -------------------------------------------------------------------------------- /UICatalog/images/segment_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UICatalog/images/segment_search.png -------------------------------------------------------------------------------- /UICatalog/images/segment_tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UICatalog/images/segment_tools.png -------------------------------------------------------------------------------- /UICatalog/images/slider_ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UICatalog/images/slider_ball.png -------------------------------------------------------------------------------- /UICatalog/images/toolbarBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UICatalog/images/toolbarBackground.png -------------------------------------------------------------------------------- /UICatalog/images/whiteButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UICatalog/images/whiteButton.png -------------------------------------------------------------------------------- /UICatalog/images/yellowslide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UICatalog/images/yellowslide.png -------------------------------------------------------------------------------- /UICatalog/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UICatalog/main.m -------------------------------------------------------------------------------- /UIView_Animation/PicnicFiles/bug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UIView_Animation/PicnicFiles/bug.png -------------------------------------------------------------------------------- /UIView_Animation/PicnicFiles/squish.caf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UIView_Animation/PicnicFiles/squish.caf -------------------------------------------------------------------------------- /UIView_Animation/UIView_Animation/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /UIView_Animation2/FakeHUD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UIView_Animation2/FakeHUD.png -------------------------------------------------------------------------------- /UIView_Animation2/UIView_Animation2/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /UIView_Animation2/arrow1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UIView_Animation2/arrow1.png -------------------------------------------------------------------------------- /UI_DEMOS/TableContent.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UI_DEMOS/TableContent.plist -------------------------------------------------------------------------------- /UI_DEMOS/UI_DEMOS/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UI_DEMOS/UI_DEMOS/Default-568h@2x.png -------------------------------------------------------------------------------- /UI_DEMOS/UI_DEMOS/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UI_DEMOS/UI_DEMOS/Default.png -------------------------------------------------------------------------------- /UI_DEMOS/UI_DEMOS/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UI_DEMOS/UI_DEMOS/Default@2x.png -------------------------------------------------------------------------------- /UI_DEMOS/UI_DEMOS/ReadMe: -------------------------------------------------------------------------------- 1 | 2 | 1.ModalView的例子:包括呈现动画,和呈现效果两种选择。 -------------------------------------------------------------------------------- /UI_DEMOS/UI_DEMOS/UI_DEMOS-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UI_DEMOS/UI_DEMOS/UI_DEMOS-Info.plist -------------------------------------------------------------------------------- /UI_DEMOS/UI_DEMOS/UI_DEMOS-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UI_DEMOS/UI_DEMOS/UI_DEMOS-Prefix.pch -------------------------------------------------------------------------------- /UI_DEMOS/UI_DEMOS/WKKAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UI_DEMOS/UI_DEMOS/WKKAppDelegate.h -------------------------------------------------------------------------------- /UI_DEMOS/UI_DEMOS/WKKAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UI_DEMOS/UI_DEMOS/WKKAppDelegate.m -------------------------------------------------------------------------------- /UI_DEMOS/UI_DEMOS/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /UI_DEMOS/UI_DEMOS/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UI_DEMOS/UI_DEMOS/main.m -------------------------------------------------------------------------------- /Unix_program/MultiThread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/Unix_program/MultiThread.c -------------------------------------------------------------------------------- /UseNetWork/Classes/Authentication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UseNetWork/Classes/Authentication.h -------------------------------------------------------------------------------- /UseNetWork/Classes/Authentication.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UseNetWork/Classes/Authentication.m -------------------------------------------------------------------------------- /UseNetWork/Classes/Authentication.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UseNetWork/Classes/Authentication.xib -------------------------------------------------------------------------------- /UseNetWork/Classes/DownLoad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UseNetWork/Classes/DownLoad.h -------------------------------------------------------------------------------- /UseNetWork/Classes/DownLoad.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UseNetWork/Classes/DownLoad.m -------------------------------------------------------------------------------- /UseNetWork/Classes/DownLoad.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UseNetWork/Classes/DownLoad.xib -------------------------------------------------------------------------------- /UseNetWork/Classes/DownLoadHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UseNetWork/Classes/DownLoadHelper.h -------------------------------------------------------------------------------- /UseNetWork/Classes/DownLoadHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UseNetWork/Classes/DownLoadHelper.m -------------------------------------------------------------------------------- /UseNetWork/Classes/DownLoadHelper.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UseNetWork/Classes/DownLoadHelper.xib -------------------------------------------------------------------------------- /UseNetWork/Classes/ParserJSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UseNetWork/Classes/ParserJSON.h -------------------------------------------------------------------------------- /UseNetWork/Classes/ParserJSON.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UseNetWork/Classes/ParserJSON.m -------------------------------------------------------------------------------- /UseNetWork/Classes/ParserJSON.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UseNetWork/Classes/ParserJSON.xib -------------------------------------------------------------------------------- /UseNetWork/Classes/Reachability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UseNetWork/Classes/Reachability.h -------------------------------------------------------------------------------- /UseNetWork/Classes/Reachability.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UseNetWork/Classes/Reachability.m -------------------------------------------------------------------------------- /UseNetWork/Classes/Setting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UseNetWork/Classes/Setting.h -------------------------------------------------------------------------------- /UseNetWork/Classes/Setting.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UseNetWork/Classes/Setting.m -------------------------------------------------------------------------------- /UseNetWork/Classes/Setting.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UseNetWork/Classes/Setting.xib -------------------------------------------------------------------------------- /UseNetWork/Classes/TestBed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UseNetWork/Classes/TestBed.h -------------------------------------------------------------------------------- /UseNetWork/Classes/TestBed.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UseNetWork/Classes/TestBed.m -------------------------------------------------------------------------------- /UseNetWork/Classes/TestBed.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UseNetWork/Classes/TestBed.xib -------------------------------------------------------------------------------- /UseNetWork/Classes/UIDevice-IP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UseNetWork/Classes/UIDevice-IP.h -------------------------------------------------------------------------------- /UseNetWork/Classes/UIDevice-IP.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UseNetWork/Classes/UIDevice-IP.m -------------------------------------------------------------------------------- /UseNetWork/Classes/UseXMLParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UseNetWork/Classes/UseXMLParser.h -------------------------------------------------------------------------------- /UseNetWork/Classes/UseXMLParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UseNetWork/Classes/UseXMLParser.m -------------------------------------------------------------------------------- /UseNetWork/Classes/UseXMLParser.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UseNetWork/Classes/UseXMLParser.xib -------------------------------------------------------------------------------- /UseNetWork/Classes/UserNSXMLParser.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UseNetWork/Classes/UserNSXMLParser.xib -------------------------------------------------------------------------------- /UseNetWork/Classes/untitled.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UseNetWork/Classes/untitled.h -------------------------------------------------------------------------------- /UseNetWork/Classes/untitled.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UseNetWork/Classes/untitled.m -------------------------------------------------------------------------------- /UseNetWork/JSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UseNetWork/JSON.h -------------------------------------------------------------------------------- /UseNetWork/MainWindow.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UseNetWork/MainWindow.xib -------------------------------------------------------------------------------- /UseNetWork/NSObject+SBJSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UseNetWork/NSObject+SBJSON.h -------------------------------------------------------------------------------- /UseNetWork/NSObject+SBJSON.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UseNetWork/NSObject+SBJSON.m -------------------------------------------------------------------------------- /UseNetWork/NSString+SBJSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UseNetWork/NSString+SBJSON.h -------------------------------------------------------------------------------- /UseNetWork/NSString+SBJSON.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UseNetWork/NSString+SBJSON.m -------------------------------------------------------------------------------- /UseNetWork/SBJsonBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UseNetWork/SBJsonBase.h -------------------------------------------------------------------------------- /UseNetWork/SBJsonBase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UseNetWork/SBJsonBase.m -------------------------------------------------------------------------------- /UseNetWork/SBJsonParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UseNetWork/SBJsonParser.h -------------------------------------------------------------------------------- /UseNetWork/SBJsonParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UseNetWork/SBJsonParser.m -------------------------------------------------------------------------------- /UseNetWork/SBJsonStreamWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UseNetWork/SBJsonStreamWriter.h -------------------------------------------------------------------------------- /UseNetWork/SBJsonStreamWriter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UseNetWork/SBJsonStreamWriter.m -------------------------------------------------------------------------------- /UseNetWork/SBJsonWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UseNetWork/SBJsonWriter.h -------------------------------------------------------------------------------- /UseNetWork/SBJsonWriter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UseNetWork/SBJsonWriter.m -------------------------------------------------------------------------------- /UseNetWork/SBProxyForJson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UseNetWork/SBProxyForJson.h -------------------------------------------------------------------------------- /UseNetWork/UseNetWork-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UseNetWork/UseNetWork-Info.plist -------------------------------------------------------------------------------- /UseNetWork/UseNetWorkViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UseNetWork/UseNetWorkViewController.xib -------------------------------------------------------------------------------- /UseNetWork/UseNetWork_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UseNetWork/UseNetWork_Prefix.pch -------------------------------------------------------------------------------- /UseNetWork/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UseNetWork/main.m -------------------------------------------------------------------------------- /UseNetWork/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/UseNetWork/test.json -------------------------------------------------------------------------------- /WSDL2ObjC_example/WSDL2ObjC/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/WSDL2ObjC_example/WSDL2ObjC/Default.png -------------------------------------------------------------------------------- /WSDL2ObjC_example/WSDL2ObjC/WSDL/xsd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/WSDL2ObjC_example/WSDL2ObjC/WSDL/xsd.h -------------------------------------------------------------------------------- /WSDL2ObjC_example/WSDL2ObjC/WSDL/xsd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/WSDL2ObjC_example/WSDL2ObjC/WSDL/xsd.m -------------------------------------------------------------------------------- /WSDL2ObjC_example/WSDL2ObjC/en.lproj/.svn/text-base/InfoPlist.strings.svn-base: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /WSDL2ObjC_example/WSDL2ObjC/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /WSDL2ObjC_example/WSDL2ObjC/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/WSDL2ObjC_example/WSDL2ObjC/main.m -------------------------------------------------------------------------------- /WSDL2ObjC_example/wsdl_help.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/WSDL2ObjC_example/wsdl_help.rtf -------------------------------------------------------------------------------- /WebServiceDemo/Required_Libs/HTTPRequest/.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -crlf -diff -merge 2 | -------------------------------------------------------------------------------- /WebServiceDemo/Required_Libs/MBPProgressHUD/.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -crlf -diff -merge 2 | -------------------------------------------------------------------------------- /WebServiceDemo/Required_Libs/SBJson_3.1/SBJson/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /WebServiceDemo/Required_Libs/SBJson_3.1/SBJsonTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /WebServiceDemo/Required_Libs/SBJson_3.1/Tests/Data/format/basic/input: -------------------------------------------------------------------------------- 1 | ["one",2,{"foo":null,"quux":true,"bar":[1, 2, []]},{}] 2 | -------------------------------------------------------------------------------- /WebServiceDemo/Required_Libs/SBJson_3.1/Tests/Data/format/json.org/README: -------------------------------------------------------------------------------- 1 | Source: http://json.org/example.html -------------------------------------------------------------------------------- /WebServiceDemo/Required_Libs/SBJson_3.1/Tests/Data/invalid/array/eof-1/error: -------------------------------------------------------------------------------- 1 | Unexpected end of input 2 | -------------------------------------------------------------------------------- /WebServiceDemo/Required_Libs/SBJson_3.1/Tests/Data/invalid/array/eof-1/input: -------------------------------------------------------------------------------- 1 | [ 2 | -------------------------------------------------------------------------------- /WebServiceDemo/Required_Libs/SBJson_3.1/Tests/Data/invalid/array/eof-2/error: -------------------------------------------------------------------------------- 1 | Unexpected end of input 2 | -------------------------------------------------------------------------------- /WebServiceDemo/Required_Libs/SBJson_3.1/Tests/Data/invalid/array/eof-2/input: -------------------------------------------------------------------------------- 1 | [1 2 | -------------------------------------------------------------------------------- /WebServiceDemo/Required_Libs/SBJson_3.1/Tests/Data/invalid/array/eof-3/error: -------------------------------------------------------------------------------- 1 | Unexpected end of input 2 | -------------------------------------------------------------------------------- /WebServiceDemo/Required_Libs/SBJson_3.1/Tests/Data/invalid/array/eof-3/input: -------------------------------------------------------------------------------- 1 | [[] 2 | -------------------------------------------------------------------------------- /WebServiceDemo/Required_Libs/SBJson_3.1/Tests/Data/invalid/array/eof-4/error: -------------------------------------------------------------------------------- 1 | Unexpected end of input 2 | -------------------------------------------------------------------------------- /WebServiceDemo/Required_Libs/SBJson_3.1/Tests/Data/invalid/array/eof-4/input: -------------------------------------------------------------------------------- 1 | ["a] -------------------------------------------------------------------------------- /WebServiceDemo/Required_Libs/SBJson_3.1/Tests/Data/invalid/boolean/false/error: -------------------------------------------------------------------------------- 1 | Expected 'false' after initial 'f' 2 | -------------------------------------------------------------------------------- /WebServiceDemo/Required_Libs/SBJson_3.1/Tests/Data/invalid/boolean/false/input: -------------------------------------------------------------------------------- 1 | [failing 2 | -------------------------------------------------------------------------------- /WebServiceDemo/Required_Libs/SBJson_3.1/Tests/Data/invalid/boolean/true/error: -------------------------------------------------------------------------------- 1 | Expected 'true' after initial 't' 2 | -------------------------------------------------------------------------------- /WebServiceDemo/Required_Libs/SBJson_3.1/Tests/Data/invalid/boolean/true/input: -------------------------------------------------------------------------------- 1 | [truth 2 | -------------------------------------------------------------------------------- /WebServiceDemo/Required_Libs/SBJson_3.1/Tests/Data/invalid/depth/input: -------------------------------------------------------------------------------- 1 | [{"foo":[{"bar":[ 2 | -------------------------------------------------------------------------------- /WebServiceDemo/Required_Libs/SBJson_3.1/Tests/Data/invalid/encoding/utf8/error: -------------------------------------------------------------------------------- 1 | Broken Unicode encoding 2 | -------------------------------------------------------------------------------- /WebServiceDemo/Required_Libs/SBJson_3.1/Tests/Data/invalid/eof/error: -------------------------------------------------------------------------------- 1 | Unexpected end of input 2 | -------------------------------------------------------------------------------- /WebServiceDemo/Required_Libs/SBJson_3.1/Tests/Data/invalid/garbage/asterisk/error: -------------------------------------------------------------------------------- 1 | Illegal start of token [*] 2 | -------------------------------------------------------------------------------- /WebServiceDemo/Required_Libs/SBJson_3.1/Tests/Data/invalid/garbage/asterisk/input: -------------------------------------------------------------------------------- 1 | [* 2 | -------------------------------------------------------------------------------- /WebServiceDemo/Required_Libs/SBJson_3.1/Tests/Data/invalid/garbage/single-quote/error: -------------------------------------------------------------------------------- 1 | Illegal start of token ['] 2 | -------------------------------------------------------------------------------- /WebServiceDemo/Required_Libs/SBJson_3.1/Tests/Data/invalid/garbage/single-quote/input: -------------------------------------------------------------------------------- 1 | [' 2 | -------------------------------------------------------------------------------- /WebServiceDemo/Required_Libs/SBJson_3.1/Tests/Data/invalid/null/error: -------------------------------------------------------------------------------- 1 | Expected 'null' after initial 'n' 2 | -------------------------------------------------------------------------------- /WebServiceDemo/Required_Libs/SBJson_3.1/Tests/Data/invalid/null/input: -------------------------------------------------------------------------------- 1 | [nill 2 | -------------------------------------------------------------------------------- /WebServiceDemo/Required_Libs/SBJson_3.1/Tests/Data/invalid/number/leading-plus/error: -------------------------------------------------------------------------------- 1 | Leading + is illegal in number 2 | -------------------------------------------------------------------------------- /WebServiceDemo/Required_Libs/SBJson_3.1/Tests/Data/invalid/number/leading-plus/input: -------------------------------------------------------------------------------- 1 | [+1 2 | -------------------------------------------------------------------------------- /WebServiceDemo/Required_Libs/SBJson_3.1/Tests/Data/invalid/number/leading-zero/error: -------------------------------------------------------------------------------- 1 | Leading zero is illegal in number 2 | -------------------------------------------------------------------------------- /WebServiceDemo/Required_Libs/SBJson_3.1/Tests/Data/invalid/number/leading-zero/input: -------------------------------------------------------------------------------- 1 | [01 2 | -------------------------------------------------------------------------------- /WebServiceDemo/Required_Libs/SBJson_3.1/Tests/Data/invalid/number/no-digits-after-decimal/error: -------------------------------------------------------------------------------- 1 | No digits after decimal point 2 | -------------------------------------------------------------------------------- /WebServiceDemo/Required_Libs/SBJson_3.1/Tests/Data/invalid/number/no-digits-after-decimal/input: -------------------------------------------------------------------------------- 1 | [0. 2 | -------------------------------------------------------------------------------- /WebServiceDemo/Required_Libs/SBJson_3.1/Tests/Data/invalid/number/no-digits-after-exponent-1/error: -------------------------------------------------------------------------------- 1 | No digits in exponent 2 | -------------------------------------------------------------------------------- /WebServiceDemo/Required_Libs/SBJson_3.1/Tests/Data/invalid/number/no-digits-after-exponent-1/input: -------------------------------------------------------------------------------- 1 | [1e- 2 | -------------------------------------------------------------------------------- /WebServiceDemo/Required_Libs/SBJson_3.1/Tests/Data/invalid/number/no-digits-after-exponent-2/error: -------------------------------------------------------------------------------- 1 | No digits in exponent 2 | -------------------------------------------------------------------------------- /WebServiceDemo/Required_Libs/SBJson_3.1/Tests/Data/invalid/number/no-digits-after-exponent-2/input: -------------------------------------------------------------------------------- 1 | [1e 2 | -------------------------------------------------------------------------------- /WebServiceDemo/Required_Libs/SBJson_3.1/Tests/Data/invalid/number/no-digits-after-exponent-3/error: -------------------------------------------------------------------------------- 1 | No digits in exponent 2 | -------------------------------------------------------------------------------- /WebServiceDemo/Required_Libs/SBJson_3.1/Tests/Data/invalid/number/no-digits-after-exponent-3/input: -------------------------------------------------------------------------------- 1 | [1e+ 2 | -------------------------------------------------------------------------------- /WebServiceDemo/Required_Libs/SBJson_3.1/Tests/Data/invalid/number/no-digits-after-minus/error: -------------------------------------------------------------------------------- 1 | No digits after initial minus 2 | -------------------------------------------------------------------------------- /WebServiceDemo/Required_Libs/SBJson_3.1/Tests/Data/invalid/number/no-digits-after-minus/input: -------------------------------------------------------------------------------- 1 | [- 2 | -------------------------------------------------------------------------------- /WebServiceDemo/Required_Libs/SBJson_3.1/Tests/Data/invalid/number/overflow-exponent-1/error: -------------------------------------------------------------------------------- 1 | Exponent out of range 2 | -------------------------------------------------------------------------------- /WebServiceDemo/Required_Libs/SBJson_3.1/Tests/Data/invalid/number/overflow-exponent-1/input: -------------------------------------------------------------------------------- 1 | [1e128] 2 | -------------------------------------------------------------------------------- /WebServiceDemo/Required_Libs/SBJson_3.1/Tests/Data/invalid/number/overflow-exponent-2/error: -------------------------------------------------------------------------------- 1 | Exponent out of range 2 | -------------------------------------------------------------------------------- /WebServiceDemo/Required_Libs/SBJson_3.1/Tests/Data/invalid/number/overflow-exponent-2/input: -------------------------------------------------------------------------------- 1 | [1e-129] 2 | -------------------------------------------------------------------------------- /WebServiceDemo/Required_Libs/SBJson_3.1/Tests/Data/invalid/number/overflow-mantissa/error: -------------------------------------------------------------------------------- 1 | Precision is too high 2 | -------------------------------------------------------------------------------- /WebServiceDemo/Required_Libs/SBJson_3.1/Tests/Data/invalid/object/eof-1/error: -------------------------------------------------------------------------------- 1 | Unexpected end of input 2 | -------------------------------------------------------------------------------- /WebServiceDemo/Required_Libs/SBJson_3.1/Tests/Data/invalid/object/eof-1/input: -------------------------------------------------------------------------------- 1 | { 2 | -------------------------------------------------------------------------------- /WebServiceDemo/Required_Libs/SBJson_3.1/Tests/Data/invalid/object/eof-2/error: -------------------------------------------------------------------------------- 1 | Unexpected end of input 2 | -------------------------------------------------------------------------------- /WebServiceDemo/Required_Libs/SBJson_3.1/Tests/Data/invalid/object/eof-2/input: -------------------------------------------------------------------------------- 1 | {"a" 2 | -------------------------------------------------------------------------------- /WebServiceDemo/Required_Libs/SBJson_3.1/Tests/Data/invalid/object/eof-3/error: -------------------------------------------------------------------------------- 1 | Unexpected end of input 2 | -------------------------------------------------------------------------------- /WebServiceDemo/Required_Libs/SBJson_3.1/Tests/Data/invalid/object/eof-3/input: -------------------------------------------------------------------------------- 1 | {"a": 2 | -------------------------------------------------------------------------------- /WebServiceDemo/Required_Libs/SBJson_3.1/Tests/Data/invalid/object/eof-4/error: -------------------------------------------------------------------------------- 1 | Unexpected end of input 2 | -------------------------------------------------------------------------------- /WebServiceDemo/Required_Libs/SBJson_3.1/Tests/Data/invalid/object/eof-4/input: -------------------------------------------------------------------------------- 1 | {"a":{} 2 | -------------------------------------------------------------------------------- /WebServiceDemo/Required_Libs/SBJson_3.1/Tests/Data/invalid/string/ctrl-chars/newline/error: -------------------------------------------------------------------------------- 1 | Unescaped control character [0x0A] 2 | -------------------------------------------------------------------------------- /WebServiceDemo/Required_Libs/SBJson_3.1/Tests/Data/invalid/string/ctrl-chars/newline/input: -------------------------------------------------------------------------------- 1 | [" 2 | 3 | -------------------------------------------------------------------------------- /WebServiceDemo/Required_Libs/SBJson_3.1/Tests/Data/invalid/string/ctrl-chars/tab/error: -------------------------------------------------------------------------------- 1 | Unescaped control character [0x09] 2 | -------------------------------------------------------------------------------- /WebServiceDemo/Required_Libs/SBJson_3.1/Tests/Data/invalid/string/ctrl-chars/tab/input: -------------------------------------------------------------------------------- 1 | [" " 2 | -------------------------------------------------------------------------------- /WebServiceDemo/Required_Libs/SBJson_3.1/Tests/Data/invalid/string/invalid-hex-quad/error: -------------------------------------------------------------------------------- 1 | Invalid hex quad 2 | -------------------------------------------------------------------------------- /WebServiceDemo/Required_Libs/SBJson_3.1/Tests/Data/invalid/string/invalid-hex-quad/input: -------------------------------------------------------------------------------- 1 | ["\udefg 2 | -------------------------------------------------------------------------------- /WebServiceDemo/Required_Libs/SBJson_3.1/Tests/Data/invalid/string/unicode-invalid-high-surrogate/input: -------------------------------------------------------------------------------- 1 | ["\udd1ef 2 | -------------------------------------------------------------------------------- /WebServiceDemo/Required_Libs/SBJson_3.1/Tests/Data/invalid/string/unicode-invalid-low-surrogate/input: -------------------------------------------------------------------------------- 1 | ["\ud834\u001e 2 | -------------------------------------------------------------------------------- /WebServiceDemo/Required_Libs/SBJson_3.1/Tests/Data/invalid/string/unicode-missing-low-surrogate/input: -------------------------------------------------------------------------------- 1 | ["\ud834foobar 2 | -------------------------------------------------------------------------------- /WebServiceDemo/Required_Libs/SBJson_3.1/Tests/Data/jsonchecker/README: -------------------------------------------------------------------------------- 1 | Source: http://json.org/JSON_checker/ -------------------------------------------------------------------------------- /WebServiceDemo/Required_Libs/SBJson_3.1/Tests/Data/jsonchecker/fail1.json: -------------------------------------------------------------------------------- 1 | "A JSON payload should be an object or array, not a string." -------------------------------------------------------------------------------- /WebServiceDemo/Required_Libs/SBJson_3.1/Tests/Data/jsonchecker/fail11.json: -------------------------------------------------------------------------------- 1 | {"Illegal expression": 1 + 2} -------------------------------------------------------------------------------- /WebServiceDemo/Required_Libs/SBJson_3.1/Tests/Data/jsonchecker/fail12.json: -------------------------------------------------------------------------------- 1 | {"Illegal invocation": alert()} -------------------------------------------------------------------------------- /WebServiceDemo/Required_Libs/SBJson_3.1/Tests/Data/jsonchecker/fail13.json: -------------------------------------------------------------------------------- 1 | {"Numbers cannot have leading zeroes": 013} -------------------------------------------------------------------------------- /WebServiceDemo/Required_Libs/SBJson_3.1/Tests/Data/jsonchecker/fail14.json: -------------------------------------------------------------------------------- 1 | {"Numbers cannot be hex": 0x14} -------------------------------------------------------------------------------- /WebServiceDemo/Required_Libs/SBJson_3.1/Tests/Data/jsonchecker/fail15.json: -------------------------------------------------------------------------------- 1 | ["Illegal backslash escape: \x15"] -------------------------------------------------------------------------------- /WebServiceDemo/Required_Libs/SBJson_3.1/Tests/Data/jsonchecker/fail16.json: -------------------------------------------------------------------------------- 1 | [\naked] -------------------------------------------------------------------------------- /WebServiceDemo/Required_Libs/SBJson_3.1/Tests/Data/jsonchecker/fail17.json: -------------------------------------------------------------------------------- 1 | ["Illegal backslash escape: \017"] -------------------------------------------------------------------------------- /WebServiceDemo/Required_Libs/SBJson_3.1/Tests/Data/jsonchecker/fail19.json: -------------------------------------------------------------------------------- 1 | {"Missing colon" null} -------------------------------------------------------------------------------- /WebServiceDemo/Required_Libs/SBJson_3.1/Tests/Data/jsonchecker/fail2.json: -------------------------------------------------------------------------------- 1 | ["Unclosed array" -------------------------------------------------------------------------------- /WebServiceDemo/Required_Libs/SBJson_3.1/Tests/Data/jsonchecker/fail20.json: -------------------------------------------------------------------------------- 1 | {"Double colon":: null} -------------------------------------------------------------------------------- /WebServiceDemo/Required_Libs/SBJson_3.1/Tests/Data/jsonchecker/fail21.json: -------------------------------------------------------------------------------- 1 | {"Comma instead of colon", null} -------------------------------------------------------------------------------- /WebServiceDemo/Required_Libs/SBJson_3.1/Tests/Data/jsonchecker/fail22.json: -------------------------------------------------------------------------------- 1 | ["Colon instead of comma": false] -------------------------------------------------------------------------------- /WebServiceDemo/Required_Libs/SBJson_3.1/Tests/Data/jsonchecker/fail23.json: -------------------------------------------------------------------------------- 1 | ["Bad value", truth] -------------------------------------------------------------------------------- /WebServiceDemo/Required_Libs/SBJson_3.1/Tests/Data/jsonchecker/fail24.json: -------------------------------------------------------------------------------- 1 | ['single quote'] -------------------------------------------------------------------------------- /WebServiceDemo/Required_Libs/SBJson_3.1/Tests/Data/jsonchecker/fail25.json: -------------------------------------------------------------------------------- 1 | [" tab character in string "] -------------------------------------------------------------------------------- /WebServiceDemo/Required_Libs/SBJson_3.1/Tests/Data/jsonchecker/fail27.json: -------------------------------------------------------------------------------- 1 | ["line 2 | break"] -------------------------------------------------------------------------------- /WebServiceDemo/Required_Libs/SBJson_3.1/Tests/Data/jsonchecker/fail28.json: -------------------------------------------------------------------------------- 1 | ["line\ 2 | break"] -------------------------------------------------------------------------------- /WebServiceDemo/Required_Libs/SBJson_3.1/Tests/Data/jsonchecker/fail29.json: -------------------------------------------------------------------------------- 1 | [0e] -------------------------------------------------------------------------------- /WebServiceDemo/Required_Libs/SBJson_3.1/Tests/Data/jsonchecker/fail30.json: -------------------------------------------------------------------------------- 1 | [0e+] -------------------------------------------------------------------------------- /WebServiceDemo/Required_Libs/SBJson_3.1/Tests/Data/jsonchecker/fail31.json: -------------------------------------------------------------------------------- 1 | [0e+-1] -------------------------------------------------------------------------------- /WebServiceDemo/Required_Libs/SBJson_3.1/Tests/Data/jsonchecker/fail32.json: -------------------------------------------------------------------------------- 1 | {"Comma instead if closing brace": true, -------------------------------------------------------------------------------- /WebServiceDemo/Required_Libs/SBJson_3.1/Tests/Data/jsonchecker/fail33.json: -------------------------------------------------------------------------------- 1 | ["mismatch"} -------------------------------------------------------------------------------- /WebServiceDemo/Required_Libs/SBJson_3.1/Tests/Data/jsonchecker/fail4.json: -------------------------------------------------------------------------------- 1 | ["extra comma",] -------------------------------------------------------------------------------- /WebServiceDemo/Required_Libs/SBJson_3.1/Tests/Data/jsonchecker/fail5.json: -------------------------------------------------------------------------------- 1 | ["double extra comma",,] -------------------------------------------------------------------------------- /WebServiceDemo/Required_Libs/SBJson_3.1/Tests/Data/jsonchecker/fail6.json: -------------------------------------------------------------------------------- 1 | [ , "<-- missing value"] -------------------------------------------------------------------------------- /WebServiceDemo/Required_Libs/SBJson_3.1/Tests/Data/jsonchecker/fail7.json: -------------------------------------------------------------------------------- 1 | ["Comma after the close"], -------------------------------------------------------------------------------- /WebServiceDemo/Required_Libs/SBJson_3.1/Tests/Data/jsonchecker/fail8.json: -------------------------------------------------------------------------------- 1 | ["Extra close"]] -------------------------------------------------------------------------------- /WebServiceDemo/Required_Libs/SBJson_3.1/Tests/Data/jsonchecker/fail9.json: -------------------------------------------------------------------------------- 1 | {"Extra comma": true,} -------------------------------------------------------------------------------- /WebServiceDemo/Required_Libs/SBJson_3.1/Tests/Data/valid/boolean/input: -------------------------------------------------------------------------------- 1 | [true,false] 2 | -------------------------------------------------------------------------------- /WebServiceDemo/Required_Libs/SBJson_3.1/Tests/Data/valid/boolean/output: -------------------------------------------------------------------------------- 1 | [true,false] 2 | -------------------------------------------------------------------------------- /WebServiceDemo/Required_Libs/SBJson_3.1/Tests/Data/valid/null/input: -------------------------------------------------------------------------------- 1 | [null] 2 | -------------------------------------------------------------------------------- /WebServiceDemo/Required_Libs/SBJson_3.1/Tests/Data/valid/null/output: -------------------------------------------------------------------------------- 1 | [null] 2 | -------------------------------------------------------------------------------- /WebServiceDemo/Required_Libs/SBJson_3.1/Tests/Data/valid/number/float/input: -------------------------------------------------------------------------------- 1 | [ 2 | 0.0001, 3 | 2.5, 4 | 4.4, 5 | 99.99 6 | ] 7 | -------------------------------------------------------------------------------- /WebServiceDemo/Required_Libs/SBJson_3.1/Tests/Data/valid/number/float/output: -------------------------------------------------------------------------------- 1 | [0.0001,2.5,4.4,99.99] 2 | -------------------------------------------------------------------------------- /WebServiceDemo/Required_Libs/SBJson_3.1/Tests/Data/valid/string/unicode-e-acute/output: -------------------------------------------------------------------------------- 1 | {"e-acute with upper-case hex":"é"} 2 | -------------------------------------------------------------------------------- /WebServiceDemo/Required_Libs/SBJson_3.1/Tests/Data/valid/string/unicode-g-clef/output: -------------------------------------------------------------------------------- 1 | {"MUSICAL SYMBOL G CLEF":"𝄞"} 2 | -------------------------------------------------------------------------------- /WebServiceDemo/WebServiceTest/SBJson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/WebServiceDemo/WebServiceTest/SBJson.h -------------------------------------------------------------------------------- /WebServiceDemo/WebServiceTest/WebServiceTest/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /WebServiceLocalTimeSoap/LocalTime/xs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/WebServiceLocalTimeSoap/LocalTime/xs.h -------------------------------------------------------------------------------- /WebServiceLocalTimeSoap/LocalTime/xs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/WebServiceLocalTimeSoap/LocalTime/xs.m -------------------------------------------------------------------------------- /WebServiceLocalTimeSoap/MainWindow.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/WebServiceLocalTimeSoap/MainWindow.xib -------------------------------------------------------------------------------- /WebServiceLocalTimeSoap/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/WebServiceLocalTimeSoap/main.m -------------------------------------------------------------------------------- /WebViewDemo/1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/WebViewDemo/1.html -------------------------------------------------------------------------------- /WebViewDemo/WebViewDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/WebViewDemo/WebViewDemo/AppDelegate.h -------------------------------------------------------------------------------- /WebViewDemo/WebViewDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/WebViewDemo/WebViewDemo/AppDelegate.m -------------------------------------------------------------------------------- /WebViewDemo/WebViewDemo/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /WebViewDemo/WebViewDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/WebViewDemo/WebViewDemo/main.m -------------------------------------------------------------------------------- /XMPP_Demo/Categories/NSData+XMPP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/XMPP_Demo/Categories/NSData+XMPP.h -------------------------------------------------------------------------------- /XMPP_Demo/Categories/NSData+XMPP.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/XMPP_Demo/Categories/NSData+XMPP.m -------------------------------------------------------------------------------- /XMPP_Demo/Categories/NSNumber+XMPP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/XMPP_Demo/Categories/NSNumber+XMPP.h -------------------------------------------------------------------------------- /XMPP_Demo/Categories/NSNumber+XMPP.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/XMPP_Demo/Categories/NSNumber+XMPP.m -------------------------------------------------------------------------------- /XMPP_Demo/Core/XMPP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/XMPP_Demo/Core/XMPP.h -------------------------------------------------------------------------------- /XMPP_Demo/Core/XMPPElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/XMPP_Demo/Core/XMPPElement.h -------------------------------------------------------------------------------- /XMPP_Demo/Core/XMPPElement.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/XMPP_Demo/Core/XMPPElement.m -------------------------------------------------------------------------------- /XMPP_Demo/Core/XMPPIQ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/XMPP_Demo/Core/XMPPIQ.h -------------------------------------------------------------------------------- /XMPP_Demo/Core/XMPPIQ.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/XMPP_Demo/Core/XMPPIQ.m -------------------------------------------------------------------------------- /XMPP_Demo/Core/XMPPInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/XMPP_Demo/Core/XMPPInternal.h -------------------------------------------------------------------------------- /XMPP_Demo/Core/XMPPJID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/XMPP_Demo/Core/XMPPJID.h -------------------------------------------------------------------------------- /XMPP_Demo/Core/XMPPJID.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/XMPP_Demo/Core/XMPPJID.m -------------------------------------------------------------------------------- /XMPP_Demo/Core/XMPPLogging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/XMPP_Demo/Core/XMPPLogging.h -------------------------------------------------------------------------------- /XMPP_Demo/Core/XMPPMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/XMPP_Demo/Core/XMPPMessage.h -------------------------------------------------------------------------------- /XMPP_Demo/Core/XMPPMessage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/XMPP_Demo/Core/XMPPMessage.m -------------------------------------------------------------------------------- /XMPP_Demo/Core/XMPPModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/XMPP_Demo/Core/XMPPModule.h -------------------------------------------------------------------------------- /XMPP_Demo/Core/XMPPModule.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/XMPP_Demo/Core/XMPPModule.m -------------------------------------------------------------------------------- /XMPP_Demo/Core/XMPPParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/XMPP_Demo/Core/XMPPParser.h -------------------------------------------------------------------------------- /XMPP_Demo/Core/XMPPParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/XMPP_Demo/Core/XMPPParser.m -------------------------------------------------------------------------------- /XMPP_Demo/Core/XMPPPresence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/XMPP_Demo/Core/XMPPPresence.h -------------------------------------------------------------------------------- /XMPP_Demo/Core/XMPPPresence.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/XMPP_Demo/Core/XMPPPresence.m -------------------------------------------------------------------------------- /XMPP_Demo/Core/XMPPStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/XMPP_Demo/Core/XMPPStream.h -------------------------------------------------------------------------------- /XMPP_Demo/Core/XMPPStream.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/XMPP_Demo/Core/XMPPStream.m -------------------------------------------------------------------------------- /XMPP_Demo/Utilities/DDList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/XMPP_Demo/Utilities/DDList.h -------------------------------------------------------------------------------- /XMPP_Demo/Utilities/DDList.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/XMPP_Demo/Utilities/DDList.m -------------------------------------------------------------------------------- /XMPP_Demo/Utilities/LibIDN.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/XMPP_Demo/Utilities/LibIDN.h -------------------------------------------------------------------------------- /XMPP_Demo/Utilities/LibIDN.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/XMPP_Demo/Utilities/LibIDN.m -------------------------------------------------------------------------------- /XMPP_Demo/Utilities/XMPPIDTracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/XMPP_Demo/Utilities/XMPPIDTracker.h -------------------------------------------------------------------------------- /XMPP_Demo/Utilities/XMPPIDTracker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/XMPP_Demo/Utilities/XMPPIDTracker.m -------------------------------------------------------------------------------- /XMPP_Demo/Utilities/XMPPSRVResolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/XMPP_Demo/Utilities/XMPPSRVResolver.h -------------------------------------------------------------------------------- /XMPP_Demo/Utilities/XMPPSRVResolver.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/XMPP_Demo/Utilities/XMPPSRVResolver.m -------------------------------------------------------------------------------- /XMPP_Demo/Vendor/KissXML/DDXML.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/XMPP_Demo/Vendor/KissXML/DDXML.h -------------------------------------------------------------------------------- /XMPP_Demo/Vendor/KissXML/DDXMLElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/XMPP_Demo/Vendor/KissXML/DDXMLElement.h -------------------------------------------------------------------------------- /XMPP_Demo/Vendor/KissXML/DDXMLElement.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/XMPP_Demo/Vendor/KissXML/DDXMLElement.m -------------------------------------------------------------------------------- /XMPP_Demo/Vendor/KissXML/DDXMLNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/XMPP_Demo/Vendor/KissXML/DDXMLNode.h -------------------------------------------------------------------------------- /XMPP_Demo/Vendor/KissXML/DDXMLNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/XMPP_Demo/Vendor/KissXML/DDXMLNode.m -------------------------------------------------------------------------------- /XMPP_Demo/Vendor/libidn/idn-int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/XMPP_Demo/Vendor/libidn/idn-int.h -------------------------------------------------------------------------------- /XMPP_Demo/Vendor/libidn/libidn.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/XMPP_Demo/Vendor/libidn/libidn.a -------------------------------------------------------------------------------- /XMPP_Demo/Vendor/libidn/stringprep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/XMPP_Demo/Vendor/libidn/stringprep.h -------------------------------------------------------------------------------- /XMPP_Demo/XMPP_Demo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/XMPP_Demo/XMPP_Demo/AppDelegate.h -------------------------------------------------------------------------------- /XMPP_Demo/XMPP_Demo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/XMPP_Demo/XMPP_Demo/AppDelegate.m -------------------------------------------------------------------------------- /XMPP_Demo/XMPP_Demo/ChatDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/XMPP_Demo/XMPP_Demo/ChatDelegate.h -------------------------------------------------------------------------------- /XMPP_Demo/XMPP_Demo/MessageDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/XMPP_Demo/XMPP_Demo/MessageDelegate.h -------------------------------------------------------------------------------- /XMPP_Demo/XMPP_Demo/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /XMPP_Demo/XMPP_Demo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/XMPP_Demo/XMPP_Demo/main.m -------------------------------------------------------------------------------- /animations/animations/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/animations/animations/3.jpg -------------------------------------------------------------------------------- /animations/animations/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/animations/animations/AppDelegate.h -------------------------------------------------------------------------------- /animations/animations/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/animations/animations/AppDelegate.m -------------------------------------------------------------------------------- /animations/animations/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/animations/animations/ViewController.h -------------------------------------------------------------------------------- /animations/animations/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/animations/animations/ViewController.m -------------------------------------------------------------------------------- /animations/animations/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /animations/animations/l.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/animations/animations/l.jpg -------------------------------------------------------------------------------- /animations/animations/m.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/animations/animations/m.jpg -------------------------------------------------------------------------------- /animations/animations/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/animations/animations/main.m -------------------------------------------------------------------------------- /appLifeCycle/appLifeCycle/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/appLifeCycle/appLifeCycle/AppDelegate.h -------------------------------------------------------------------------------- /appLifeCycle/appLifeCycle/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/appLifeCycle/appLifeCycle/AppDelegate.m -------------------------------------------------------------------------------- /appLifeCycle/appLifeCycle/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/appLifeCycle/appLifeCycle/Default.png -------------------------------------------------------------------------------- /appLifeCycle/appLifeCycle/apple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/appLifeCycle/appLifeCycle/apple.png -------------------------------------------------------------------------------- /appLifeCycle/appLifeCycle/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /appLifeCycle/appLifeCycle/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/appLifeCycle/appLifeCycle/main.m -------------------------------------------------------------------------------- /appLifeCycle/lifecycle.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/appLifeCycle/lifecycle.pdf -------------------------------------------------------------------------------- /block/block.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/block/block.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /block/block/block-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/block/block/block-Prefix.pch -------------------------------------------------------------------------------- /block/block/block.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/block/block/block.1 -------------------------------------------------------------------------------- /block/block/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/block/block/main.m -------------------------------------------------------------------------------- /capturepause/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/capturepause/.gitignore -------------------------------------------------------------------------------- /capturepause/CapturePause/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/capturepause/CapturePause/Default.png -------------------------------------------------------------------------------- /capturepause/CapturePause/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /capturepause/CapturePause/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/capturepause/CapturePause/main.m -------------------------------------------------------------------------------- /capturepause/LICENSE.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/capturepause/LICENSE.markdown -------------------------------------------------------------------------------- /copy/copy.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/copy/copy.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /copy/copy/copy-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/copy/copy/copy-Prefix.pch -------------------------------------------------------------------------------- /copy/copy/copy.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/copy/copy/copy.1 -------------------------------------------------------------------------------- /copy/copy/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/copy/copy/main.m -------------------------------------------------------------------------------- /dynamicSearchView/FilterButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/dynamicSearchView/FilterButton.h -------------------------------------------------------------------------------- /dynamicSearchView/FilterButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/dynamicSearchView/FilterButton.m -------------------------------------------------------------------------------- /dynamicSearchView/FilterButton.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/dynamicSearchView/FilterButton.xib -------------------------------------------------------------------------------- /dynamicSearchView/FilterDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/dynamicSearchView/FilterDelegate.h -------------------------------------------------------------------------------- /dynamicSearchView/FilterScrollView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/dynamicSearchView/FilterScrollView.h -------------------------------------------------------------------------------- /dynamicSearchView/FilterScrollView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/dynamicSearchView/FilterScrollView.m -------------------------------------------------------------------------------- /excel-plist/File.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/excel-plist/File.txt -------------------------------------------------------------------------------- /excel-plist/excel-plist/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/excel-plist/excel-plist/AppDelegate.h -------------------------------------------------------------------------------- /excel-plist/excel-plist/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/excel-plist/excel-plist/AppDelegate.m -------------------------------------------------------------------------------- /excel-plist/excel-plist/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /excel-plist/excel-plist/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/excel-plist/excel-plist/main.m -------------------------------------------------------------------------------- /iPad 拆分视图/MultipleDetailViews/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/iPad 拆分视图/MultipleDetailViews/main.m -------------------------------------------------------------------------------- /iPad 拆分视图/UIsplitView/UIsplitView/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /iPad_PopoverView/iPad_PopoverView/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /kvoTest/kvoTest/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/kvoTest/kvoTest/Default-568h@2x.png -------------------------------------------------------------------------------- /kvoTest/kvoTest/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/kvoTest/kvoTest/Default.png -------------------------------------------------------------------------------- /kvoTest/kvoTest/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/kvoTest/kvoTest/Default@2x.png -------------------------------------------------------------------------------- /kvoTest/kvoTest/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /kvoTest/kvoTest/kvoTest-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/kvoTest/kvoTest/kvoTest-Info.plist -------------------------------------------------------------------------------- /kvoTest/kvoTest/kvoTest-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/kvoTest/kvoTest/kvoTest-Prefix.pch -------------------------------------------------------------------------------- /kvoTest/kvoTest/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/kvoTest/kvoTest/main.m -------------------------------------------------------------------------------- /mouse/mouse.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/mouse/mouse.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /mouse/mouse/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/mouse/mouse/AppDelegate.h -------------------------------------------------------------------------------- /mouse/mouse/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/mouse/mouse/AppDelegate.m -------------------------------------------------------------------------------- /mouse/mouse/CarBodyView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/mouse/mouse/CarBodyView.xib -------------------------------------------------------------------------------- /mouse/mouse/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/mouse/mouse/ViewController.h -------------------------------------------------------------------------------- /mouse/mouse/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/mouse/mouse/ViewController.m -------------------------------------------------------------------------------- /mouse/mouse/detectouter_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/mouse/mouse/detectouter_10.png -------------------------------------------------------------------------------- /mouse/mouse/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /mouse/mouse/en.lproj/ViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/mouse/mouse/en.lproj/ViewController.xib -------------------------------------------------------------------------------- /mouse/mouse/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/mouse/mouse/main.m -------------------------------------------------------------------------------- /mouse/mouse/mouse-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/mouse/mouse/mouse-Info.plist -------------------------------------------------------------------------------- /mouse/mouse/mouse-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/mouse/mouse/mouse-Prefix.pch -------------------------------------------------------------------------------- /mouse/mouse/myview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/mouse/mouse/myview.h -------------------------------------------------------------------------------- /mouse/mouse/myview.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/mouse/mouse/myview.m -------------------------------------------------------------------------------- /mouse/mouse/pointLocation.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/mouse/mouse/pointLocation.plist -------------------------------------------------------------------------------- /mouse/mouse/线框@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/mouse/mouse/线框@2x.png -------------------------------------------------------------------------------- /tableviewHeadView/tableviewHeadView/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /tableview_picture_GCD/tableview_picture_GCD/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /uisplitview/.svn/all-wcprops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/uisplitview/.svn/all-wcprops -------------------------------------------------------------------------------- /uisplitview/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/uisplitview/.svn/entries -------------------------------------------------------------------------------- /uisplitview/Classes/.svn/all-wcprops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/uisplitview/Classes/.svn/all-wcprops -------------------------------------------------------------------------------- /uisplitview/Classes/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/uisplitview/Classes/.svn/entries -------------------------------------------------------------------------------- /uisplitview/MainWindow.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/uisplitview/MainWindow.xib -------------------------------------------------------------------------------- /uisplitview/ipad.demo.xcodeproj/.svn/prop-base/project.pbxproj.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 0 4 | 5 | END 6 | -------------------------------------------------------------------------------- /uisplitview/ipad_demo-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/uisplitview/ipad_demo-Info.plist -------------------------------------------------------------------------------- /uisplitview/ipad_demo_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/uisplitview/ipad_demo_Prefix.pch -------------------------------------------------------------------------------- /uisplitview/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cokecoffe/ios-demo/HEAD/uisplitview/main.m --------------------------------------------------------------------------------