├── .gitignore ├── AVCaptreSample ├── AVCaptreSample.xcodeproj │ └── project.pbxproj └── AVCaptreSample │ ├── AVCaptreSample-Info.plist │ ├── AVCaptreSample-Prefix.pch │ ├── AVCaptreSampleAppDelegate.h │ ├── AVCaptreSampleAppDelegate.m │ ├── en.lproj │ ├── InfoPlist.strings │ └── MainWindow.xib │ └── main.m ├── AccelerometerSample ├── AccelerometerSample.xcodeproj │ └── project.pbxproj └── AccelerometerSample │ ├── AccelerometerSample-Info.plist │ ├── AccelerometerSample-Prefix.pch │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── ViewController.h │ ├── ViewController.m │ ├── en.lproj │ ├── InfoPlist.strings │ ├── ViewController_iPad.xib │ └── ViewController_iPhone.xib │ └── main.m ├── ActionSheetUsingBlocks ├── ActionSheetUsingBlocks-Info.plist ├── ActionSheetUsingBlocks.xcodeproj │ └── project.pbxproj ├── ActionSheetUsingBlocksViewController.xib ├── ActionSheetUsingBlocks_Prefix.pch ├── Classes │ ├── ActionSheetBlocksExtension.h │ ├── ActionSheetBlocksExtension.m │ ├── ActionSheetUsingBlocksAppDelegate.h │ ├── ActionSheetUsingBlocksAppDelegate.m │ ├── ActionSheetUsingBlocksViewController.h │ └── ActionSheetUsingBlocksViewController.m ├── MainWindow.xib └── main.m ├── ApplicationDelegateSample ├── ApplicationDelegateSample-Info.plist ├── ApplicationDelegateSample.xcodeproj │ └── project.pbxproj ├── ApplicationDelegateSampleViewController.xib ├── ApplicationDelegateSample_Prefix.pch ├── Classes │ ├── ApplicationDelegateSampleAppDelegate.h │ ├── ApplicationDelegateSampleAppDelegate.m │ ├── ApplicationDelegateSampleViewController.h │ └── ApplicationDelegateSampleViewController.m ├── MainWindow.xib └── main.m ├── ApplicationTestSample ├── AppTests-Info.plist ├── AppTests.h ├── AppTests.m ├── ApplicationTestSample-Info copy.plist ├── ApplicationTestSample-Info.plist ├── ApplicationTestSample.xcodeproj │ └── project.pbxproj ├── ApplicationTestSampleViewController.xib ├── ApplicationTestSample_Prefix.pch ├── Classes │ ├── ApplicationTestSampleAppDelegate.h │ ├── ApplicationTestSampleAppDelegate.m │ ├── ApplicationTestSampleViewController.h │ └── ApplicationTestSampleViewController.m ├── MainWindow.xib └── main.m ├── AutoreleasePoolTest ├── AutoreleasePoolTest-Info.plist ├── AutoreleasePoolTest.xcodeproj │ └── project.pbxproj ├── AutoreleasePoolTestViewController.xib ├── AutoreleasePoolTest_Prefix.pch ├── Classes │ ├── AutoreleasePoolTestAppDelegate.h │ ├── AutoreleasePoolTestAppDelegate.m │ ├── AutoreleasePoolTestViewController.h │ └── AutoreleasePoolTestViewController.m ├── MainWindow.xib ├── image01.jpg ├── image02.jpg ├── image03.jpg ├── image04.jpg ├── image05.jpg ├── image06.jpg ├── image07.jpg ├── image08.jpg ├── image09.jpg ├── image10.jpg ├── image11.jpg ├── image12.jpg ├── image13.jpg ├── image14.jpg ├── image15.jpg ├── image16.jpg └── main.m ├── BackgroundImage ├── BackgroundImage-Info.plist ├── BackgroundImage.xcdatamodeld │ ├── .xccurrentversion │ └── BackgroundImage.xcdatamodel │ │ ├── elements │ │ └── layout ├── BackgroundImage.xcodeproj │ └── project.pbxproj ├── BackgroundImage_Prefix.pch ├── Classes │ ├── BackgroundImageAppDelegate.h │ ├── BackgroundImageAppDelegate.m │ ├── RootViewController.h │ ├── RootViewController.m │ ├── SubViewController.h │ ├── SubViewController.m │ └── SubViewController.xib ├── MainWindow.xib ├── RootViewController.xib ├── main.m └── sample.jpg ├── BackgroundQueueSample ├── BackgroundQueueSample.xcodeproj │ └── project.pbxproj └── BackgroundQueueSample │ ├── BackgroundQueueSample-Info.plist │ ├── BackgroundQueueSample-Prefix.pch │ ├── BackgroundQueueSampleAppDelegate.h │ ├── BackgroundQueueSampleAppDelegate.m │ ├── Queue.h │ ├── Queue.m │ ├── RootViewController.h │ ├── RootViewController.m │ ├── blank24x24.png │ ├── en.lproj │ ├── InfoPlist.strings │ ├── MainWindow.xib │ └── RootViewController.xib │ ├── load.gif │ └── main.m ├── BluetoothSample ├── BluetoothSample-Info.plist ├── BluetoothSample.xcodeproj │ └── project.pbxproj ├── BluetoothSampleViewController.xib ├── BluetoothSample_Prefix.pch ├── Classes │ ├── BluetoothSampleAppDelegate.h │ ├── BluetoothSampleAppDelegate.m │ ├── BluetoothSampleViewController.h │ └── BluetoothSampleViewController.m ├── MainWindow.xib └── main.m ├── CGSample ├── CGSample.xcodeproj │ └── project.pbxproj └── CGSample │ ├── CGSample-Info.plist │ ├── CGSample-Prefix.pch │ ├── CGSampleAppDelegate.h │ ├── CGSampleAppDelegate.m │ ├── CGSampleViewController.h │ ├── CGSampleViewController.m │ ├── SampleView.h │ ├── SampleView.m │ ├── en.lproj │ ├── CGSampleViewController.xib │ ├── InfoPlist.strings │ └── MainWindow.xib │ ├── main.m │ └── sample.png ├── CameraSample ├── CameraSample.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── hashi.xcuserdatad │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ └── WorkspaceSettings.xcsettings │ └── xcuserdata │ │ └── hashi.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints.xcbkptlist │ │ └── xcschemes │ │ ├── CameraSample.xcscheme │ │ └── xcschememanagement.plist └── CameraSample │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── CameraSample-Info.plist │ ├── CameraSample-Prefix.pch │ ├── ViewController.h │ ├── ViewController.m │ ├── en.lproj │ ├── InfoPlist.strings │ └── ViewController.xib │ └── main.m ├── CirculationScroll ├── CirculationScroll-Info.plist ├── CirculationScroll.xcodeproj │ └── project.pbxproj ├── CirculationScrollViewController.xib ├── CirculationScroll_Prefix.pch ├── Classes │ ├── CirculationScrollAppDelegate.h │ ├── CirculationScrollAppDelegate.m │ ├── CirculationScrollViewController.h │ └── CirculationScrollViewController.m ├── MainWindow.xib ├── background.png ├── blank.jpg ├── main.m ├── simg1.jpg ├── simg2.jpg ├── simg3.jpg ├── simg4.jpg ├── simg5.jpg ├── simg6.jpg ├── simg7.jpg ├── simg8.jpg └── simg9.jpg ├── CoreAnimation3DSample ├── Classes │ ├── CoreAnimation3DSampleAppDelegate.h │ ├── CoreAnimation3DSampleAppDelegate.m │ ├── CoreAnimation3DSampleViewController.h │ └── CoreAnimation3DSampleViewController.m ├── CoreAnimation3DSample-Info.plist ├── CoreAnimation3DSample.xcodeproj │ └── project.pbxproj ├── CoreAnimation3DSampleViewController.xib ├── CoreAnimation3DSample_Prefix.pch ├── MainWindow.xib ├── image01s.jpg ├── image02s.jpg ├── image03s.jpg ├── image04s.jpg ├── image05s.jpg ├── image06s.jpg ├── image07s.jpg ├── image08s.jpg ├── image09s.jpg └── main.m ├── CoreAnimation3DSample2 ├── Classes │ ├── CoreAnimation3DSample2AppDelegate.h │ ├── CoreAnimation3DSample2AppDelegate.m │ ├── CoreAnimation3DSample2ViewController.h │ └── CoreAnimation3DSample2ViewController.m ├── CoreAnimation3DSample2-Info.plist ├── CoreAnimation3DSample2.xcodeproj │ └── project.pbxproj ├── CoreAnimation3DSample2ViewController.xib ├── CoreAnimation3DSample2_Prefix.pch ├── MainWindow.xib ├── image01s.jpg ├── image02s.jpg ├── image03s.jpg ├── image04s.jpg ├── image05s.jpg ├── image06s.jpg ├── image07s.jpg ├── image08s.jpg ├── image09s.jpg └── main.m ├── CoreDataMigSample ├── .DS_Store ├── Classes │ ├── CoreDataMigSampleAppDelegate.h │ ├── CoreDataMigSampleAppDelegate.m │ ├── Event+Extension.h │ ├── Event+Extension.m │ ├── EventEntityMigrationPolicy.h │ ├── EventEntityMigrationPolicy.m │ ├── RootViewController.h │ └── RootViewController.m ├── CoreDataMigSample-Info.plist ├── CoreDataMigSample.xcdatamodeld │ ├── .xccurrentversion │ ├── CoreDataMigSample 2.xcdatamodel │ │ ├── elements │ │ └── layout │ ├── CoreDataMigSample-1to2.xcmappingmodel │ │ └── xcmapping.xml │ └── CoreDataMigSample.xcdatamodel │ │ ├── elements │ │ └── layout ├── CoreDataMigSample.xcodeproj │ ├── hashi.mode1v3 │ ├── hashi.pbxuser │ └── project.pbxproj ├── CoreDataMigSample_Prefix.pch ├── Event.h ├── Event.m ├── MainWindow.xib ├── RootViewController.xib └── main.m ├── CoreLocationManager ├── Classes │ ├── CoreLocationManagerAppDelegate.h │ ├── CoreLocationManagerAppDelegate.m │ ├── CoreLocationManagerViewController.h │ └── CoreLocationManagerViewController.m ├── CoreLocationManager-Info.plist ├── CoreLocationManager.xcodeproj │ ├── hashi.mode1v3 │ ├── hashi.pbxuser │ └── project.pbxproj ├── CoreLocationManagerViewController.xib ├── CoreLocationManager_Prefix.pch ├── LKLocationManager.h ├── LKLocationManager.m ├── MainWindow.xib ├── Test-Info.plist ├── build │ ├── CoreLocationManager.build │ │ ├── CoreLocationManager.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 │ │ ├── Debug-iphoneos │ │ │ └── CoreLocationManager.build │ │ │ │ ├── CoreLocationManager-all-target-headers.hmap │ │ │ │ ├── CoreLocationManager-generated-files.hmap │ │ │ │ ├── CoreLocationManager-own-target-headers.hmap │ │ │ │ ├── CoreLocationManager-project-headers.hmap │ │ │ │ ├── CoreLocationManager.dep │ │ │ │ ├── CoreLocationManager.hmap │ │ │ │ ├── CoreLocationManager.xcent │ │ │ │ ├── CoreLocationManager~.dep │ │ │ │ ├── Objects-normal │ │ │ │ ├── armv6 │ │ │ │ │ ├── CoreLocationManager │ │ │ │ │ ├── CoreLocationManager.LinkFileList │ │ │ │ │ ├── CoreLocationManagerAppDelegate.o │ │ │ │ │ ├── CoreLocationManagerViewController.o │ │ │ │ │ └── main.o │ │ │ │ └── armv7 │ │ │ │ │ ├── CoreLocationManager │ │ │ │ │ ├── CoreLocationManager.LinkFileList │ │ │ │ │ ├── CoreLocationManagerAppDelegate.o │ │ │ │ │ ├── CoreLocationManagerViewController.o │ │ │ │ │ └── main.o │ │ │ │ ├── build-state.dat │ │ │ │ └── build-state~.dat │ │ └── Debug-iphonesimulator │ │ │ └── CoreLocationManager.build │ │ │ ├── CoreLocationManager-all-target-headers.hmap │ │ │ ├── CoreLocationManager-generated-files.hmap │ │ │ ├── CoreLocationManager-own-target-headers.hmap │ │ │ ├── CoreLocationManager-project-headers.hmap │ │ │ ├── CoreLocationManager.dep │ │ │ ├── CoreLocationManager.hmap │ │ │ ├── CoreLocationManager~.dep │ │ │ ├── Objects-normal │ │ │ └── i386 │ │ │ │ ├── CoreLocationManager.LinkFileList │ │ │ │ ├── CoreLocationManagerAppDelegate.o │ │ │ │ ├── CoreLocationManagerViewController.o │ │ │ │ └── main.o │ │ │ ├── build-state.dat │ │ │ └── build-state~.dat │ ├── Debug-iphoneos │ │ ├── CoreLocationManager.app.dSYM │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ └── Resources │ │ │ │ └── DWARF │ │ │ │ └── CoreLocationManager │ │ └── CoreLocationManager.app │ │ │ ├── CodeResources │ │ │ ├── CoreLocationManager │ │ │ ├── CoreLocationManagerViewController.nib │ │ │ ├── Info.plist │ │ │ ├── MainWindow.nib │ │ │ ├── PkgInfo │ │ │ ├── ResourceRules.plist │ │ │ ├── _CodeSignature │ │ │ └── CodeResources │ │ │ └── embedded.mobileprovision │ └── Debug-iphonesimulator │ │ ├── CoreLocationManager.app.dSYM │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── Resources │ │ │ └── DWARF │ │ │ └── CoreLocationManager │ │ └── CoreLocationManager.app │ │ ├── CoreLocationManager │ │ ├── CoreLocationManagerViewController.nib │ │ ├── Info.plist │ │ ├── MainWindow.nib │ │ └── PkgInfo └── main.m ├── CoreLocationSample ├── Classes │ ├── CoreLocationSampleAppDelegate.h │ ├── CoreLocationSampleAppDelegate.m │ ├── CoreLocationSampleViewController.h │ ├── CoreLocationSampleViewController.m │ ├── SimpleAnnotation.h │ └── SimpleAnnotation.m ├── CoreLocationSample-Info.plist ├── CoreLocationSample.xcodeproj │ └── project.pbxproj ├── CoreLocationSampleViewController.xib ├── CoreLocationSample_Prefix.pch ├── MainWindow.xib └── main.m ├── CoreMotionStudy ├── CoreMotionStudy.xcodeproj │ └── project.pbxproj └── CoreMotionStudy │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── CoreMotionStudy-Info.plist │ ├── CoreMotionStudy-Prefix.pch │ ├── ViewController.h │ ├── ViewController.m │ ├── en.lproj │ ├── InfoPlist.strings │ ├── ViewController_iPad.xib │ └── ViewController_iPhone.xib │ └── main.m ├── CustomCellSample ├── CustomCellSample.xcodeproj │ └── project.pbxproj ├── CustomCellSample │ ├── CustomCell.h │ ├── CustomCell.m │ ├── CustomCell.xib │ ├── CustomCell2.xib │ ├── CustomCellSample-Info.plist │ ├── CustomCellSample-Prefix.pch │ ├── CustomCellSampleAppDelegate.h │ ├── CustomCellSampleAppDelegate.m │ ├── HeaderView.h │ ├── HeaderView.m │ ├── RootViewController.h │ ├── RootViewController.m │ ├── arrow.png │ ├── en.lproj │ │ ├── InfoPlist.strings │ │ ├── MainWindow.xib │ │ └── RootViewController.xib │ ├── image01s.jpg │ ├── image02s.jpg │ ├── image03s.jpg │ ├── image04s.jpg │ ├── image05s.jpg │ ├── image06s.jpg │ ├── image07s.jpg │ ├── image08s.jpg │ └── main.m ├── FooterView.h └── FooterView.m ├── DeviceTypeSample ├── Classes │ ├── DeviceInfoUtility.h │ ├── DeviceInfoUtility.m │ ├── DeviceTypeSampleAppDelegate.h │ ├── DeviceTypeSampleAppDelegate.m │ ├── DeviceTypeSampleViewController.h │ └── DeviceTypeSampleViewController.m ├── DeviceNameList.plist ├── DeviceTypeSample-Info.plist ├── DeviceTypeSample.xcodeproj │ └── project.pbxproj ├── DeviceTypeSampleViewController.xib ├── DeviceTypeSample_Prefix.pch ├── MainWindow.xib └── main.m ├── DialogSample ├── Classes │ ├── CustomDialogViewController.h │ ├── CustomDialogViewController.m │ ├── CustomDialogViewDelegate.h │ ├── DialogSampleAppDelegate.h │ ├── DialogSampleAppDelegate.m │ ├── DialogSampleViewController.h │ └── DialogSampleViewController.m ├── CustomDialogViewController.xib ├── DialogSample-Info.plist ├── DialogSample.xcodeproj │ └── project.pbxproj ├── DialogSampleViewController.xib ├── DialogSample_Prefix.pch ├── MainWindow.xib ├── UIViewController_Extension.h ├── UIViewController_Extension.m └── main.m ├── DisplayingExcelFile ├── Classes │ ├── CustomURLCache.h │ ├── CustomURLCache.m │ ├── DisplayingExcelFileAppDelegate.h │ ├── DisplayingExcelFileAppDelegate.m │ ├── DisplayingExcelFileViewController.h │ └── DisplayingExcelFileViewController.m ├── DisplayingExcelFile-Info.plist ├── DisplayingExcelFile.xcodeproj │ └── project.pbxproj ├── DisplayingExcelFileViewController.xib ├── DisplayingExcelFile_Prefix.pch ├── MainWindow.xib ├── Resources-iPad │ └── MainWindow-iPad.xib ├── main.m ├── sample.jpg ├── sample.mov ├── sample.pdf ├── sample.xls ├── sample2.ppt ├── sample3.doc └── sample4.rtfd.zip ├── EasyGallery ├── Classes │ ├── EasyGalleryAppDelegate.h │ ├── EasyGalleryAppDelegate.m │ ├── EasyGalleryViewController.h │ ├── EasyGalleryViewController.m │ ├── XCGalleryInnerScrollView.h │ ├── XCGalleryInnerScrollView.m │ ├── XCGalleryView.h │ └── XCGalleryView.m ├── EasyGallery-Info.plist ├── EasyGallery.xcodeproj │ └── project.pbxproj ├── EasyGalleryViewController-iPad.xib ├── EasyGalleryViewController.xib ├── EasyGallery_Prefix.pch ├── MainWindow-iPad.xib ├── MainWindow.xib ├── image01.jpg ├── image02.jpg ├── image03.jpg ├── image04.jpg ├── image05.jpg ├── image06.jpg ├── image07.jpg ├── image08.jpg ├── link.webloc └── main.m ├── ExifSample ├── ExifSample.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata └── ExifSample │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── ExifSample-Info.plist │ ├── ExifSample-Prefix.pch │ ├── ViewController.h │ ├── ViewController.m │ ├── en.lproj │ ├── InfoPlist.strings │ └── ViewController.xib │ └── main.m ├── FetchedResultsControllerSample ├── Classes │ ├── FetchedResultsControllerSampleAppDelegate.h │ ├── FetchedResultsControllerSampleAppDelegate.m │ ├── RootViewController.h │ └── RootViewController.m ├── FetchedResultsControllerSample-Info.plist ├── FetchedResultsControllerSample.xcdatamodeld │ ├── .xccurrentversion │ └── FetchedResultsControllerSample.xcdatamodel │ │ ├── elements │ │ └── layout ├── FetchedResultsControllerSample.xcodeproj │ └── project.pbxproj ├── FetchedResultsControllerSample_Prefix.pch ├── MainWindow.xib ├── RootViewController.xib └── main.m ├── FileManagerDateSample ├── FileManagerDateSample.xcodeproj │ └── project.pbxproj └── FileManagerDateSample │ ├── FileManagerDateSample-Info.plist │ ├── FileManagerDateSample-Prefix.pch │ ├── FileManagerDateSampleAppDelegate.h │ ├── FileManagerDateSampleAppDelegate.m │ ├── en.lproj │ ├── InfoPlist.strings │ └── MainWindow.xib │ └── main.m ├── FileManagerSample ├── FileManagerSample.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ └── hashi.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── FileManagerSample │ ├── FileManagerSample-Info.plist │ ├── FileManagerSample-Prefix.pch │ ├── FileManagerSampleAppDelegate.h │ ├── FileManagerSampleAppDelegate.m │ ├── en.lproj │ ├── InfoPlist.strings │ └── MainWindow.xib │ ├── main.m │ ├── sample.jpg │ └── sample2.png ├── FileProtectionSample ├── FileProtectionSample.xcodeproj │ └── project.pbxproj └── FileProtectionSample │ ├── FileProtectionSample-Info.plist │ ├── FileProtectionSample-Prefix.pch │ ├── FileProtectionSampleAppDelegate.h │ ├── FileProtectionSampleAppDelegate.m │ ├── en.lproj │ ├── InfoPlist.strings │ └── MainWindow.xib │ ├── main.m │ ├── sample.jpg │ └── sample_encrypted.jpg ├── FirstResponderSample ├── FirstResponderSample.xcodeproj │ └── project.pbxproj └── FirstResponderSample │ ├── FirstResponderSample-Info.plist │ ├── FirstResponderSample-Prefix.pch │ ├── FirstResponderSampleAppDelegate.h │ ├── FirstResponderSampleAppDelegate.m │ ├── FirstResponderSampleViewController.h │ ├── FirstResponderSampleViewController.m │ ├── en.lproj │ ├── FirstResponderSampleViewController.xib │ ├── InfoPlist.strings │ └── MainWindow.xib │ └── main.m ├── GCDSuspendSample ├── GCDSuspendSample.xcodeproj │ └── project.pbxproj └── GCDSuspendSample │ ├── GCDSuspendSample-Info.plist │ ├── GCDSuspendSample-Prefix.pch │ ├── GCDSuspendSampleAppDelegate.h │ ├── GCDSuspendSampleAppDelegate.m │ ├── en.lproj │ ├── InfoPlist.strings │ └── MainWindow.xib │ └── main.m ├── GradientButton ├── GradientButton.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── hashi.xcuserdatad │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ └── WorkspaceSettings.xcsettings │ └── xcuserdata │ │ └── hashi.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints.xcbkptlist │ │ └── xcschemes │ │ ├── GradientButton.xcscheme │ │ └── xcschememanagement.plist └── GradientButton │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── GradientButton-Info.plist │ ├── GradientButton-Prefix.pch │ ├── GradientButton.h │ ├── GradientButton.m │ ├── ViewController.h │ ├── ViewController.m │ ├── en.lproj │ ├── InfoPlist.strings │ └── ViewController.xib │ └── main.m ├── GradientSample ├── GradientSample.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── hashi.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── hashi.xcuserdatad │ │ └── xcschemes │ │ ├── GradientSample.xcscheme │ │ └── xcschememanagement.plist └── GradientSample │ ├── GradientSample-Info.plist │ ├── GradientSample-Prefix.pch │ ├── GradientSampleAppDelegate.h │ ├── GradientSampleAppDelegate.m │ ├── GradientSampleViewController.h │ ├── GradientSampleViewController.m │ ├── LinearGradientView.h │ ├── LinearGradientView.m │ ├── RadialGradientView.h │ ├── RadialGradientView.m │ ├── en.lproj │ ├── GradientSampleViewController.xib │ ├── InfoPlist.strings │ └── MainWindow.xib │ └── main.m ├── HorizontalScrollableTableSample ├── HorizontalScrollableTableSample.xcodeproj │ └── project.pbxproj └── HorizontalScrollableTableSample │ ├── HorizontalScrollableTableSample-Info.plist │ ├── HorizontalScrollableTableSample-Prefix.pch │ ├── HorizontalScrollableTableSample.xcdatamodeld │ ├── .xccurrentversion │ └── HorizontalScrollableTableSample.xcdatamodel │ │ ├── elements │ │ └── layout │ ├── HorizontalScrollableTableSampleAppDelegate.h │ ├── HorizontalScrollableTableSampleAppDelegate.m │ ├── RootViewController.h │ ├── RootViewController.m │ ├── en.lproj │ ├── InfoPlist.strings │ ├── MainWindow.xib │ └── RootViewController.xib │ └── main.m ├── HorizontalScrollableUITableView ├── Classes │ ├── HorizontalScrollableUITableViewAppDelegate.h │ ├── HorizontalScrollableUITableViewAppDelegate.m │ ├── HorizontalScrollableUITableViewViewController.h │ ├── HorizontalScrollableUITableViewViewController.m │ ├── InnerView.h │ └── InnerView.m ├── HorizontalScrollableUITableView-Info.plist ├── HorizontalScrollableUITableView.xcodeproj │ └── project.pbxproj ├── HorizontalScrollableUITableViewViewController.xib ├── HorizontalScrollableUITableView_Prefix.pch ├── MainWindow.xib └── main.m ├── IBOutletCollectionSample ├── Classes │ ├── IBOutletCollectionSampleAppDelegate.h │ ├── IBOutletCollectionSampleAppDelegate.m │ ├── IBOutletCollectionSampleViewController.h │ └── IBOutletCollectionSampleViewController.m ├── IBOutletCollectionSample-Info.plist ├── IBOutletCollectionSample.xcodeproj │ └── project.pbxproj ├── IBOutletCollectionSampleViewController.xib ├── IBOutletCollectionSample_Prefix.pch ├── MainWindow.xib └── main.m ├── ImageViewTap ├── ImageViewTap.xcodeproj │ └── project.pbxproj └── ImageViewTap │ ├── ImageViewTap-Info.plist │ ├── ImageViewTap-Prefix.pch │ ├── ImageViewTapAppDelegate.h │ ├── ImageViewTapAppDelegate.m │ ├── ImageViewTapViewController.h │ ├── ImageViewTapViewController.m │ ├── ThumbnailView.h │ ├── ThumbnailView.m │ ├── en.lproj │ ├── ImageViewTapViewController.xib │ ├── InfoPlist.strings │ └── MainWindow.xib │ ├── image01.jpg │ ├── image01s.jpg │ ├── image02.jpg │ ├── image02s.jpg │ ├── image03.jpg │ ├── image03s.jpg │ ├── image04.jpg │ ├── image04s.jpg │ ├── image05.jpg │ ├── image05s.jpg │ ├── image06.jpg │ ├── image06s.jpg │ ├── image07.jpg │ ├── image07s.jpg │ ├── image08.jpg │ ├── image08s.jpg │ └── main.m ├── JSONFrameworkSample ├── Classes │ ├── JSONFrameworkSampleAppDelegate.h │ ├── JSONFrameworkSampleAppDelegate.m │ ├── JSONFrameworkSampleViewController.h │ └── JSONFrameworkSampleViewController.m ├── JSON.h ├── JSONFrameworkSample-Info.plist ├── JSONFrameworkSample.xcodeproj │ └── project.pbxproj ├── JSONFrameworkSampleViewController.xib ├── JSONFrameworkSample_Prefix.pch ├── MainWindow.xib ├── NSObject+SBJSON.h ├── NSObject+SBJSON.m ├── NSString+SBJSON.h ├── NSString+SBJSON.m ├── SBJsonBase.h ├── SBJsonBase.m ├── SBJsonParser.h ├── SBJsonParser.m ├── SBJsonWriter.h ├── SBJsonWriter.m └── main.m ├── KeyChainApp-1 ├── Classes │ ├── KeyChainApp_1AppDelegate.h │ ├── KeyChainApp_1AppDelegate.m │ ├── KeyChainApp_1ViewController.h │ └── KeyChainApp_1ViewController.m ├── Entitlements.plist ├── KeyChainApp-1.xcodeproj │ └── project.pbxproj ├── KeyChainApp_1-Info.plist ├── KeyChainApp_1ViewController.xib ├── KeyChainApp_1_Prefix.pch ├── MainWindow.xib └── main.m ├── KeyChainApp-2 ├── Classes │ ├── KeyChainApp_2AppDelegate.h │ ├── KeyChainApp_2AppDelegate.m │ ├── KeyChainApp_2ViewController.h │ └── KeyChainApp_2ViewController.m ├── Entitlements.plist ├── KeyChainApp-2.xcodeproj │ └── project.pbxproj ├── KeyChainApp_2-Info.plist ├── KeyChainApp_2ViewController.xib ├── KeyChainApp_2_Prefix.pch ├── MainWindow.xib └── main.m ├── KeyChainsSampe ├── Classes │ ├── KeyChainsSampeAppDelegate.h │ ├── KeyChainsSampeAppDelegate.m │ ├── KeyChainsSampeViewController.h │ └── KeyChainsSampeViewController.m ├── KeyChainsSampe-Info.plist ├── KeyChainsSampe.xcodeproj │ └── project.pbxproj ├── KeyChainsSampeViewController.xib ├── KeyChainsSampe_Prefix.pch ├── MainWindow.xib └── main.m ├── LargestManagedObject ├── Classes │ ├── LargestManagedObjectAppDelegate.h │ ├── LargestManagedObjectAppDelegate.m │ ├── RootViewController.h │ └── RootViewController.m ├── LargestManagedObject-Info.plist ├── LargestManagedObject.xcdatamodel │ ├── elements │ └── layout ├── LargestManagedObject.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── hashi.xcuserdatad │ │ │ └── WorkspaceState.xcuserstate │ └── xcuserdata │ │ └── hashi.xcuserdatad │ │ └── xcschemes │ │ ├── LargestManagedObject.xcscheme │ │ └── xcschememanagement.plist ├── LargestManagedObject_Prefix.pch ├── en.lproj │ ├── InfoPlist.strings │ ├── MainWindow.xib │ └── RootViewController.xib └── main.m ├── LayerShadowSample ├── LayerShadowSample.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── hashi.xcuserdatad │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ └── WorkspaceSettings.xcsettings │ └── xcuserdata │ │ └── hashi.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints.xcbkptlist │ │ └── xcschemes │ │ ├── LayerShadowSample.xcscheme │ │ └── xcschememanagement.plist └── LayerShadowSample │ ├── LayerShadowSample-Info.plist │ ├── LayerShadowSample-Prefix.pch │ ├── LayerShadowSampleAppDelegate.h │ ├── LayerShadowSampleAppDelegate.m │ ├── LayerShadowSampleViewController.h │ ├── LayerShadowSampleViewController.m │ ├── en.lproj │ ├── InfoPlist.strings │ ├── LayerShadowSampleViewController.xib │ └── MainWindow.xib │ ├── main.m │ └── sample.jpg ├── LazyStartSample ├── Classes │ ├── LazyStartSampleAppDelegate.h │ ├── LazyStartSampleAppDelegate.m │ ├── LazyStartSampleViewController.h │ ├── LazyStartSampleViewController.m │ ├── SubViewController.h │ ├── SubViewController.m │ └── SubViewController.xib ├── LazyStartSample-Info.plist ├── LazyStartSample.xcodeproj │ └── project.pbxproj ├── LazyStartSampleViewController.xib ├── LazyStartSample_Prefix.pch ├── MainWindow.xib └── main.m ├── LocationReseacher ├── LocationReseacher.xcodeproj │ └── project.pbxproj ├── LocationReseacher │ ├── Gps, Location, Maps, Marker icon | Icon Search Engine.webloc │ ├── LocationReseacher-Info.plist │ ├── LocationReseacher-Prefix.pch │ ├── LocationReseacherAppDelegate.h │ ├── LocationReseacherAppDelegate.m │ ├── LocationReseacherViewController.h │ ├── LocationReseacherViewController.m │ ├── en.lproj │ │ ├── InfoPlist.strings │ │ ├── LocationReseacherViewController.xib │ │ └── MainWindow.xib │ └── main.m └── gps, location, maps, marker icon.png ├── LockSample ├── LockSample.xcodeproj │ └── project.pbxproj └── LockSample │ ├── LockSample-Info.plist │ ├── LockSample-Prefix.pch │ ├── LockSampleAppDelegate.h │ ├── LockSampleAppDelegate.m │ ├── en.lproj │ ├── InfoPlist.strings │ └── MainWindow.xib │ └── main.m ├── LogicTestSample ├── LogicTestSample.xcodeproj │ └── project.pbxproj ├── LogicTestSample_Prefix.pch ├── LogicTests-Info.plist ├── LogicTests.h ├── LogicTests.m ├── SampleClass.h └── SampleClass.m ├── MobileNumbersSample ├── MobileNumbersSample.xcodeproj │ └── project.pbxproj └── MobileNumbersSample │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── MobileNumbersSample-Info.plist │ ├── MobileNumbersSample-Prefix.pch │ ├── UIDevice-IOKitExtensions.h │ ├── UIDevice-IOKitExtensions.m │ ├── ViewController.h │ ├── ViewController.m │ ├── en.lproj │ ├── InfoPlist.strings │ └── ViewController.xib │ └── main.m ├── MovieSample ├── MovieSample.xcodeproj │ └── project.pbxproj └── MovieSample │ ├── MovieSample-Info.plist │ ├── MovieSample-Prefix.pch │ ├── MovieSampleAppDelegate.h │ ├── MovieSampleAppDelegate.m │ ├── RootViewController.h │ ├── RootViewController.m │ ├── RootViewController.xib │ ├── en.lproj │ └── InfoPlist.strings │ ├── iPad │ ├── MovieSampleAppDelegate_iPad.h │ ├── MovieSampleAppDelegate_iPad.m │ └── en.lproj │ │ └── MainWindow_iPad.xib │ ├── iPhone │ ├── MovieSampleAppDelegate_iPhone.h │ ├── MovieSampleAppDelegate_iPhone.m │ └── en.lproj │ │ └── MainWindow_iPhone.xib │ ├── main.m │ └── sample.mov ├── MultiNavigatorButtons ├── MultiNavigatorButtons.xcodeproj │ └── project.pbxproj └── MultiNavigatorButtons │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── DataViewController.h │ ├── DataViewController.m │ ├── DetailViewController.h │ ├── DetailViewController.m │ ├── MasterViewController.h │ ├── MasterViewController.m │ ├── ModelController.h │ ├── ModelController.m │ ├── MultiNavigatorButtons-Info.plist │ ├── MultiNavigatorButtons-Prefix.pch │ ├── RootViewController.h │ ├── RootViewController.m │ ├── ViewController.h │ ├── ViewController.m │ ├── en.lproj │ ├── DetailViewController.xib │ ├── InfoPlist.strings │ ├── MainStoryboard.storyboard │ ├── MasterViewController.xib │ └── ViewController.xib │ └── main.m ├── NSFetchedResultControllerDelegateSample ├── Classes │ ├── NSFetchedResultControllerDelegateSampleAppDelegate.h │ ├── NSFetchedResultControllerDelegateSampleAppDelegate.m │ ├── RootViewController.h │ └── RootViewController.m ├── NSFetchedResultControllerDelegateSample-Info.plist ├── NSFetchedResultControllerDelegateSample.xcdatamodel │ ├── elements │ └── layout ├── NSFetchedResultControllerDelegateSample.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── hashi.xcuserdatad │ │ │ └── WorkspaceState.xcuserstate │ └── xcuserdata │ │ └── hashi.xcuserdatad │ │ └── xcschemes │ │ ├── NSFetchedResultControllerDelegateSample.xcscheme │ │ └── xcschememanagement.plist ├── NSFetchedResultControllerDelegateSample_Prefix.pch ├── SubViewController.h ├── SubViewController.m ├── SubViewController.xib ├── en.lproj │ ├── InfoPlist.strings │ ├── MainWindow.xib │ └── RootViewController.xib └── main.m ├── NSTimerBlocks ├── Classes │ ├── NSTimerBlocksAppDelegate.h │ ├── NSTimerBlocksAppDelegate.m │ ├── NSTimerBlocksViewController.h │ ├── NSTimerBlocksViewController.m │ ├── NSTimer_Extension.h │ └── NSTimer_Extension.m ├── MainWindow.xib ├── NSTimerBlocks-Info.plist ├── NSTimerBlocks.xcodeproj │ └── project.pbxproj ├── NSTimerBlocksViewController.xib ├── NSTimerBlocks_Prefix.pch └── main.m ├── NetworkReachable ├── Classes │ ├── NetworkReachability.h │ ├── NetworkReachability.m │ ├── NetworkReachableAppDelegate.h │ ├── NetworkReachableAppDelegate.m │ ├── NetworkReachableViewController.h │ └── NetworkReachableViewController.m ├── MainWindow.xib ├── NetworkReachable-Info.plist ├── NetworkReachable.xcodeproj │ └── project.pbxproj ├── NetworkReachableViewController.xib ├── NetworkReachable_Prefix.pch └── main.m ├── ObjcNewSample ├── Classes │ ├── ObjcNewSampleAppDelegate.h │ ├── ObjcNewSampleAppDelegate.m │ ├── ObjcNewSampleViewController.h │ ├── ObjcNewSampleViewController.m │ ├── SampleModel.h │ └── SampleModel.m ├── MainWindow.xib ├── ObjcNewSample-Info.plist ├── ObjcNewSample.xcodeproj │ └── project.pbxproj ├── ObjcNewSampleViewController.xib ├── ObjcNewSample_Prefix.pch └── main.m ├── PerformSelectorAfterDelay ├── Classes │ ├── NSObject_Extension.h │ ├── NSObject_Extension.m │ ├── PerformSelectorAfterDelayAppDelegate.h │ ├── PerformSelectorAfterDelayAppDelegate.m │ ├── PerformSelectorAfterDelayViewController.h │ └── PerformSelectorAfterDelayViewController.m ├── MainWindow.xib ├── PerformSelectorAfterDelay-Info.plist ├── PerformSelectorAfterDelay.xcodeproj │ └── project.pbxproj ├── PerformSelectorAfterDelayViewController.xib ├── PerformSelectorAfterDelay_Prefix.pch └── main.m ├── PopupTableSample ├── LKPopupMenuController.h ├── LKPopupMenuController.m ├── PopupTableSample.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── hashi.xcuserdatad │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ └── WorkspaceSettings.xcsettings │ └── xcuserdata │ │ └── hashi.xcuserdatad │ │ └── xcschemes │ │ ├── PopupTableSample.xcscheme │ │ └── xcschememanagement.plist └── PopupTableSample │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── PopupTableSample-Info.plist │ ├── PopupTableSample-Prefix.pch │ ├── ViewController.h │ ├── ViewController.m │ ├── en.lproj │ ├── InfoPlist.strings │ ├── ViewController_iPad.xib │ └── ViewController_iPhone.xib │ └── main.m ├── PrettyFunction ├── Classes │ ├── PrettyFunctionAppDelegate.h │ ├── PrettyFunctionAppDelegate.m │ ├── ViewController.h │ └── ViewController.m ├── MainWindow.xib ├── PrettyFunction-Info.plist ├── PrettyFunction.xcodeproj │ └── project.pbxproj ├── PrettyFunctionViewController.xib ├── PrettyFunction_Prefix.pch └── main.m ├── ProgressBarOnAlertView ├── Classes │ ├── ProgressBarOnAlertViewAppDelegate.h │ ├── ProgressBarOnAlertViewAppDelegate.m │ ├── ProgressBarOnAlertViewViewController.h │ └── ProgressBarOnAlertViewViewController.m ├── MainWindow.xib ├── ProgressBarOnAlertView-Info.plist ├── ProgressBarOnAlertView.xcodeproj │ └── project.pbxproj ├── ProgressBarOnAlertViewViewController.xib ├── ProgressBarOnAlertView_Prefix.pch └── main.m ├── README ├── ResponderChainStudy ├── ResponderChainStudy.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── hashi.xcuserdatad │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ └── WorkspaceSettings.xcsettings │ └── xcuserdata │ │ └── hashi.xcuserdatad │ │ └── xcschemes │ │ ├── ResponderChainStudy.xcscheme │ │ └── xcschememanagement.plist └── ResponderChainStudy │ ├── ResponderChainStudy-Info.plist │ ├── ResponderChainStudy-Prefix.pch │ ├── ResponderChainStudyAppDelegate.h │ ├── ResponderChainStudyAppDelegate.m │ ├── ResponderChainStudyViewController.h │ ├── ResponderChainStudyViewController.m │ ├── en.lproj │ ├── InfoPlist.strings │ ├── MainWindow.xib │ └── ResponderChainStudyViewController.xib │ └── main.m ├── RotateImageSample ├── RotateImageSample.xcodeproj │ └── project.pbxproj └── RotateImageSample │ ├── RotateImageSample-Info.plist │ ├── RotateImageSample-Prefix.pch │ ├── RotateImageSampleAppDelegate.h │ ├── RotateImageSampleAppDelegate.m │ ├── RotateImageSampleViewController.h │ ├── RotateImageSampleViewController.m │ ├── arrow_up.png │ ├── en.lproj │ ├── InfoPlist.strings │ ├── MainWindow.xib │ └── RotateImageSampleViewController.xib │ └── main.m ├── SQLiteImporter ├── SQLiteImporter.xcodeproj │ └── project.pbxproj ├── SQLiteImporter │ ├── RootViewController.h │ ├── RootViewController.m │ ├── SQLiteImporter-Info.plist │ ├── SQLiteImporter-Prefix.pch │ ├── SQLiteImporter.h │ ├── SQLiteImporter.m │ ├── SQLiteImporterAppDelegate.h │ ├── SQLiteImporterAppDelegate.m │ ├── en.lproj │ │ ├── InfoPlist.strings │ │ ├── MainWindow.xib │ │ └── RootViewController.xib │ └── main.m └── SQLiteImporterTests │ ├── SQLiteImporterTests-Info.plist │ ├── SQLiteImporterTests-Prefix.pch │ ├── SQLiteImporterTests.h │ ├── SQLiteImporterTests.m │ └── en.lproj │ └── InfoPlist.strings ├── SQLiteSample ├── SQLiteSample.xcodeproj │ └── project.pbxproj └── SQLiteSample │ ├── RootViewController.h │ ├── RootViewController.m │ ├── SQLiteManager.h │ ├── SQLiteManager.m │ ├── SQLiteSample-Info.plist │ ├── SQLiteSample-Prefix.pch │ ├── SQLiteSampleAppDelegate.h │ ├── SQLiteSampleAppDelegate.m │ ├── Table.sql │ ├── access_log.db │ ├── en.lproj │ ├── InfoPlist.strings │ ├── MainWindow.xib │ └── RootViewController.xib │ └── main.m ├── SampleKit ├── Headers │ ├── NSString+Extension.h │ └── SampleClass.h ├── Info.plist ├── NSString+Extension.m ├── SampleClass.m ├── SampleKit.xcodeproj │ └── project.pbxproj └── SampleKit_Prefix.pch ├── SampleKitClient ├── Classes │ ├── SampleKitClientAppDelegate.h │ ├── SampleKitClientAppDelegate.m │ ├── SampleKitClientViewController.h │ └── SampleKitClientViewController.m ├── MainWindow.xib ├── SampleKitClient-Info.plist ├── SampleKitClient.xcodeproj │ └── project.pbxproj ├── SampleKitClientViewController.xib ├── SampleKitClient_Prefix.pch └── main.m ├── SampleLibrary ├── Info.plist ├── SampleClass.h ├── SampleClass.m ├── SampleLibrary.xcodeproj │ └── project.pbxproj ├── SampleLibrary_Prefix.pch └── Untitled-Info.plist ├── ScrollViewPaging ├── Classes │ ├── ScrollViewPagingAppDelegate.h │ ├── ScrollViewPagingAppDelegate.m │ ├── ScrollViewPagingViewController.h │ └── ScrollViewPagingViewController.m ├── CustomView.h ├── CustomView.m ├── MainWindow.xib ├── ScrollViewPaging-Info.plist ├── ScrollViewPaging.xcodeproj │ └── project.pbxproj ├── ScrollViewPagingViewController.xib ├── ScrollViewPaging_Prefix.pch └── main.m ├── ScrollViewZooming ├── Classes │ ├── ScrollViewZoomingAppDelegate.h │ ├── ScrollViewZoomingAppDelegate.m │ ├── ScrollViewZoomingViewController.h │ └── ScrollViewZoomingViewController.m ├── MainWindow.xib ├── ScrollViewZooming-Info.plist ├── ScrollViewZooming.xcodeproj │ └── project.pbxproj ├── ScrollViewZoomingViewController.xib ├── ScrollViewZooming_Prefix.pch ├── main.m └── sample.png ├── SearchSample ├── Classes │ ├── CustomCell.h │ ├── CustomCell.m │ ├── RootViewController.h │ ├── RootViewController.m │ ├── SearchSampleAppDelegate.h │ └── SearchSampleAppDelegate.m ├── MainWindow.xib ├── RootViewController.xib ├── SearchSample-Info.plist ├── SearchSample.xcdatamodeld │ ├── .xccurrentversion │ └── SearchSample.xcdatamodel │ │ ├── elements │ │ └── layout ├── SearchSample.xcodeproj │ └── project.pbxproj ├── SearchSample_Prefix.pch └── main.m ├── SoundSamples ├── AIFF_BEI16.aif ├── AIFF_BEI16@22050.aif ├── AIFF_itunes.aif ├── CAFF_LEI16.caf ├── CAFF_LEI16@22050.caf ├── Classes │ ├── SoundSamplesAppDelegate.h │ ├── SoundSamplesAppDelegate.m │ ├── SoundSamplesViewController.h │ └── SoundSamplesViewController.m ├── MP3_original.mp3 ├── MainWindow.xib ├── SoundSamples-Info.plist ├── SoundSamples.xcodeproj │ └── project.pbxproj ├── SoundSamplesViewController.xib ├── SoundSamples_Prefix.pch └── main.m ├── SplitViewBaseSample ├── Classes │ ├── DetailViewController.h │ ├── DetailViewController.m │ ├── RootViewController.h │ ├── RootViewController.m │ ├── SplitViewBaseSampleAppDelegate.h │ ├── SplitViewBaseSampleAppDelegate.m │ ├── SubViewController.h │ ├── SubViewController.m │ └── SubViewController.xib ├── DetailView.xib ├── MainWindow.xib ├── SplitViewBaseSample-Info.plist ├── SplitViewBaseSample.xcodeproj │ └── project.pbxproj ├── SplitViewBaseSample_Prefix.pch └── main.m ├── SplitViewSample ├── SplitViewSample.xcodeproj │ └── project.pbxproj └── SplitViewSample │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── DetailViewController.h │ ├── DetailViewController.m │ ├── MasterViewController.h │ ├── MasterViewController.m │ ├── SplitViewSample-Info.plist │ ├── SplitViewSample-Prefix.pch │ ├── en.lproj │ ├── DetailViewController_iPad.xib │ ├── DetailViewController_iPhone.xib │ ├── InfoPlist.strings │ ├── MasterViewController_iPad.xib │ └── MasterViewController_iPhone.xib │ └── main.m ├── StaticLibrarySample ├── StaticLibrarySample.xcodeproj │ └── project.pbxproj ├── StaticLibrarySample_Prefix.pch ├── XCSampleClass.h └── XCSampleClass.m ├── StudyUnitTest ├── SampleClass.h ├── SampleClass.m ├── SampleClassTest.h ├── SampleClassTest.m ├── SecondTest.h ├── SecondTest.m ├── StudyUnitTest.xcodeproj │ └── project.pbxproj ├── StudyUnitTest_Prefix.pch └── Unit Test-Info.plist ├── TableHeader ├── Classes │ ├── TableHeaderAppDelegate.h │ ├── TableHeaderAppDelegate.m │ ├── TableHeaderViewController.h │ └── TableHeaderViewController.m ├── MainWindow.xib ├── TableHeader-Info.plist ├── TableHeader.xcodeproj │ └── project.pbxproj ├── TableHeaderViewController.xib ├── TableHeader_Prefix.pch └── main.m ├── TaskSample ├── TaskSample.xcodeproj │ └── project.pbxproj └── TaskSample │ ├── TaskSample-Info.plist │ ├── TaskSample-Prefix.pch │ ├── TaskSampleAppDelegate.h │ ├── TaskSampleAppDelegate.m │ ├── en.lproj │ ├── InfoPlist.strings │ └── MainWindow.xib │ └── main.m ├── TextInputStudy ├── TextInputStudy.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── hashi.xcuserdatad │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ └── WorkspaceSettings.xcsettings │ └── xcuserdata │ │ └── hashi.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints.xcbkptlist │ │ └── xcschemes │ │ ├── TextInputStudy.xcscheme │ │ └── xcschememanagement.plist └── TextInputStudy │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── TextInputStudy-Info.plist │ ├── TextInputStudy-Prefix.pch │ ├── ViewController.h │ ├── ViewController.m │ ├── en.lproj │ ├── InfoPlist.strings │ ├── ViewController_iPad.xib │ └── ViewController_iPhone.xib │ └── main.m ├── TextViewStudy ├── TextViewStudy.xcodeproj │ └── project.pbxproj └── TextViewStudy │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── TextViewStudy-Info.plist │ ├── TextViewStudy-Prefix.pch │ ├── ViewController.h │ ├── ViewController.m │ ├── en.lproj │ ├── InfoPlist.strings │ ├── ViewController_iPad.xib │ └── ViewController_iPhone.xib │ └── main.m ├── TransitionSample ├── Classes │ ├── TransitionSampleAppDelegate.h │ ├── TransitionSampleAppDelegate.m │ ├── TransitionSampleViewController.h │ └── TransitionSampleViewController.m ├── MainWindow.xib ├── TransitionSample-Info.plist ├── TransitionSample.xcodeproj │ └── project.pbxproj ├── TransitionSampleViewController.xib ├── TransitionSample_Prefix.pch ├── image01.jpg ├── image02.jpg ├── image03.jpg ├── image04.jpg ├── image05.jpg ├── image06.jpg ├── image07.jpg ├── image08.jpg ├── link.webloc └── main.m ├── TransitionSample2 ├── Classes │ ├── TransitionSample2AppDelegate.h │ ├── TransitionSample2AppDelegate.m │ ├── TransitionSample2ViewController.h │ └── TransitionSample2ViewController.m ├── MainWindow.xib ├── TransitionSample2-Info.plist ├── TransitionSample2.xcodeproj │ └── project.pbxproj ├── TransitionSample2ViewController.xib ├── TransitionSample2_Prefix.pch ├── image01.jpg ├── image02.jpg ├── image03.jpg ├── image04.jpg ├── image05.jpg ├── image06.jpg ├── image07.jpg ├── image08.jpg ├── link.webloc └── main.m ├── UIApplicationNotification ├── Classes │ ├── UIApplicationNotificationAppDelegate.h │ ├── UIApplicationNotificationAppDelegate.m │ ├── UIApplicationNotificationViewController.h │ └── UIApplicationNotificationViewController.m ├── MainWindow.xib ├── UIApplicationNotification-Info.plist ├── UIApplicationNotification.xcodeproj │ └── project.pbxproj ├── UIApplicationNotificationViewController.xib ├── UIApplicationNotification_Prefix.pch └── main.m ├── UIDeviceSample ├── Classes │ ├── RootViewController.h │ ├── RootViewController.m │ ├── UIDeviceSampleAppDelegate.h │ └── UIDeviceSampleAppDelegate.m ├── MainWindow.xib ├── RootViewController.xib ├── UIDeviceSample-Info.plist ├── UIDeviceSample.xcodeproj │ └── project.pbxproj ├── UIDeviceSample_Prefix.pch └── main.m ├── UUTypeSample ├── Classes │ ├── UTTypeUtility.h │ ├── UTTypeUtility.m │ ├── UUTypeSampleAppDelegate.h │ ├── UUTypeSampleAppDelegate.m │ ├── UUTypeSampleViewController.h │ └── UUTypeSampleViewController.m ├── MainWindow.xib ├── UUTypeSample-Info.plist ├── UUTypeSample.xcodeproj │ └── project.pbxproj ├── UUTypeSampleViewController.xib ├── UUTypeSample_Prefix.pch └── main.m ├── UniversalStaticLibrary ├── UniversalStaticLibrary.xcodeproj │ └── project.pbxproj ├── UniversalStaticLibrary_Prefix.pch ├── XCSampleClass.h └── XCSampleClass.m ├── UniversalStaticLibraryClient ├── Classes │ ├── UniversalStaticLibraryClientAppDelegate.h │ ├── UniversalStaticLibraryClientAppDelegate.m │ ├── UniversalStaticLibraryClientViewController.h │ ├── UniversalStaticLibraryClientViewController.m │ └── XCSampleClass.h ├── MainWindow.xib ├── UniversalStaticLibrary.a ├── UniversalStaticLibraryClient-Info.plist ├── UniversalStaticLibraryClient.xcodeproj │ └── project.pbxproj ├── UniversalStaticLibraryClientViewController.xib ├── UniversalStaticLibraryClient_Prefix.pch └── main.m ├── UsingStaticLibrarySample ├── Classes │ ├── UsingStaticLibrarySampleAppDelegate.h │ ├── UsingStaticLibrarySampleAppDelegate.m │ ├── UsingStaticLibrarySampleViewController.h │ └── UsingStaticLibrarySampleViewController.m ├── MainWindow.xib ├── UsingStaticLibrarySample-Info.plist ├── UsingStaticLibrarySample.xcodeproj │ └── project.pbxproj ├── UsingStaticLibrarySampleViewController.xib ├── UsingStaticLibrarySample_Prefix.pch └── main.m ├── ViewControllerMemorySample ├── Classes │ ├── RootViewController.h │ ├── RootViewController.m │ ├── SubSubViewController.h │ ├── SubSubViewController.m │ ├── SubSubViewController.xib │ ├── SubViewController.h │ ├── SubViewController.m │ ├── SubViewController.xib │ ├── ViewControllerMemorySampleAppDelegate.h │ └── ViewControllerMemorySampleAppDelegate.m ├── MainWindow.xib ├── RootViewController.xib ├── ViewControllerMemorySample-Info.plist ├── ViewControllerMemorySample.xcodeproj │ └── project.pbxproj ├── ViewControllerMemorySample_Prefix.pch ├── image01.jpg ├── image03.jpg └── main.m ├── WaitScreenSample ├── Classes │ ├── WaitScreenSampleAppDelegate.h │ ├── WaitScreenSampleAppDelegate.m │ ├── WaitScreenSampleViewController.h │ └── WaitScreenSampleViewController.m ├── MainWindow.xib ├── WaitScreenSample-Info.plist ├── WaitScreenSample.xcodeproj │ └── project.pbxproj ├── WaitScreenSampleViewController.xib ├── WaitScreenSample_Prefix.pch └── main.m ├── XcodeMacro ├── Classes │ ├── ViewController.h │ ├── ViewController.m │ ├── XcodeMacroAppDelegate.h │ └── XcodeMacroAppDelegate.m ├── MainWindow.xib ├── XcodeMacro-Info.plist ├── XcodeMacro.xcodeproj │ └── project.pbxproj ├── XcodeMacroViewController.xib ├── XcodeMacro_Prefix.pch └── main.m ├── ftsSample ├── ftsSample.xcodeproj │ └── project.pbxproj └── ftsSample │ ├── en.lproj │ ├── InfoPlist.strings │ └── MainWindow.xib │ ├── ftsSample-Info.plist │ ├── ftsSample-Prefix.pch │ ├── ftsSampleAppDelegate.h │ ├── ftsSampleAppDelegate.m │ └── main.m └── j.rb /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.swp 3 | *~.nib 4 | 5 | build/ 6 | 7 | *.pbxuser 8 | *.perspective 9 | *.perspectivev3 10 | *.mode1v3 11 | *.mode2v3 12 | -------------------------------------------------------------------------------- /AVCaptreSample/AVCaptreSample/AVCaptreSample-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'AVCaptreSample' target in the 'AVCaptreSample' project 3 | // 4 | 5 | #import 6 | 7 | #ifndef __IPHONE_3_0 8 | #warning "This project uses features only available in iPhone SDK 3.0 and later." 9 | #endif 10 | 11 | #ifdef __OBJC__ 12 | #import 13 | #import 14 | #endif 15 | -------------------------------------------------------------------------------- /AVCaptreSample/AVCaptreSample/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /AVCaptreSample/AVCaptreSample/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // AVCaptreSample 4 | // 5 | // Created by Hiroshi Hashiguchi on 11/04/08. 6 | // Copyright 2011 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) 12 | { 13 | NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; 14 | int retVal = UIApplicationMain(argc, argv, nil, nil); 15 | [pool release]; 16 | return retVal; 17 | } 18 | -------------------------------------------------------------------------------- /AccelerometerSample/AccelerometerSample/AccelerometerSample-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'AccelerometerSample' target in the 'AccelerometerSample' project 3 | // 4 | 5 | #import 6 | 7 | #ifndef __IPHONE_4_0 8 | #warning "This project uses features only available in iOS SDK 4.0 and later." 9 | #endif 10 | 11 | #ifdef __OBJC__ 12 | #import 13 | #import 14 | #endif 15 | -------------------------------------------------------------------------------- /AccelerometerSample/AccelerometerSample/ViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.h 3 | // AccelerometerSample 4 | // 5 | // Created by 橋口 湖 on 4/23/12. 6 | // Copyright (c) 2012 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface ViewController : UIViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /AccelerometerSample/AccelerometerSample/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /AccelerometerSample/AccelerometerSample/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // AccelerometerSample 4 | // 5 | // Created by 橋口 湖 on 4/23/12. 6 | // Copyright (c) 2012 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | #import "AppDelegate.h" 12 | 13 | int main(int argc, char *argv[]) 14 | { 15 | @autoreleasepool { 16 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /ActionSheetUsingBlocks/ActionSheetUsingBlocks_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'ActionSheetUsingBlocks' target in the 'ActionSheetUsingBlocks' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #import 8 | #endif 9 | -------------------------------------------------------------------------------- /ActionSheetUsingBlocks/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // ActionSheetUsingBlocks 4 | // 5 | // Created by Hiroshi Hashiguchi on 10/07/26. 6 | // Copyright 2010. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) { 12 | 13 | NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; 14 | int retVal = UIApplicationMain(argc, argv, nil, nil); 15 | [pool release]; 16 | return retVal; 17 | } 18 | -------------------------------------------------------------------------------- /ApplicationDelegateSample/ApplicationDelegateSample_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'ApplicationDelegateSample' target in the 'ApplicationDelegateSample' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #import 8 | #endif 9 | -------------------------------------------------------------------------------- /ApplicationDelegateSample/Classes/ApplicationDelegateSampleViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // ApplicationDelegateSampleViewController.h 3 | // ApplicationDelegateSample 4 | // 5 | // Created by Hiroshi Hashiguchi on 10/09/13. 6 | // Copyright 2010. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface ApplicationDelegateSampleViewController : UIViewController { 12 | 13 | } 14 | 15 | @end 16 | 17 | -------------------------------------------------------------------------------- /ApplicationDelegateSample/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // ApplicationDelegateSample 4 | // 5 | // Created by Hiroshi Hashiguchi on 10/09/13. 6 | // Copyright 2010. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) { 12 | 13 | NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; 14 | int retVal = UIApplicationMain(argc, argv, nil, nil); 15 | [pool release]; 16 | return retVal; 17 | } 18 | -------------------------------------------------------------------------------- /ApplicationTestSample/AppTests.m: -------------------------------------------------------------------------------- 1 | // 2 | // AppTests.m 3 | // ApplicationTestSample 4 | // 5 | // Created by Hiroshi Hashiguchi on 10/11/23. 6 | // Copyright 2010 . All rights reserved. 7 | // 8 | 9 | #import "AppTests.h" 10 | 11 | 12 | @implementation AppTests 13 | 14 | - (void) testFail { 15 | STFail(@"Must fail to succeed."); 16 | } 17 | 18 | @end 19 | -------------------------------------------------------------------------------- /ApplicationTestSample/ApplicationTestSample_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'ApplicationTestSample' target in the 'ApplicationTestSample' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #import 8 | #endif 9 | -------------------------------------------------------------------------------- /ApplicationTestSample/Classes/ApplicationTestSampleViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // ApplicationTestSampleViewController.h 3 | // ApplicationTestSample 4 | // 5 | // Created by Hiroshi Hashiguchi on 10/11/23. 6 | // Copyright 2010 . All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface ApplicationTestSampleViewController : UIViewController { 12 | 13 | } 14 | 15 | @end 16 | 17 | -------------------------------------------------------------------------------- /ApplicationTestSample/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // ApplicationTestSample 4 | // 5 | // Created by Hiroshi Hashiguchi on 10/11/23. 6 | // Copyright 2010 . All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) { 12 | 13 | NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; 14 | int retVal = UIApplicationMain(argc, argv, nil, nil); 15 | [pool release]; 16 | return retVal; 17 | } 18 | -------------------------------------------------------------------------------- /AutoreleasePoolTest/AutoreleasePoolTest_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'AutoreleasePoolTest' target in the 'AutoreleasePoolTest' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #import 8 | #endif 9 | -------------------------------------------------------------------------------- /AutoreleasePoolTest/Classes/AutoreleasePoolTestViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // AutoreleasePoolTestViewController.h 3 | // AutoreleasePoolTest 4 | // 5 | // Created by Hiroshi Hashiguchi on 10/10/15. 6 | // Copyright 2010 . All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface AutoreleasePoolTestViewController : UIViewController { 12 | 13 | } 14 | 15 | @end 16 | 17 | -------------------------------------------------------------------------------- /AutoreleasePoolTest/image01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/AutoreleasePoolTest/image01.jpg -------------------------------------------------------------------------------- /AutoreleasePoolTest/image02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/AutoreleasePoolTest/image02.jpg -------------------------------------------------------------------------------- /AutoreleasePoolTest/image03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/AutoreleasePoolTest/image03.jpg -------------------------------------------------------------------------------- /AutoreleasePoolTest/image04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/AutoreleasePoolTest/image04.jpg -------------------------------------------------------------------------------- /AutoreleasePoolTest/image05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/AutoreleasePoolTest/image05.jpg -------------------------------------------------------------------------------- /AutoreleasePoolTest/image06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/AutoreleasePoolTest/image06.jpg -------------------------------------------------------------------------------- /AutoreleasePoolTest/image07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/AutoreleasePoolTest/image07.jpg -------------------------------------------------------------------------------- /AutoreleasePoolTest/image08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/AutoreleasePoolTest/image08.jpg -------------------------------------------------------------------------------- /AutoreleasePoolTest/image09.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/AutoreleasePoolTest/image09.jpg -------------------------------------------------------------------------------- /AutoreleasePoolTest/image10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/AutoreleasePoolTest/image10.jpg -------------------------------------------------------------------------------- /AutoreleasePoolTest/image11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/AutoreleasePoolTest/image11.jpg -------------------------------------------------------------------------------- /AutoreleasePoolTest/image12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/AutoreleasePoolTest/image12.jpg -------------------------------------------------------------------------------- /AutoreleasePoolTest/image13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/AutoreleasePoolTest/image13.jpg -------------------------------------------------------------------------------- /AutoreleasePoolTest/image14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/AutoreleasePoolTest/image14.jpg -------------------------------------------------------------------------------- /AutoreleasePoolTest/image15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/AutoreleasePoolTest/image15.jpg -------------------------------------------------------------------------------- /AutoreleasePoolTest/image16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/AutoreleasePoolTest/image16.jpg -------------------------------------------------------------------------------- /AutoreleasePoolTest/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // AutoreleasePoolTest 4 | // 5 | // Created by Hiroshi Hashiguchi on 10/10/15. 6 | // Copyright 2010 . All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) { 12 | 13 | NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; 14 | int retVal = UIApplicationMain(argc, argv, nil, nil); 15 | [pool release]; 16 | return retVal; 17 | } 18 | -------------------------------------------------------------------------------- /BackgroundImage/BackgroundImage.xcdatamodeld/.xccurrentversion: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | _XCCurrentVersionName 6 | BackgroundImage.xcdatamodel 7 | 8 | 9 | -------------------------------------------------------------------------------- /BackgroundImage/BackgroundImage.xcdatamodeld/BackgroundImage.xcdatamodel/elements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/BackgroundImage/BackgroundImage.xcdatamodeld/BackgroundImage.xcdatamodel/elements -------------------------------------------------------------------------------- /BackgroundImage/BackgroundImage.xcdatamodeld/BackgroundImage.xcdatamodel/layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/BackgroundImage/BackgroundImage.xcdatamodeld/BackgroundImage.xcdatamodel/layout -------------------------------------------------------------------------------- /BackgroundImage/BackgroundImage_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'BackgroundImage' target in the 'BackgroundImage' project 3 | // 4 | 5 | #import 6 | 7 | #ifndef __IPHONE_3_0 8 | #warning "This project uses features only available in iPhone SDK 3.0 and later." 9 | #endif 10 | 11 | 12 | #ifdef __OBJC__ 13 | #import 14 | #import 15 | #import 16 | #endif 17 | -------------------------------------------------------------------------------- /BackgroundImage/Classes/SubViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // SubViewController.h 3 | // BackgroundImage 4 | // 5 | // Created by Hiroshi Hashiguchi on 10/07/28. 6 | // Copyright 2010 Hiroshi Hashiguchi. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | 12 | @interface SubViewController : UITableViewController { 13 | 14 | NSArray* array_; 15 | } 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /BackgroundImage/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // BackgroundImage 4 | // 5 | // Created by Hiroshi Hashiguchi on 10/07/28. 6 | // Copyright Hiroshi Hashiguchi 2010. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) { 12 | 13 | NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; 14 | int retVal = UIApplicationMain(argc, argv, nil, nil); 15 | [pool release]; 16 | return retVal; 17 | } 18 | -------------------------------------------------------------------------------- /BackgroundImage/sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/BackgroundImage/sample.jpg -------------------------------------------------------------------------------- /BackgroundQueueSample/BackgroundQueueSample/BackgroundQueueSample-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'BackgroundQueueSample' target in the 'BackgroundQueueSample' project 3 | // 4 | 5 | #import 6 | 7 | #ifndef __IPHONE_3_0 8 | #warning "This project uses features only available in iPhone SDK 3.0 and later." 9 | #endif 10 | 11 | #ifdef __OBJC__ 12 | #import 13 | #import 14 | #endif 15 | -------------------------------------------------------------------------------- /BackgroundQueueSample/BackgroundQueueSample/RootViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // RootViewController.h 3 | // BackgroundQueueSample 4 | // 5 | // Created by Hiroshi Hashiguchi on 11/04/07. 6 | // Copyright 2011 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @class Queue; 12 | @interface RootViewController : UITableViewController { 13 | 14 | } 15 | @property (nonatomic, retain) Queue* queue; 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /BackgroundQueueSample/BackgroundQueueSample/blank24x24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/BackgroundQueueSample/BackgroundQueueSample/blank24x24.png -------------------------------------------------------------------------------- /BackgroundQueueSample/BackgroundQueueSample/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /BackgroundQueueSample/BackgroundQueueSample/load.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/BackgroundQueueSample/BackgroundQueueSample/load.gif -------------------------------------------------------------------------------- /BackgroundQueueSample/BackgroundQueueSample/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // BackgroundQueueSample 4 | // 5 | // Created by Hiroshi Hashiguchi on 11/04/07. 6 | // Copyright 2011 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) 12 | { 13 | NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; 14 | int retVal = UIApplicationMain(argc, argv, nil, nil); 15 | [pool release]; 16 | return retVal; 17 | } 18 | -------------------------------------------------------------------------------- /BluetoothSample/BluetoothSample_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'BluetoothSample' target in the 'BluetoothSample' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #import 8 | #endif 9 | -------------------------------------------------------------------------------- /BluetoothSample/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // BluetoothSample 4 | // 5 | // Created by Hiroshi Hashiguchi on 10/12/14. 6 | // Copyright 2010 . All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) { 12 | 13 | NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; 14 | int retVal = UIApplicationMain(argc, argv, nil, nil); 15 | [pool release]; 16 | return retVal; 17 | } 18 | -------------------------------------------------------------------------------- /CGSample/CGSample/CGSample-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'CGSample' target in the 'CGSample' project 3 | // 4 | 5 | #import 6 | 7 | #ifndef __IPHONE_3_0 8 | #warning "This project uses features only available in iPhone SDK 3.0 and later." 9 | #endif 10 | 11 | #ifdef __OBJC__ 12 | #import 13 | #import 14 | #endif 15 | -------------------------------------------------------------------------------- /CGSample/CGSample/CGSampleViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // CGSampleViewController.h 3 | // CGSample 4 | // 5 | // Created by Hashiguchi Hiroshi on 11/08/24. 6 | // Copyright 2011年 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface CGSampleViewController : UIViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /CGSample/CGSample/SampleView.h: -------------------------------------------------------------------------------- 1 | // 2 | // SampleView.h 3 | // CGSample 4 | // 5 | // Created by Hashiguchi Hiroshi on 11/08/24. 6 | // Copyright 2011年 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface SampleView : UIView 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /CGSample/CGSample/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /CGSample/CGSample/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // CGSample 4 | // 5 | // Created by Hashiguchi Hiroshi on 11/08/24. 6 | // Copyright 2011年 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) 12 | { 13 | NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; 14 | int retVal = UIApplicationMain(argc, argv, nil, nil); 15 | [pool release]; 16 | return retVal; 17 | } 18 | -------------------------------------------------------------------------------- /CGSample/CGSample/sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/CGSample/CGSample/sample.png -------------------------------------------------------------------------------- /CameraSample/CameraSample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /CameraSample/CameraSample.xcodeproj/project.xcworkspace/xcuserdata/hashi.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/CameraSample/CameraSample.xcodeproj/project.xcworkspace/xcuserdata/hashi.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /CameraSample/CameraSample.xcodeproj/xcuserdata/hashi.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /CameraSample/CameraSample/AppDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.h 3 | // CameraSample 4 | // 5 | // Created by Hiroshi Hashiguchi on 11/22/11. 6 | // Copyright (c) 2011 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @class ViewController; 12 | 13 | @interface AppDelegate : UIResponder 14 | 15 | @property (strong, nonatomic) UIWindow *window; 16 | 17 | @property (strong, nonatomic) ViewController *viewController; 18 | 19 | @end 20 | -------------------------------------------------------------------------------- /CameraSample/CameraSample/CameraSample-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'CameraSample' target in the 'CameraSample' project 3 | // 4 | 5 | #import 6 | 7 | #ifndef __IPHONE_4_0 8 | #warning "This project uses features only available in iOS SDK 4.0 and later." 9 | #endif 10 | 11 | #ifdef __OBJC__ 12 | #import 13 | #import 14 | #endif 15 | -------------------------------------------------------------------------------- /CameraSample/CameraSample/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /CameraSample/CameraSample/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // CameraSample 4 | // 5 | // Created by Hiroshi Hashiguchi on 11/22/11. 6 | // Copyright (c) 2011 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | #import "AppDelegate.h" 12 | 13 | int main(int argc, char *argv[]) 14 | { 15 | @autoreleasepool { 16 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CirculationScroll/CirculationScroll_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'CirculationScroll' target in the 'CirculationScroll' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #import 8 | #endif 9 | -------------------------------------------------------------------------------- /CirculationScroll/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/CirculationScroll/background.png -------------------------------------------------------------------------------- /CirculationScroll/blank.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/CirculationScroll/blank.jpg -------------------------------------------------------------------------------- /CirculationScroll/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // CirculationScroll 4 | // 5 | // Created by Hiroshi Hashiguchi on 10/08/17. 6 | // Copyright 2010. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) { 12 | 13 | NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; 14 | int retVal = UIApplicationMain(argc, argv, nil, nil); 15 | [pool release]; 16 | return retVal; 17 | } 18 | -------------------------------------------------------------------------------- /CirculationScroll/simg1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/CirculationScroll/simg1.jpg -------------------------------------------------------------------------------- /CirculationScroll/simg2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/CirculationScroll/simg2.jpg -------------------------------------------------------------------------------- /CirculationScroll/simg3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/CirculationScroll/simg3.jpg -------------------------------------------------------------------------------- /CirculationScroll/simg4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/CirculationScroll/simg4.jpg -------------------------------------------------------------------------------- /CirculationScroll/simg5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/CirculationScroll/simg5.jpg -------------------------------------------------------------------------------- /CirculationScroll/simg6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/CirculationScroll/simg6.jpg -------------------------------------------------------------------------------- /CirculationScroll/simg7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/CirculationScroll/simg7.jpg -------------------------------------------------------------------------------- /CirculationScroll/simg8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/CirculationScroll/simg8.jpg -------------------------------------------------------------------------------- /CirculationScroll/simg9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/CirculationScroll/simg9.jpg -------------------------------------------------------------------------------- /CoreAnimation3DSample/Classes/CoreAnimation3DSampleViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // CoreAnimation3DSampleViewController.h 3 | // CoreAnimation3DSample 4 | // 5 | // Created by Hiroshi Hashiguchi on 10/10/29. 6 | // Copyright 2010 . All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface CoreAnimation3DSampleViewController : UIViewController { 12 | 13 | } 14 | 15 | @end 16 | 17 | -------------------------------------------------------------------------------- /CoreAnimation3DSample/CoreAnimation3DSample_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'CoreAnimation3DSample' target in the 'CoreAnimation3DSample' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #import 8 | #endif 9 | -------------------------------------------------------------------------------- /CoreAnimation3DSample/image01s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/CoreAnimation3DSample/image01s.jpg -------------------------------------------------------------------------------- /CoreAnimation3DSample/image02s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/CoreAnimation3DSample/image02s.jpg -------------------------------------------------------------------------------- /CoreAnimation3DSample/image03s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/CoreAnimation3DSample/image03s.jpg -------------------------------------------------------------------------------- /CoreAnimation3DSample/image04s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/CoreAnimation3DSample/image04s.jpg -------------------------------------------------------------------------------- /CoreAnimation3DSample/image05s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/CoreAnimation3DSample/image05s.jpg -------------------------------------------------------------------------------- /CoreAnimation3DSample/image06s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/CoreAnimation3DSample/image06s.jpg -------------------------------------------------------------------------------- /CoreAnimation3DSample/image07s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/CoreAnimation3DSample/image07s.jpg -------------------------------------------------------------------------------- /CoreAnimation3DSample/image08s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/CoreAnimation3DSample/image08s.jpg -------------------------------------------------------------------------------- /CoreAnimation3DSample/image09s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/CoreAnimation3DSample/image09s.jpg -------------------------------------------------------------------------------- /CoreAnimation3DSample/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // CoreAnimation3DSample 4 | // 5 | // Created by Hiroshi Hashiguchi on 10/10/29. 6 | // Copyright 2010 . All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) { 12 | 13 | NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; 14 | int retVal = UIApplicationMain(argc, argv, nil, nil); 15 | [pool release]; 16 | return retVal; 17 | } 18 | -------------------------------------------------------------------------------- /CoreAnimation3DSample2/CoreAnimation3DSample2_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'CoreAnimation3DSample2' target in the 'CoreAnimation3DSample2' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #import 8 | #endif 9 | -------------------------------------------------------------------------------- /CoreAnimation3DSample2/image01s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/CoreAnimation3DSample2/image01s.jpg -------------------------------------------------------------------------------- /CoreAnimation3DSample2/image02s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/CoreAnimation3DSample2/image02s.jpg -------------------------------------------------------------------------------- /CoreAnimation3DSample2/image03s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/CoreAnimation3DSample2/image03s.jpg -------------------------------------------------------------------------------- /CoreAnimation3DSample2/image04s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/CoreAnimation3DSample2/image04s.jpg -------------------------------------------------------------------------------- /CoreAnimation3DSample2/image05s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/CoreAnimation3DSample2/image05s.jpg -------------------------------------------------------------------------------- /CoreAnimation3DSample2/image06s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/CoreAnimation3DSample2/image06s.jpg -------------------------------------------------------------------------------- /CoreAnimation3DSample2/image07s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/CoreAnimation3DSample2/image07s.jpg -------------------------------------------------------------------------------- /CoreAnimation3DSample2/image08s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/CoreAnimation3DSample2/image08s.jpg -------------------------------------------------------------------------------- /CoreAnimation3DSample2/image09s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/CoreAnimation3DSample2/image09s.jpg -------------------------------------------------------------------------------- /CoreAnimation3DSample2/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // CoreAnimation3DSample2 4 | // 5 | // Created by Hiroshi Hashiguchi on 10/10/30. 6 | // Copyright 2010 . All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) { 12 | 13 | NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; 14 | int retVal = UIApplicationMain(argc, argv, nil, nil); 15 | [pool release]; 16 | return retVal; 17 | } 18 | -------------------------------------------------------------------------------- /CoreDataMigSample/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/CoreDataMigSample/.DS_Store -------------------------------------------------------------------------------- /CoreDataMigSample/Classes/Event+Extension.h: -------------------------------------------------------------------------------- 1 | // 2 | // Event+Extension.h 3 | // CoreDataMigSample 4 | // 5 | // Created by Hiroshi Hashiguchi on 10/12/10. 6 | // Copyright 2010 . All rights reserved. 7 | // 8 | 9 | #import 10 | #import "Event.h" 11 | 12 | @interface Event (Extension) 13 | 14 | // for migration 15 | - (NSNumber*)monthOfDate:(NSDate*)date; 16 | - (NSNumber*)dayOfDate:(NSDate*)date; 17 | 18 | 19 | @end 20 | -------------------------------------------------------------------------------- /CoreDataMigSample/Classes/EventEntityMigrationPolicy.h: -------------------------------------------------------------------------------- 1 | // 2 | // EventEntityMigrationPolicy.h 3 | // CoreDataMigSample 4 | // 5 | // Created by Hiroshi Hashiguchi on 10/12/10. 6 | // Copyright 2010 . All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | 12 | @interface EventEntityMigrationPolicy : NSEntityMigrationPolicy { 13 | 14 | } 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /CoreDataMigSample/CoreDataMigSample.xcdatamodeld/.xccurrentversion: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | _XCCurrentVersionName 6 | CoreDataMigSample 2.xcdatamodel 7 | 8 | 9 | -------------------------------------------------------------------------------- /CoreDataMigSample/CoreDataMigSample.xcdatamodeld/CoreDataMigSample 2.xcdatamodel/elements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/CoreDataMigSample/CoreDataMigSample.xcdatamodeld/CoreDataMigSample 2.xcdatamodel/elements -------------------------------------------------------------------------------- /CoreDataMigSample/CoreDataMigSample.xcdatamodeld/CoreDataMigSample 2.xcdatamodel/layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/CoreDataMigSample/CoreDataMigSample.xcdatamodeld/CoreDataMigSample 2.xcdatamodel/layout -------------------------------------------------------------------------------- /CoreDataMigSample/CoreDataMigSample.xcdatamodeld/CoreDataMigSample.xcdatamodel/elements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/CoreDataMigSample/CoreDataMigSample.xcdatamodeld/CoreDataMigSample.xcdatamodel/elements -------------------------------------------------------------------------------- /CoreDataMigSample/CoreDataMigSample.xcdatamodeld/CoreDataMigSample.xcdatamodel/layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/CoreDataMigSample/CoreDataMigSample.xcdatamodeld/CoreDataMigSample.xcdatamodel/layout -------------------------------------------------------------------------------- /CoreDataMigSample/CoreDataMigSample_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'CoreDataMigSample' target in the 'CoreDataMigSample' project 3 | // 4 | 5 | #import 6 | 7 | #ifndef __IPHONE_3_0 8 | #warning "This project uses features only available in iPhone SDK 3.0 and later." 9 | #endif 10 | 11 | 12 | #ifdef __OBJC__ 13 | #import 14 | #import 15 | #import 16 | #endif 17 | -------------------------------------------------------------------------------- /CoreDataMigSample/Event.m: -------------------------------------------------------------------------------- 1 | // 2 | // Event.m 3 | // CoreDataMigSample 4 | // 5 | // Created by Hiroshi Hashiguchi on 10/12/10. 6 | // Copyright 2010 . All rights reserved. 7 | // 8 | 9 | #import "Event.h" 10 | 11 | 12 | @implementation Event 13 | 14 | @dynamic timeStamp; 15 | @dynamic memo; 16 | @dynamic month; 17 | @dynamic day; 18 | 19 | @end 20 | -------------------------------------------------------------------------------- /CoreDataMigSample/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // CoreDataMigSample 4 | // 5 | // Created by Hiroshi Hashiguchi on 10/12/10. 6 | // Copyright 2010 . All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) { 12 | 13 | NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; 14 | int retVal = UIApplicationMain(argc, argv, nil, nil); 15 | [pool release]; 16 | return retVal; 17 | } 18 | -------------------------------------------------------------------------------- /CoreLocationManager/Classes/CoreLocationManagerViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // CoreLocationManagerViewController.h 3 | // CoreLocationManager 4 | // 5 | // Created by Hiroshi Hashiguchi on 10/11/20. 6 | // Copyright 2010 . All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface CoreLocationManagerViewController : UIViewController { 12 | 13 | } 14 | 15 | @end 16 | 17 | -------------------------------------------------------------------------------- /CoreLocationManager/CoreLocationManager_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'CoreLocationManager' target in the 'CoreLocationManager' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #import 8 | #endif 9 | -------------------------------------------------------------------------------- /CoreLocationManager/LKLocationManager.h: -------------------------------------------------------------------------------- 1 | // 2 | // LKLocationManager.h 3 | // CoreLocationManager 4 | // 5 | // Created by Hiroshi Hashiguchi on 10/11/20. 6 | // Copyright 2010 . All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | 12 | @interface LKLocationManager : NSObject { 13 | 14 | } 15 | 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /CoreLocationManager/LKLocationManager.m: -------------------------------------------------------------------------------- 1 | // 2 | // LKLocationManager.m 3 | // CoreLocationManager 4 | // 5 | // Created by Hiroshi Hashiguchi on 10/11/20. 6 | // Copyright 2010 . All rights reserved. 7 | // 8 | 9 | #import "LKLocationManager.h" 10 | 11 | 12 | @implementation LKLocationManager 13 | 14 | @end 15 | -------------------------------------------------------------------------------- /CoreLocationManager/build/CoreLocationManager.build/CoreLocationManager.pbxindex/categories.pbxbtree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/CoreLocationManager/build/CoreLocationManager.build/CoreLocationManager.pbxindex/categories.pbxbtree -------------------------------------------------------------------------------- /CoreLocationManager/build/CoreLocationManager.build/CoreLocationManager.pbxindex/cdecls.pbxbtree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/CoreLocationManager/build/CoreLocationManager.build/CoreLocationManager.pbxindex/cdecls.pbxbtree -------------------------------------------------------------------------------- /CoreLocationManager/build/CoreLocationManager.build/CoreLocationManager.pbxindex/decls.pbxbtree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/CoreLocationManager/build/CoreLocationManager.build/CoreLocationManager.pbxindex/decls.pbxbtree -------------------------------------------------------------------------------- /CoreLocationManager/build/CoreLocationManager.build/CoreLocationManager.pbxindex/files.pbxbtree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/CoreLocationManager/build/CoreLocationManager.build/CoreLocationManager.pbxindex/files.pbxbtree -------------------------------------------------------------------------------- /CoreLocationManager/build/CoreLocationManager.build/CoreLocationManager.pbxindex/imports.pbxbtree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/CoreLocationManager/build/CoreLocationManager.build/CoreLocationManager.pbxindex/imports.pbxbtree -------------------------------------------------------------------------------- /CoreLocationManager/build/CoreLocationManager.build/CoreLocationManager.pbxindex/pbxindex.header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/CoreLocationManager/build/CoreLocationManager.build/CoreLocationManager.pbxindex/pbxindex.header -------------------------------------------------------------------------------- /CoreLocationManager/build/CoreLocationManager.build/CoreLocationManager.pbxindex/protocols.pbxbtree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/CoreLocationManager/build/CoreLocationManager.build/CoreLocationManager.pbxindex/protocols.pbxbtree -------------------------------------------------------------------------------- /CoreLocationManager/build/CoreLocationManager.build/CoreLocationManager.pbxindex/refs.pbxbtree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/CoreLocationManager/build/CoreLocationManager.build/CoreLocationManager.pbxindex/refs.pbxbtree -------------------------------------------------------------------------------- /CoreLocationManager/build/CoreLocationManager.build/CoreLocationManager.pbxindex/strings.pbxstrings/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/CoreLocationManager/build/CoreLocationManager.build/CoreLocationManager.pbxindex/strings.pbxstrings/control -------------------------------------------------------------------------------- /CoreLocationManager/build/CoreLocationManager.build/CoreLocationManager.pbxindex/subclasses.pbxbtree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/CoreLocationManager/build/CoreLocationManager.build/CoreLocationManager.pbxindex/subclasses.pbxbtree -------------------------------------------------------------------------------- /CoreLocationManager/build/CoreLocationManager.build/CoreLocationManager.pbxindex/symbols0.pbxsymbols: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/CoreLocationManager/build/CoreLocationManager.build/CoreLocationManager.pbxindex/symbols0.pbxsymbols -------------------------------------------------------------------------------- /CoreLocationManager/build/CoreLocationManager.build/Debug-iphoneos/CoreLocationManager.build/CoreLocationManager-generated-files.hmap: -------------------------------------------------------------------------------- 1 | pamhx -------------------------------------------------------------------------------- /CoreLocationManager/build/CoreLocationManager.build/Debug-iphoneos/CoreLocationManager.build/CoreLocationManager-project-headers.hmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/CoreLocationManager/build/CoreLocationManager.build/Debug-iphoneos/CoreLocationManager.build/CoreLocationManager-project-headers.hmap -------------------------------------------------------------------------------- /CoreLocationManager/build/CoreLocationManager.build/Debug-iphoneos/CoreLocationManager.build/CoreLocationManager.hmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/CoreLocationManager/build/CoreLocationManager.build/Debug-iphoneos/CoreLocationManager.build/CoreLocationManager.hmap -------------------------------------------------------------------------------- /CoreLocationManager/build/CoreLocationManager.build/Debug-iphoneos/CoreLocationManager.build/Objects-normal/armv6/CoreLocationManager: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/CoreLocationManager/build/CoreLocationManager.build/Debug-iphoneos/CoreLocationManager.build/Objects-normal/armv6/CoreLocationManager -------------------------------------------------------------------------------- /CoreLocationManager/build/CoreLocationManager.build/Debug-iphoneos/CoreLocationManager.build/Objects-normal/armv6/CoreLocationManagerAppDelegate.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/CoreLocationManager/build/CoreLocationManager.build/Debug-iphoneos/CoreLocationManager.build/Objects-normal/armv6/CoreLocationManagerAppDelegate.o -------------------------------------------------------------------------------- /CoreLocationManager/build/CoreLocationManager.build/Debug-iphoneos/CoreLocationManager.build/Objects-normal/armv6/CoreLocationManagerViewController.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/CoreLocationManager/build/CoreLocationManager.build/Debug-iphoneos/CoreLocationManager.build/Objects-normal/armv6/CoreLocationManagerViewController.o -------------------------------------------------------------------------------- /CoreLocationManager/build/CoreLocationManager.build/Debug-iphoneos/CoreLocationManager.build/Objects-normal/armv6/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/CoreLocationManager/build/CoreLocationManager.build/Debug-iphoneos/CoreLocationManager.build/Objects-normal/armv6/main.o -------------------------------------------------------------------------------- /CoreLocationManager/build/CoreLocationManager.build/Debug-iphoneos/CoreLocationManager.build/Objects-normal/armv7/CoreLocationManager: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/CoreLocationManager/build/CoreLocationManager.build/Debug-iphoneos/CoreLocationManager.build/Objects-normal/armv7/CoreLocationManager -------------------------------------------------------------------------------- /CoreLocationManager/build/CoreLocationManager.build/Debug-iphoneos/CoreLocationManager.build/Objects-normal/armv7/CoreLocationManagerAppDelegate.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/CoreLocationManager/build/CoreLocationManager.build/Debug-iphoneos/CoreLocationManager.build/Objects-normal/armv7/CoreLocationManagerAppDelegate.o -------------------------------------------------------------------------------- /CoreLocationManager/build/CoreLocationManager.build/Debug-iphoneos/CoreLocationManager.build/Objects-normal/armv7/CoreLocationManagerViewController.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/CoreLocationManager/build/CoreLocationManager.build/Debug-iphoneos/CoreLocationManager.build/Objects-normal/armv7/CoreLocationManagerViewController.o -------------------------------------------------------------------------------- /CoreLocationManager/build/CoreLocationManager.build/Debug-iphoneos/CoreLocationManager.build/Objects-normal/armv7/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/CoreLocationManager/build/CoreLocationManager.build/Debug-iphoneos/CoreLocationManager.build/Objects-normal/armv7/main.o -------------------------------------------------------------------------------- /CoreLocationManager/build/CoreLocationManager.build/Debug-iphonesimulator/CoreLocationManager.build/CoreLocationManager-generated-files.hmap: -------------------------------------------------------------------------------- 1 | pamhx -------------------------------------------------------------------------------- /CoreLocationManager/build/CoreLocationManager.build/Debug-iphonesimulator/CoreLocationManager.build/CoreLocationManager-project-headers.hmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/CoreLocationManager/build/CoreLocationManager.build/Debug-iphonesimulator/CoreLocationManager.build/CoreLocationManager-project-headers.hmap -------------------------------------------------------------------------------- /CoreLocationManager/build/CoreLocationManager.build/Debug-iphonesimulator/CoreLocationManager.build/CoreLocationManager.hmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/CoreLocationManager/build/CoreLocationManager.build/Debug-iphonesimulator/CoreLocationManager.build/CoreLocationManager.hmap -------------------------------------------------------------------------------- /CoreLocationManager/build/CoreLocationManager.build/Debug-iphonesimulator/CoreLocationManager.build/Objects-normal/i386/CoreLocationManagerAppDelegate.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/CoreLocationManager/build/CoreLocationManager.build/Debug-iphonesimulator/CoreLocationManager.build/Objects-normal/i386/CoreLocationManagerAppDelegate.o -------------------------------------------------------------------------------- /CoreLocationManager/build/CoreLocationManager.build/Debug-iphonesimulator/CoreLocationManager.build/Objects-normal/i386/CoreLocationManagerViewController.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/CoreLocationManager/build/CoreLocationManager.build/Debug-iphonesimulator/CoreLocationManager.build/Objects-normal/i386/CoreLocationManagerViewController.o -------------------------------------------------------------------------------- /CoreLocationManager/build/CoreLocationManager.build/Debug-iphonesimulator/CoreLocationManager.build/Objects-normal/i386/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/CoreLocationManager/build/CoreLocationManager.build/Debug-iphonesimulator/CoreLocationManager.build/Objects-normal/i386/main.o -------------------------------------------------------------------------------- /CoreLocationManager/build/Debug-iphoneos/CoreLocationManager.app.dSYM/Contents/Resources/DWARF/CoreLocationManager: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/CoreLocationManager/build/Debug-iphoneos/CoreLocationManager.app.dSYM/Contents/Resources/DWARF/CoreLocationManager -------------------------------------------------------------------------------- /CoreLocationManager/build/Debug-iphoneos/CoreLocationManager.app/CodeResources: -------------------------------------------------------------------------------- 1 | _CodeSignature/CodeResources -------------------------------------------------------------------------------- /CoreLocationManager/build/Debug-iphoneos/CoreLocationManager.app/CoreLocationManager: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/CoreLocationManager/build/Debug-iphoneos/CoreLocationManager.app/CoreLocationManager -------------------------------------------------------------------------------- /CoreLocationManager/build/Debug-iphoneos/CoreLocationManager.app/CoreLocationManagerViewController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/CoreLocationManager/build/Debug-iphoneos/CoreLocationManager.app/CoreLocationManagerViewController.nib -------------------------------------------------------------------------------- /CoreLocationManager/build/Debug-iphoneos/CoreLocationManager.app/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/CoreLocationManager/build/Debug-iphoneos/CoreLocationManager.app/Info.plist -------------------------------------------------------------------------------- /CoreLocationManager/build/Debug-iphoneos/CoreLocationManager.app/MainWindow.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/CoreLocationManager/build/Debug-iphoneos/CoreLocationManager.app/MainWindow.nib -------------------------------------------------------------------------------- /CoreLocationManager/build/Debug-iphoneos/CoreLocationManager.app/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /CoreLocationManager/build/Debug-iphoneos/CoreLocationManager.app/embedded.mobileprovision: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/CoreLocationManager/build/Debug-iphoneos/CoreLocationManager.app/embedded.mobileprovision -------------------------------------------------------------------------------- /CoreLocationManager/build/Debug-iphonesimulator/CoreLocationManager.app.dSYM/Contents/Resources/DWARF/CoreLocationManager: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/CoreLocationManager/build/Debug-iphonesimulator/CoreLocationManager.app.dSYM/Contents/Resources/DWARF/CoreLocationManager -------------------------------------------------------------------------------- /CoreLocationManager/build/Debug-iphonesimulator/CoreLocationManager.app/CoreLocationManager: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/CoreLocationManager/build/Debug-iphonesimulator/CoreLocationManager.app/CoreLocationManager -------------------------------------------------------------------------------- /CoreLocationManager/build/Debug-iphonesimulator/CoreLocationManager.app/CoreLocationManagerViewController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/CoreLocationManager/build/Debug-iphonesimulator/CoreLocationManager.app/CoreLocationManagerViewController.nib -------------------------------------------------------------------------------- /CoreLocationManager/build/Debug-iphonesimulator/CoreLocationManager.app/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/CoreLocationManager/build/Debug-iphonesimulator/CoreLocationManager.app/Info.plist -------------------------------------------------------------------------------- /CoreLocationManager/build/Debug-iphonesimulator/CoreLocationManager.app/MainWindow.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/CoreLocationManager/build/Debug-iphonesimulator/CoreLocationManager.app/MainWindow.nib -------------------------------------------------------------------------------- /CoreLocationManager/build/Debug-iphonesimulator/CoreLocationManager.app/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /CoreLocationManager/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // CoreLocationManager 4 | // 5 | // Created by Hiroshi Hashiguchi on 10/11/20. 6 | // Copyright 2010 . All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) { 12 | 13 | NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; 14 | int retVal = UIApplicationMain(argc, argv, nil, nil); 15 | [pool release]; 16 | return retVal; 17 | } 18 | -------------------------------------------------------------------------------- /CoreLocationSample/CoreLocationSample_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'CoreLocationSample' target in the 'CoreLocationSample' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #import 8 | #endif 9 | -------------------------------------------------------------------------------- /CoreLocationSample/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // CoreLocationSample 4 | // 5 | // Created by Hiroshi Hashiguchi on 10/10/20. 6 | // Copyright 2010 . All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) { 12 | 13 | NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; 14 | int retVal = UIApplicationMain(argc, argv, nil, nil); 15 | [pool release]; 16 | return retVal; 17 | } 18 | -------------------------------------------------------------------------------- /CoreMotionStudy/CoreMotionStudy/AppDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.h 3 | // CoreMotionStudy 4 | // 5 | // Created by 橋口 湖 on 5/26/12. 6 | // Copyright (c) 2012 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @class ViewController; 12 | 13 | @interface AppDelegate : UIResponder 14 | 15 | @property (strong, nonatomic) UIWindow *window; 16 | 17 | @property (strong, nonatomic) ViewController *viewController; 18 | 19 | @end 20 | -------------------------------------------------------------------------------- /CoreMotionStudy/CoreMotionStudy/CoreMotionStudy-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'CoreMotionStudy' target in the 'CoreMotionStudy' project 3 | // 4 | 5 | #import 6 | 7 | #ifndef __IPHONE_4_0 8 | #warning "This project uses features only available in iOS SDK 4.0 and later." 9 | #endif 10 | 11 | #ifdef __OBJC__ 12 | #import 13 | #import 14 | #endif 15 | -------------------------------------------------------------------------------- /CoreMotionStudy/CoreMotionStudy/ViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.h 3 | // CoreMotionStudy 4 | // 5 | // Created by 橋口 湖 on 5/26/12. 6 | // Copyright (c) 2012 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface ViewController : UIViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /CoreMotionStudy/CoreMotionStudy/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /CoreMotionStudy/CoreMotionStudy/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // CoreMotionStudy 4 | // 5 | // Created by 橋口 湖 on 5/26/12. 6 | // Copyright (c) 2012 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | #import "AppDelegate.h" 12 | 13 | int main(int argc, char *argv[]) 14 | { 15 | @autoreleasepool { 16 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CustomCellSample/CustomCellSample/CustomCellSample-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'CustomCellSample' target in the 'CustomCellSample' project 3 | // 4 | 5 | #import 6 | 7 | #ifndef __IPHONE_3_0 8 | #warning "This project uses features only available in iPhone SDK 3.0 and later." 9 | #endif 10 | 11 | #ifdef __OBJC__ 12 | #import 13 | #import 14 | #endif 15 | -------------------------------------------------------------------------------- /CustomCellSample/CustomCellSample/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/CustomCellSample/CustomCellSample/arrow.png -------------------------------------------------------------------------------- /CustomCellSample/CustomCellSample/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /CustomCellSample/CustomCellSample/image01s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/CustomCellSample/CustomCellSample/image01s.jpg -------------------------------------------------------------------------------- /CustomCellSample/CustomCellSample/image02s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/CustomCellSample/CustomCellSample/image02s.jpg -------------------------------------------------------------------------------- /CustomCellSample/CustomCellSample/image03s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/CustomCellSample/CustomCellSample/image03s.jpg -------------------------------------------------------------------------------- /CustomCellSample/CustomCellSample/image04s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/CustomCellSample/CustomCellSample/image04s.jpg -------------------------------------------------------------------------------- /CustomCellSample/CustomCellSample/image05s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/CustomCellSample/CustomCellSample/image05s.jpg -------------------------------------------------------------------------------- /CustomCellSample/CustomCellSample/image06s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/CustomCellSample/CustomCellSample/image06s.jpg -------------------------------------------------------------------------------- /CustomCellSample/CustomCellSample/image07s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/CustomCellSample/CustomCellSample/image07s.jpg -------------------------------------------------------------------------------- /CustomCellSample/CustomCellSample/image08s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/CustomCellSample/CustomCellSample/image08s.jpg -------------------------------------------------------------------------------- /CustomCellSample/CustomCellSample/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // CustomCellSample 4 | // 5 | // Created by Hiroshi Hashiguchi on 11/05/21. 6 | // Copyright 2011 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) 12 | { 13 | NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; 14 | int retVal = UIApplicationMain(argc, argv, nil, nil); 15 | [pool release]; 16 | return retVal; 17 | } 18 | -------------------------------------------------------------------------------- /CustomCellSample/FooterView.h: -------------------------------------------------------------------------------- 1 | // 2 | // FooterView.h 3 | // CustomCellSample 4 | // 5 | // Created by Hiroshi Hashiguchi on 11/06/28. 6 | // Copyright 2011 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | 12 | @interface FooterView : UIView { 13 | 14 | } 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /DeviceTypeSample/Classes/DeviceInfoUtility.h: -------------------------------------------------------------------------------- 1 | // 2 | // DeviceUtility.h 3 | // DeviceTypeSample 4 | // 5 | // Created by Hiroshi Hashiguchi on 10/09/12. 6 | // Copyright 2010 Hiroshi Hashiguchi. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface DeviceInfoUtility : NSObject { 12 | 13 | } 14 | + (NSString *) hwMachine; 15 | + (NSString *) deviceName; 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /DeviceTypeSample/DeviceTypeSample_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'DeviceTypeSample' target in the 'DeviceTypeSample' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #import 8 | #endif 9 | -------------------------------------------------------------------------------- /DeviceTypeSample/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // DeviceTypeSample 4 | // 5 | // Created by Hiroshi Hashiguchi on 10/09/12. 6 | // Copyright Hiroshi Hashiguchi 2010. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) { 12 | 13 | NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; 14 | int retVal = UIApplicationMain(argc, argv, nil, nil); 15 | [pool release]; 16 | return retVal; 17 | } 18 | -------------------------------------------------------------------------------- /DialogSample/Classes/CustomDialogViewDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // CustomDialogViewDelegate.h 3 | // DialogSample 4 | // 5 | // Created by Hiroshi Hashiguchi on 10/07/23. 6 | // Copyright 2010 Hiroshi Hashiguchi. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | 12 | @protocol CustomDialogViewDelegate 13 | 14 | -(void)touchedButton:(id)sender; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /DialogSample/DialogSample_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'DialogSample' target in the 'DialogSample' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #import 8 | #endif 9 | -------------------------------------------------------------------------------- /DialogSample/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // DialogSample 4 | // 5 | // Created by Hiroshi Hashiguchi on 10/07/23. 6 | // Copyright Hiroshi Hashiguchi 2010. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) { 12 | 13 | NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; 14 | int retVal = UIApplicationMain(argc, argv, nil, nil); 15 | [pool release]; 16 | return retVal; 17 | } 18 | -------------------------------------------------------------------------------- /DisplayingExcelFile/Classes/CustomURLCache.h: -------------------------------------------------------------------------------- 1 | // 2 | // CustomURLCache.h 3 | // DisplayingExcelFile 4 | // 5 | // Created by Hiroshi Hashiguchi on 11/01/10. 6 | // Copyright 2011 . All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | 12 | @interface CustomURLCache : NSURLCache { 13 | 14 | } 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /DisplayingExcelFile/DisplayingExcelFile_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'DisplayingExcelFile' target in the 'DisplayingExcelFile' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #import 8 | #endif 9 | -------------------------------------------------------------------------------- /DisplayingExcelFile/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // DisplayingExcelFile 4 | // 5 | // Created by Hiroshi Hashiguchi on 10/12/31. 6 | // Copyright 2010 . All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) { 12 | 13 | NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; 14 | int retVal = UIApplicationMain(argc, argv, nil, nil); 15 | [pool release]; 16 | return retVal; 17 | } 18 | -------------------------------------------------------------------------------- /DisplayingExcelFile/sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/DisplayingExcelFile/sample.jpg -------------------------------------------------------------------------------- /DisplayingExcelFile/sample.mov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/DisplayingExcelFile/sample.mov -------------------------------------------------------------------------------- /DisplayingExcelFile/sample.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/DisplayingExcelFile/sample.pdf -------------------------------------------------------------------------------- /DisplayingExcelFile/sample.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/DisplayingExcelFile/sample.xls -------------------------------------------------------------------------------- /DisplayingExcelFile/sample2.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/DisplayingExcelFile/sample2.ppt -------------------------------------------------------------------------------- /DisplayingExcelFile/sample3.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/DisplayingExcelFile/sample3.doc -------------------------------------------------------------------------------- /DisplayingExcelFile/sample4.rtfd.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/DisplayingExcelFile/sample4.rtfd.zip -------------------------------------------------------------------------------- /EasyGallery/EasyGallery_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'EasyGallery' target in the 'EasyGallery' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #import 8 | #endif 9 | -------------------------------------------------------------------------------- /EasyGallery/image01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/EasyGallery/image01.jpg -------------------------------------------------------------------------------- /EasyGallery/image02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/EasyGallery/image02.jpg -------------------------------------------------------------------------------- /EasyGallery/image03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/EasyGallery/image03.jpg -------------------------------------------------------------------------------- /EasyGallery/image04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/EasyGallery/image04.jpg -------------------------------------------------------------------------------- /EasyGallery/image05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/EasyGallery/image05.jpg -------------------------------------------------------------------------------- /EasyGallery/image06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/EasyGallery/image06.jpg -------------------------------------------------------------------------------- /EasyGallery/image07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/EasyGallery/image07.jpg -------------------------------------------------------------------------------- /EasyGallery/image08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/EasyGallery/image08.jpg -------------------------------------------------------------------------------- /EasyGallery/link.webloc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/EasyGallery/link.webloc -------------------------------------------------------------------------------- /EasyGallery/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // EasyGallery 4 | // 5 | // Created by Hiroshi Hashiguchi on 10/09/28. 6 | // Copyright 2010 . All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) { 12 | 13 | NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; 14 | int retVal = UIApplicationMain(argc, argv, nil, nil); 15 | [pool release]; 16 | return retVal; 17 | } 18 | -------------------------------------------------------------------------------- /ExifSample/ExifSample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ExifSample/ExifSample/AppDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.h 3 | // ExifSample 4 | // 5 | // Created by 橋口 湖 on 2/16/12. 6 | // Copyright (c) 2012 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @class ViewController; 12 | 13 | @interface AppDelegate : UIResponder 14 | 15 | @property (strong, nonatomic) UIWindow *window; 16 | 17 | @property (strong, nonatomic) ViewController *viewController; 18 | 19 | @end 20 | -------------------------------------------------------------------------------- /ExifSample/ExifSample/ExifSample-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'ExifSample' target in the 'ExifSample' project 3 | // 4 | 5 | #import 6 | 7 | #ifndef __IPHONE_4_0 8 | #warning "This project uses features only available in iOS SDK 4.0 and later." 9 | #endif 10 | 11 | #ifdef __OBJC__ 12 | #import 13 | #import 14 | #endif 15 | -------------------------------------------------------------------------------- /ExifSample/ExifSample/ViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.h 3 | // ExifSample 4 | // 5 | // Created by 橋口 湖 on 2/16/12. 6 | // Copyright (c) 2012 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface ViewController : UIViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /ExifSample/ExifSample/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /ExifSample/ExifSample/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // ExifSample 4 | // 5 | // Created by 橋口 湖 on 2/16/12. 6 | // Copyright (c) 2012 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | #import "AppDelegate.h" 12 | 13 | int main(int argc, char *argv[]) 14 | { 15 | @autoreleasepool { 16 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /FetchedResultsControllerSample/FetchedResultsControllerSample.xcdatamodeld/.xccurrentversion: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | _XCCurrentVersionName 6 | FetchedResultsControllerSample.xcdatamodel 7 | 8 | 9 | -------------------------------------------------------------------------------- /FetchedResultsControllerSample/FetchedResultsControllerSample.xcdatamodeld/FetchedResultsControllerSample.xcdatamodel/elements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/FetchedResultsControllerSample/FetchedResultsControllerSample.xcdatamodeld/FetchedResultsControllerSample.xcdatamodel/elements -------------------------------------------------------------------------------- /FetchedResultsControllerSample/FetchedResultsControllerSample.xcdatamodeld/FetchedResultsControllerSample.xcdatamodel/layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/FetchedResultsControllerSample/FetchedResultsControllerSample.xcdatamodeld/FetchedResultsControllerSample.xcdatamodel/layout -------------------------------------------------------------------------------- /FetchedResultsControllerSample/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // FetchedResultsControllerSample 4 | // 5 | // Created by Hiroshi Hashiguchi on 10/07/24. 6 | // Copyright Hiroshi Hashiguchi 2010. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) { 12 | 13 | NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; 14 | int retVal = UIApplicationMain(argc, argv, nil, nil); 15 | [pool release]; 16 | return retVal; 17 | } 18 | -------------------------------------------------------------------------------- /FileManagerDateSample/FileManagerDateSample/FileManagerDateSample-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'FileManagerDateSample' target in the 'FileManagerDateSample' project 3 | // 4 | 5 | #import 6 | 7 | #ifndef __IPHONE_3_0 8 | #warning "This project uses features only available in iPhone SDK 3.0 and later." 9 | #endif 10 | 11 | #ifdef __OBJC__ 12 | #import 13 | #import 14 | #endif 15 | -------------------------------------------------------------------------------- /FileManagerDateSample/FileManagerDateSample/FileManagerDateSampleAppDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // FileManagerDateSampleAppDelegate.h 3 | // FileManagerDateSample 4 | // 5 | // Created by Hiroshi Hashiguchi on 11/04/01. 6 | // Copyright 2011 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface FileManagerDateSampleAppDelegate : NSObject { 12 | 13 | } 14 | 15 | @property (nonatomic, retain) IBOutlet UIWindow *window; 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /FileManagerDateSample/FileManagerDateSample/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /FileManagerDateSample/FileManagerDateSample/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // FileManagerDateSample 4 | // 5 | // Created by Hiroshi Hashiguchi on 11/04/01. 6 | // Copyright 2011 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) 12 | { 13 | NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; 14 | int retVal = UIApplicationMain(argc, argv, nil, nil); 15 | [pool release]; 16 | return retVal; 17 | } 18 | -------------------------------------------------------------------------------- /FileManagerSample/FileManagerSample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /FileManagerSample/FileManagerSample/FileManagerSample-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'FileManagerSample' target in the 'FileManagerSample' project 3 | // 4 | 5 | #import 6 | 7 | #ifndef __IPHONE_3_0 8 | #warning "This project uses features only available in iPhone SDK 3.0 and later." 9 | #endif 10 | 11 | #ifdef __OBJC__ 12 | #import 13 | #import 14 | #endif 15 | -------------------------------------------------------------------------------- /FileManagerSample/FileManagerSample/FileManagerSampleAppDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // FileManagerSampleAppDelegate.h 3 | // FileManagerSample 4 | // 5 | 6 | #import 7 | 8 | @interface FileManagerSampleAppDelegate : NSObject { 9 | 10 | } 11 | 12 | @property (nonatomic, retain) IBOutlet UIWindow *window; 13 | 14 | @end 15 | -------------------------------------------------------------------------------- /FileManagerSample/FileManagerSample/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /FileManagerSample/FileManagerSample/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // FileManagerSample 4 | // 5 | 6 | #import 7 | 8 | int main(int argc, char *argv[]) 9 | { 10 | NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; 11 | int retVal = UIApplicationMain(argc, argv, nil, nil); 12 | [pool release]; 13 | return retVal; 14 | } 15 | -------------------------------------------------------------------------------- /FileManagerSample/FileManagerSample/sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/FileManagerSample/FileManagerSample/sample.jpg -------------------------------------------------------------------------------- /FileManagerSample/FileManagerSample/sample2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/FileManagerSample/FileManagerSample/sample2.png -------------------------------------------------------------------------------- /FileProtectionSample/FileProtectionSample/FileProtectionSample-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'FileProtectionSample' target in the 'FileProtectionSample' project 3 | // 4 | 5 | #import 6 | 7 | #ifndef __IPHONE_3_0 8 | #warning "This project uses features only available in iPhone SDK 3.0 and later." 9 | #endif 10 | 11 | #ifdef __OBJC__ 12 | #import 13 | #import 14 | #endif 15 | -------------------------------------------------------------------------------- /FileProtectionSample/FileProtectionSample/FileProtectionSampleAppDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // FileProtectionSampleAppDelegate.h 3 | // FileProtectionSample 4 | // 5 | // Created by Hiroshi Hashiguchi on 11/04/20. 6 | // Copyright 2011 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface FileProtectionSampleAppDelegate : NSObject { 12 | 13 | } 14 | 15 | @property (nonatomic, retain) IBOutlet UIWindow *window; 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /FileProtectionSample/FileProtectionSample/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /FileProtectionSample/FileProtectionSample/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // FileProtectionSample 4 | // 5 | // Created by Hiroshi Hashiguchi on 11/04/20. 6 | // Copyright 2011 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) 12 | { 13 | NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; 14 | int retVal = UIApplicationMain(argc, argv, nil, nil); 15 | [pool release]; 16 | return retVal; 17 | } 18 | -------------------------------------------------------------------------------- /FileProtectionSample/FileProtectionSample/sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/FileProtectionSample/FileProtectionSample/sample.jpg -------------------------------------------------------------------------------- /FileProtectionSample/FileProtectionSample/sample_encrypted.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/FileProtectionSample/FileProtectionSample/sample_encrypted.jpg -------------------------------------------------------------------------------- /FirstResponderSample/FirstResponderSample/FirstResponderSample-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'FirstResponderSample' target in the 'FirstResponderSample' project 3 | // 4 | 5 | #import 6 | 7 | #ifndef __IPHONE_3_0 8 | #warning "This project uses features only available in iPhone SDK 3.0 and later." 9 | #endif 10 | 11 | #ifdef __OBJC__ 12 | #import 13 | #import 14 | #endif 15 | -------------------------------------------------------------------------------- /FirstResponderSample/FirstResponderSample/FirstResponderSampleViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // FirstResponderSampleViewController.h 3 | // FirstResponderSample 4 | // 5 | // Created by Hashiguchi Hiroshi on 11/08/22. 6 | // Copyright 2011年 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface FirstResponderSampleViewController : UIViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /FirstResponderSample/FirstResponderSample/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /FirstResponderSample/FirstResponderSample/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // FirstResponderSample 4 | // 5 | // Created by Hashiguchi Hiroshi on 11/08/22. 6 | // Copyright 2011年 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) 12 | { 13 | NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; 14 | int retVal = UIApplicationMain(argc, argv, nil, nil); 15 | [pool release]; 16 | return retVal; 17 | } 18 | -------------------------------------------------------------------------------- /GCDSuspendSample/GCDSuspendSample/GCDSuspendSample-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'GCDSuspendSample' target in the 'GCDSuspendSample' project 3 | // 4 | 5 | #import 6 | 7 | #ifndef __IPHONE_3_0 8 | #warning "This project uses features only available in iPhone SDK 3.0 and later." 9 | #endif 10 | 11 | #ifdef __OBJC__ 12 | #import 13 | #import 14 | #endif 15 | -------------------------------------------------------------------------------- /GCDSuspendSample/GCDSuspendSample/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GCDSuspendSample/GCDSuspendSample/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // GCDSuspendSample 4 | // 5 | // Created by Hiroshi Hashiguchi on 11/05/12. 6 | // Copyright 2011 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) 12 | { 13 | NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; 14 | int retVal = UIApplicationMain(argc, argv, nil, nil); 15 | [pool release]; 16 | return retVal; 17 | } 18 | -------------------------------------------------------------------------------- /GradientButton/GradientButton.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /GradientButton/GradientButton.xcodeproj/project.xcworkspace/xcuserdata/hashi.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/GradientButton/GradientButton.xcodeproj/project.xcworkspace/xcuserdata/hashi.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /GradientButton/GradientButton.xcodeproj/xcuserdata/hashi.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /GradientButton/GradientButton/GradientButton-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'GradientButton' target in the 'GradientButton' project 3 | // 4 | 5 | #import 6 | 7 | #ifndef __IPHONE_4_0 8 | #warning "This project uses features only available in iOS SDK 4.0 and later." 9 | #endif 10 | 11 | #ifdef __OBJC__ 12 | #import 13 | #import 14 | #endif 15 | -------------------------------------------------------------------------------- /GradientButton/GradientButton/GradientButton.h: -------------------------------------------------------------------------------- 1 | // 2 | // GradientButton.h 3 | // GradientButton 4 | // 5 | // Created by Hiroshi Hashiguchi on 11/10/21. 6 | // Copyright (c) 2011年 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface GradientButton : UIControl 12 | 13 | @property (nonatomic, retain) UIColor* textColor; 14 | @property (nonatomic, copy) NSString* text; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /GradientButton/GradientButton/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GradientButton/GradientButton/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // GradientButton 4 | // 5 | // Created by Hiroshi Hashiguchi on 11/10/21. 6 | // Copyright (c) 2011年 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | #import "AppDelegate.h" 12 | 13 | int main(int argc, char *argv[]) 14 | { 15 | @autoreleasepool { 16 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /GradientSample/GradientSample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /GradientSample/GradientSample/GradientSample-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'GradientSample' target in the 'GradientSample' project 3 | // 4 | 5 | #import 6 | 7 | #ifndef __IPHONE_3_0 8 | #warning "This project uses features only available in iPhone SDK 3.0 and later." 9 | #endif 10 | 11 | #ifdef __OBJC__ 12 | #import 13 | #import 14 | #endif 15 | -------------------------------------------------------------------------------- /GradientSample/GradientSample/GradientSampleViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // GradientSampleViewController.h 3 | // GradientSample 4 | // 5 | // Created by Hiroshi Hashiguchi on 11/06/27. 6 | // Copyright 2011 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface GradientSampleViewController : UIViewController { 12 | 13 | } 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /GradientSample/GradientSample/LinearGradientView.h: -------------------------------------------------------------------------------- 1 | // 2 | // LinearGradientView.h 3 | // GradientSample 4 | // 5 | // Created by Hiroshi Hashiguchi on 11/06/27. 6 | // Copyright 2011 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | 12 | @interface LinearGradientView : UIView { 13 | 14 | } 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /GradientSample/GradientSample/RadialGradientView.h: -------------------------------------------------------------------------------- 1 | // 2 | // RadialGradientView.h 3 | // GradientSample 4 | // 5 | // Created by Hiroshi Hashiguchi on 11/06/27. 6 | // Copyright 2011 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | 12 | @interface RadialGradientView : UIView { 13 | 14 | } 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /GradientSample/GradientSample/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GradientSample/GradientSample/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // GradientSample 4 | // 5 | // Created by Hiroshi Hashiguchi on 11/06/27. 6 | // Copyright 2011 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) 12 | { 13 | NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; 14 | int retVal = UIApplicationMain(argc, argv, nil, nil); 15 | [pool release]; 16 | return retVal; 17 | } 18 | -------------------------------------------------------------------------------- /HorizontalScrollableTableSample/HorizontalScrollableTableSample/HorizontalScrollableTableSample.xcdatamodeld/.xccurrentversion: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | _XCCurrentVersionName 6 | HorizontalScrollableTableSample.xcdatamodel 7 | 8 | 9 | -------------------------------------------------------------------------------- /HorizontalScrollableTableSample/HorizontalScrollableTableSample/HorizontalScrollableTableSample.xcdatamodeld/HorizontalScrollableTableSample.xcdatamodel/elements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/HorizontalScrollableTableSample/HorizontalScrollableTableSample/HorizontalScrollableTableSample.xcdatamodeld/HorizontalScrollableTableSample.xcdatamodel/elements -------------------------------------------------------------------------------- /HorizontalScrollableTableSample/HorizontalScrollableTableSample/HorizontalScrollableTableSample.xcdatamodeld/HorizontalScrollableTableSample.xcdatamodel/layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/HorizontalScrollableTableSample/HorizontalScrollableTableSample/HorizontalScrollableTableSample.xcdatamodeld/HorizontalScrollableTableSample.xcdatamodel/layout -------------------------------------------------------------------------------- /HorizontalScrollableTableSample/HorizontalScrollableTableSample/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /HorizontalScrollableUITableView/Classes/InnerView.h: -------------------------------------------------------------------------------- 1 | // 2 | // InnerView.h 3 | // HorizontalScrollableUITableView 4 | // 5 | // Created by Hiroshi Hashiguchi on 10/10/19. 6 | // Copyright 2010 . All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | 12 | @interface InnerView : UITableView { 13 | 14 | } 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /HorizontalScrollableUITableView/Classes/InnerView.m: -------------------------------------------------------------------------------- 1 | // 2 | // InnerView.m 3 | // HorizontalScrollableUITableView 4 | // 5 | // Created by Hiroshi Hashiguchi on 10/10/19. 6 | // Copyright 2010 . All rights reserved. 7 | // 8 | 9 | #import "InnerView.h" 10 | 11 | 12 | @implementation InnerView 13 | 14 | 15 | - (id)initWithFrame:(CGRect)frame 16 | { 17 | if (self = [super initWithFrame:frame style:UITableViewStylePlain]) { 18 | } 19 | return self; 20 | } 21 | 22 | @end 23 | -------------------------------------------------------------------------------- /HorizontalScrollableUITableView/HorizontalScrollableUITableView_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'HorizontalScrollableUITableView' target in the 'HorizontalScrollableUITableView' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #import 8 | #endif 9 | -------------------------------------------------------------------------------- /HorizontalScrollableUITableView/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // HorizontalScrollableUITableView 4 | // 5 | // Created by Hiroshi Hashiguchi on 10/10/19. 6 | // Copyright 2010 . All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) { 12 | 13 | NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; 14 | int retVal = UIApplicationMain(argc, argv, nil, nil); 15 | [pool release]; 16 | return retVal; 17 | } 18 | -------------------------------------------------------------------------------- /IBOutletCollectionSample/IBOutletCollectionSample_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'IBOutletCollectionSample' target in the 'IBOutletCollectionSample' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #import 8 | #endif 9 | -------------------------------------------------------------------------------- /IBOutletCollectionSample/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // IBOutletCollectionSample 4 | // 5 | // Created by Hiroshi Hashiguchi on 10/12/05. 6 | // Copyright 2010 . All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) { 12 | 13 | NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; 14 | int retVal = UIApplicationMain(argc, argv, nil, nil); 15 | [pool release]; 16 | return retVal; 17 | } 18 | -------------------------------------------------------------------------------- /ImageViewTap/ImageViewTap/ImageViewTap-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'ImageViewTap' target in the 'ImageViewTap' project 3 | // 4 | 5 | #import 6 | 7 | #ifndef __IPHONE_3_0 8 | #warning "This project uses features only available in iPhone SDK 3.0 and later." 9 | #endif 10 | 11 | #ifdef __OBJC__ 12 | #import 13 | #import 14 | #endif 15 | -------------------------------------------------------------------------------- /ImageViewTap/ImageViewTap/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /ImageViewTap/ImageViewTap/image01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/ImageViewTap/ImageViewTap/image01.jpg -------------------------------------------------------------------------------- /ImageViewTap/ImageViewTap/image01s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/ImageViewTap/ImageViewTap/image01s.jpg -------------------------------------------------------------------------------- /ImageViewTap/ImageViewTap/image02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/ImageViewTap/ImageViewTap/image02.jpg -------------------------------------------------------------------------------- /ImageViewTap/ImageViewTap/image02s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/ImageViewTap/ImageViewTap/image02s.jpg -------------------------------------------------------------------------------- /ImageViewTap/ImageViewTap/image03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/ImageViewTap/ImageViewTap/image03.jpg -------------------------------------------------------------------------------- /ImageViewTap/ImageViewTap/image03s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/ImageViewTap/ImageViewTap/image03s.jpg -------------------------------------------------------------------------------- /ImageViewTap/ImageViewTap/image04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/ImageViewTap/ImageViewTap/image04.jpg -------------------------------------------------------------------------------- /ImageViewTap/ImageViewTap/image04s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/ImageViewTap/ImageViewTap/image04s.jpg -------------------------------------------------------------------------------- /ImageViewTap/ImageViewTap/image05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/ImageViewTap/ImageViewTap/image05.jpg -------------------------------------------------------------------------------- /ImageViewTap/ImageViewTap/image05s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/ImageViewTap/ImageViewTap/image05s.jpg -------------------------------------------------------------------------------- /ImageViewTap/ImageViewTap/image06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/ImageViewTap/ImageViewTap/image06.jpg -------------------------------------------------------------------------------- /ImageViewTap/ImageViewTap/image06s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/ImageViewTap/ImageViewTap/image06s.jpg -------------------------------------------------------------------------------- /ImageViewTap/ImageViewTap/image07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/ImageViewTap/ImageViewTap/image07.jpg -------------------------------------------------------------------------------- /ImageViewTap/ImageViewTap/image07s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/ImageViewTap/ImageViewTap/image07s.jpg -------------------------------------------------------------------------------- /ImageViewTap/ImageViewTap/image08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/ImageViewTap/ImageViewTap/image08.jpg -------------------------------------------------------------------------------- /ImageViewTap/ImageViewTap/image08s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/ImageViewTap/ImageViewTap/image08s.jpg -------------------------------------------------------------------------------- /ImageViewTap/ImageViewTap/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // ImageViewTap 4 | // 5 | // Created by Hiroshi Hashiguchi on 11/06/21. 6 | // Copyright 2011 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) 12 | { 13 | NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; 14 | int retVal = UIApplicationMain(argc, argv, nil, nil); 15 | [pool release]; 16 | return retVal; 17 | } 18 | -------------------------------------------------------------------------------- /JSONFrameworkSample/JSONFrameworkSample_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'JSONFrameworkSample' target in the 'JSONFrameworkSample' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #import 8 | #endif 9 | -------------------------------------------------------------------------------- /JSONFrameworkSample/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // JSONFrameworkSample 4 | // 5 | // Created by Hiroshi Hashiguchi on 11/01/11. 6 | // Copyright 2011 . All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) { 12 | 13 | NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; 14 | int retVal = UIApplicationMain(argc, argv, nil, nil); 15 | [pool release]; 16 | return retVal; 17 | } 18 | -------------------------------------------------------------------------------- /KeyChainApp-1/Entitlements.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | application-identifier 6 | $(AppIdentifierPrefix)$(CFBundleIdentifier) 7 | keychain-access-groups 8 | 9 | $(AppIdentifierPrefix)share 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /KeyChainApp-1/KeyChainApp_1_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'KeyChainApp-1' target in the 'KeyChainApp-1' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #import 8 | #endif 9 | -------------------------------------------------------------------------------- /KeyChainApp-1/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // KeyChainApp-1 4 | // 5 | // Created by Hiroshi Hashiguchi on 11/02/05. 6 | // Copyright 2011 . All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) { 12 | 13 | NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; 14 | int retVal = UIApplicationMain(argc, argv, nil, nil); 15 | [pool release]; 16 | return retVal; 17 | } 18 | -------------------------------------------------------------------------------- /KeyChainApp-2/Entitlements.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | application-identifier 6 | $(AppIdentifierPrefix)$(CFBundleIdentifier) 7 | keychain-access-groups 8 | 9 | $(AppIdentifierPrefix)share 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /KeyChainApp-2/KeyChainApp_2_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'KeyChainApp-2' target in the 'KeyChainApp-2' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #import 8 | #endif 9 | -------------------------------------------------------------------------------- /KeyChainApp-2/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // KeyChainApp-2 4 | // 5 | // Created by Hiroshi Hashiguchi on 11/02/05. 6 | // Copyright 2011 . All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) { 12 | 13 | NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; 14 | int retVal = UIApplicationMain(argc, argv, nil, nil); 15 | [pool release]; 16 | return retVal; 17 | } 18 | -------------------------------------------------------------------------------- /KeyChainsSampe/KeyChainsSampe_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'KeyChainsSampe' target in the 'KeyChainsSampe' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #import 8 | #endif 9 | -------------------------------------------------------------------------------- /KeyChainsSampe/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // KeyChainsSampe 4 | // 5 | // Created by Hiroshi Hashiguchi on 11/02/02. 6 | // Copyright 2011 . All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) { 12 | 13 | NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; 14 | int retVal = UIApplicationMain(argc, argv, nil, nil); 15 | [pool release]; 16 | return retVal; 17 | } 18 | -------------------------------------------------------------------------------- /LargestManagedObject/LargestManagedObject.xcdatamodel/elements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/LargestManagedObject/LargestManagedObject.xcdatamodel/elements -------------------------------------------------------------------------------- /LargestManagedObject/LargestManagedObject.xcdatamodel/layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/LargestManagedObject/LargestManagedObject.xcdatamodel/layout -------------------------------------------------------------------------------- /LargestManagedObject/LargestManagedObject.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /LargestManagedObject/LargestManagedObject_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'LargestManagedObject' target in the 'LargestManagedObject' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #import 8 | #import 9 | #endif 10 | 11 | #import 12 | 13 | #ifndef __IPHONE_3_0 14 | #warning "This project uses features only available in iPhone SDK 3.0 and later." 15 | #endif 16 | 17 | -------------------------------------------------------------------------------- /LargestManagedObject/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | NSHumanReadableCopyright = "© ファイブテクノロジー株式会社, 2010"; 4 | -------------------------------------------------------------------------------- /LargestManagedObject/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // LargestManagedObject 4 | // 5 | 6 | 7 | #import 8 | 9 | int main(int argc, char *argv[]) 10 | { 11 | 12 | NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; 13 | int retVal = UIApplicationMain(argc, argv, nil, nil); 14 | [pool release]; 15 | return retVal; 16 | 17 | } 18 | 19 | -------------------------------------------------------------------------------- /LayerShadowSample/LayerShadowSample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /LayerShadowSample/LayerShadowSample.xcodeproj/xcuserdata/hashi.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /LayerShadowSample/LayerShadowSample/LayerShadowSample-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'LayerShadowSample' target in the 'LayerShadowSample' project 3 | // 4 | 5 | #import 6 | 7 | #ifndef __IPHONE_3_0 8 | #warning "This project uses features only available in iPhone SDK 3.0 and later." 9 | #endif 10 | 11 | #ifdef __OBJC__ 12 | #import 13 | #import 14 | #endif 15 | -------------------------------------------------------------------------------- /LayerShadowSample/LayerShadowSample/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /LayerShadowSample/LayerShadowSample/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // LayerShadowSample 4 | // 5 | // Created by Hashiguchi Hiroshi on 11/08/08. 6 | // Copyright 2011年 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) 12 | { 13 | NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; 14 | int retVal = UIApplicationMain(argc, argv, nil, nil); 15 | [pool release]; 16 | return retVal; 17 | } 18 | -------------------------------------------------------------------------------- /LayerShadowSample/LayerShadowSample/sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/LayerShadowSample/LayerShadowSample/sample.jpg -------------------------------------------------------------------------------- /LazyStartSample/Classes/LazyStartSampleViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // LazyStartSampleViewController.h 3 | // LazyStartSample 4 | // 5 | // Created by Hiroshi Hashiguchi on 11/02/11. 6 | // Copyright 2011 . All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface LazyStartSampleViewController : UIViewController { 12 | 13 | } 14 | 15 | -(IBAction)doit; 16 | 17 | @end 18 | 19 | -------------------------------------------------------------------------------- /LazyStartSample/Classes/SubViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // SubViewController.h 3 | // LazyStartSample 4 | // 5 | // Created by Hiroshi Hashiguchi on 11/02/11. 6 | // Copyright 2011 . All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | 12 | @interface SubViewController : UIViewController { 13 | 14 | } 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /LazyStartSample/LazyStartSample_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'LazyStartSample' target in the 'LazyStartSample' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #import 8 | #endif 9 | -------------------------------------------------------------------------------- /LazyStartSample/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // LazyStartSample 4 | // 5 | // Created by Hiroshi Hashiguchi on 11/02/11. 6 | // Copyright 2011 . All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) { 12 | 13 | NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; 14 | int retVal = UIApplicationMain(argc, argv, nil, nil); 15 | [pool release]; 16 | return retVal; 17 | } 18 | -------------------------------------------------------------------------------- /LocationReseacher/LocationReseacher/Gps, Location, Maps, Marker icon | Icon Search Engine.webloc: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | URL 6 | http://www.iconfinder.com/icondetails/47538/128/gps_location_maps_marker_icon 7 | 8 | 9 | -------------------------------------------------------------------------------- /LocationReseacher/LocationReseacher/LocationReseacher-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'LocationReseacher' target in the 'LocationReseacher' project 3 | // 4 | 5 | #import 6 | 7 | #ifndef __IPHONE_3_0 8 | #warning "This project uses features only available in iPhone SDK 3.0 and later." 9 | #endif 10 | 11 | #ifdef __OBJC__ 12 | #import 13 | #import 14 | #endif 15 | -------------------------------------------------------------------------------- /LocationReseacher/LocationReseacher/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /LocationReseacher/LocationReseacher/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // LocationReseacher 4 | // 5 | // Created by Hiroshi Hashiguchi on 11/06/07. 6 | // Copyright 2011 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) 12 | { 13 | NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; 14 | int retVal = UIApplicationMain(argc, argv, nil, nil); 15 | [pool release]; 16 | return retVal; 17 | } 18 | -------------------------------------------------------------------------------- /LocationReseacher/gps, location, maps, marker icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/LocationReseacher/gps, location, maps, marker icon.png -------------------------------------------------------------------------------- /LockSample/LockSample/LockSample-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'LockSample' target in the 'LockSample' project 3 | // 4 | 5 | #import 6 | 7 | #ifndef __IPHONE_3_0 8 | #warning "This project uses features only available in iPhone SDK 3.0 and later." 9 | #endif 10 | 11 | #ifdef __OBJC__ 12 | #import 13 | #import 14 | #endif 15 | -------------------------------------------------------------------------------- /LockSample/LockSample/LockSampleAppDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // LockSampleAppDelegate.h 3 | // LockSample 4 | // 5 | // Created by Hiroshi Hashiguchi on 11/04/16. 6 | // Copyright 2011 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface LockSampleAppDelegate : NSObject { 12 | 13 | } 14 | 15 | @property (nonatomic, retain) IBOutlet UIWindow *window; 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /LockSample/LockSample/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /LockSample/LockSample/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // LockSample 4 | // 5 | // Created by Hiroshi Hashiguchi on 11/04/16. 6 | // Copyright 2011 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) 12 | { 13 | NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; 14 | int retVal = UIApplicationMain(argc, argv, nil, nil); 15 | [pool release]; 16 | return retVal; 17 | } 18 | -------------------------------------------------------------------------------- /LogicTestSample/LogicTestSample_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'CocoaTouchStaticLibrary' target in the 'CocoaTouchStaticLibrary' project. 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /LogicTestSample/LogicTests.m: -------------------------------------------------------------------------------- 1 | // 2 | // LogicTests.m 3 | // LogicTestSample 4 | // 5 | // Created by Hiroshi Hashiguchi on 10/11/22. 6 | // Copyright 2010 . All rights reserved. 7 | // 8 | 9 | #import "LogicTests.h" 10 | 11 | 12 | @implementation LogicTests 13 | 14 | - (void) testFail { 15 | STFail(@"Must fail to succeed."); 16 | } 17 | 18 | 19 | @end 20 | -------------------------------------------------------------------------------- /LogicTestSample/SampleClass.h: -------------------------------------------------------------------------------- 1 | // 2 | // SampleClass.h 3 | // StudyUnitTest 4 | // 5 | // Created by Hiroshi Hashiguchi on 10/11/20. 6 | // Copyright 2010 . All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | 12 | @interface SampleClass : NSObject { 13 | 14 | } 15 | 16 | - (NSString*)greeting; 17 | 18 | @end 19 | -------------------------------------------------------------------------------- /LogicTestSample/SampleClass.m: -------------------------------------------------------------------------------- 1 | // 2 | // SampleClass.m 3 | // StudyUnitTest 4 | // 5 | // Created by Hiroshi Hashiguchi on 10/11/20. 6 | // Copyright 2010 . All rights reserved. 7 | // 8 | 9 | #import "SampleClass.h" 10 | 11 | 12 | @implementation SampleClass 13 | 14 | - (NSString*)greeting 15 | { 16 | return @"Hello"; 17 | } 18 | 19 | @end 20 | -------------------------------------------------------------------------------- /MobileNumbersSample/MobileNumbersSample/MobileNumbersSample-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'MobileNumbersSample' target in the 'MobileNumbersSample' project 3 | // 4 | 5 | #import 6 | 7 | #ifndef __IPHONE_4_0 8 | #warning "This project uses features only available in iOS SDK 4.0 and later." 9 | #endif 10 | 11 | #ifdef __OBJC__ 12 | #import 13 | #import 14 | #endif 15 | -------------------------------------------------------------------------------- /MobileNumbersSample/MobileNumbersSample/UIDevice-IOKitExtensions.h: -------------------------------------------------------------------------------- 1 | // 2 | // UIDevice-IOKitExtensions.h 3 | // MobileNumbersSample 4 | // 5 | // Created by 橋口 湖 on 11/11/11. 6 | // Copyright (c) 2011年 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface UIDevice_IOKitExtensions : NSObject 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /MobileNumbersSample/MobileNumbersSample/UIDevice-IOKitExtensions.m: -------------------------------------------------------------------------------- 1 | // 2 | // UIDevice-IOKitExtensions.m 3 | // MobileNumbersSample 4 | // 5 | // Created by 橋口 湖 on 11/11/11. 6 | // Copyright (c) 2011年 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import "UIDevice-IOKitExtensions.h" 10 | 11 | @implementation UIDevice_IOKitExtensions 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /MobileNumbersSample/MobileNumbersSample/ViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.h 3 | // MobileNumbersSample 4 | // 5 | // Created by 橋口 湖 on 11/11/11. 6 | // Copyright (c) 2011年 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface ViewController : UIViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /MobileNumbersSample/MobileNumbersSample/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /MobileNumbersSample/MobileNumbersSample/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // MobileNumbersSample 4 | // 5 | // Created by 橋口 湖 on 11/11/11. 6 | // Copyright (c) 2011年 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | #import "AppDelegate.h" 12 | 13 | int main(int argc, char *argv[]) 14 | { 15 | @autoreleasepool { 16 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /MovieSample/MovieSample/MovieSample-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'MovieSample' target in the 'MovieSample' project 3 | // 4 | 5 | #import 6 | 7 | #ifndef __IPHONE_3_0 8 | #warning "This project uses features only available in iPhone SDK 3.0 and later." 9 | #endif 10 | 11 | #ifdef __OBJC__ 12 | #import 13 | #import 14 | #endif 15 | -------------------------------------------------------------------------------- /MovieSample/MovieSample/RootViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // RootViewController.h 3 | // MovieSample 4 | // 5 | // Created by Hiroshi Hashiguchi on 11/04/21. 6 | // Copyright 2011 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | 12 | @interface RootViewController : UIViewController { 13 | 14 | } 15 | 16 | - (IBAction)playLocalMovie:(id)sender; 17 | 18 | @end 19 | -------------------------------------------------------------------------------- /MovieSample/MovieSample/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /MovieSample/MovieSample/iPad/MovieSampleAppDelegate_iPad.h: -------------------------------------------------------------------------------- 1 | // 2 | // MovieSampleAppDelegate_iPad.h 3 | // MovieSample 4 | // 5 | // Created by Hiroshi Hashiguchi on 11/04/21. 6 | // Copyright 2011 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "MovieSampleAppDelegate.h" 11 | 12 | @interface MovieSampleAppDelegate_iPad : MovieSampleAppDelegate { 13 | 14 | } 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /MovieSample/MovieSample/iPad/MovieSampleAppDelegate_iPad.m: -------------------------------------------------------------------------------- 1 | // 2 | // MovieSampleAppDelegate_iPad.m 3 | // MovieSample 4 | // 5 | // Created by Hiroshi Hashiguchi on 11/04/21. 6 | // Copyright 2011 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import "MovieSampleAppDelegate_iPad.h" 10 | 11 | @implementation MovieSampleAppDelegate_iPad 12 | 13 | - (void)dealloc 14 | { 15 | [super dealloc]; 16 | } 17 | 18 | @end 19 | -------------------------------------------------------------------------------- /MovieSample/MovieSample/iPhone/MovieSampleAppDelegate_iPhone.h: -------------------------------------------------------------------------------- 1 | // 2 | // MovieSampleAppDelegate_iPhone.h 3 | // MovieSample 4 | // 5 | // Created by Hiroshi Hashiguchi on 11/04/21. 6 | // Copyright 2011 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "MovieSampleAppDelegate.h" 11 | 12 | @interface MovieSampleAppDelegate_iPhone : MovieSampleAppDelegate { 13 | 14 | 15 | } 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /MovieSample/MovieSample/iPhone/MovieSampleAppDelegate_iPhone.m: -------------------------------------------------------------------------------- 1 | // 2 | // MovieSampleAppDelegate_iPhone.m 3 | // MovieSample 4 | // 5 | // Created by Hiroshi Hashiguchi on 11/04/21. 6 | // Copyright 2011 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import "MovieSampleAppDelegate_iPhone.h" 10 | 11 | @implementation MovieSampleAppDelegate_iPhone 12 | 13 | - (void)dealloc 14 | { 15 | [super dealloc]; 16 | } 17 | 18 | @end 19 | -------------------------------------------------------------------------------- /MovieSample/MovieSample/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // MovieSample 4 | // 5 | // Created by Hiroshi Hashiguchi on 11/04/21. 6 | // Copyright 2011 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) 12 | { 13 | NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; 14 | int retVal = UIApplicationMain(argc, argv, nil, nil); 15 | [pool release]; 16 | return retVal; 17 | } 18 | -------------------------------------------------------------------------------- /MovieSample/MovieSample/sample.mov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/MovieSample/MovieSample/sample.mov -------------------------------------------------------------------------------- /MultiNavigatorButtons/MultiNavigatorButtons/AppDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.h 3 | // MultiNavigatorButtons 4 | // 5 | // Created by 橋口 湖 on 1/5/12. 6 | // Copyright (c) 2012 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface AppDelegate : UIResponder 12 | 13 | @property (strong, nonatomic) UIWindow *window; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /MultiNavigatorButtons/MultiNavigatorButtons/DataViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // DataViewController.h 3 | // MultiNavigatorButtons 4 | // 5 | // Created by 橋口 湖 on 1/5/12. 6 | // Copyright (c) 2012 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface DataViewController : UIViewController 12 | @property (strong, nonatomic) IBOutlet UILabel *dataLabel; 13 | @property (strong, nonatomic) id dataObject; 14 | @end 15 | -------------------------------------------------------------------------------- /MultiNavigatorButtons/MultiNavigatorButtons/DetailViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // DetailViewController.h 3 | // MultiNavigatorButtons 4 | // 5 | // Created by 橋口 湖 on 1/5/12. 6 | // Copyright (c) 2012 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface DetailViewController : UIViewController 12 | 13 | @property (strong, nonatomic) id detailItem; 14 | 15 | @property (strong, nonatomic) IBOutlet UILabel *detailDescriptionLabel; 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /MultiNavigatorButtons/MultiNavigatorButtons/MasterViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // MasterViewController.h 3 | // MultiNavigatorButtons 4 | // 5 | // Created by 橋口 湖 on 1/5/12. 6 | // Copyright (c) 2012 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @class DetailViewController; 12 | 13 | @interface MasterViewController : UITableViewController 14 | 15 | @property (strong, nonatomic) DetailViewController *detailViewController; 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /MultiNavigatorButtons/MultiNavigatorButtons/MultiNavigatorButtons-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'MultiNavigatorButtons' target in the 'MultiNavigatorButtons' project 3 | // 4 | 5 | #import 6 | 7 | #ifndef __IPHONE_5_0 8 | #warning "This project uses features only available in iOS SDK 5.0 and later." 9 | #endif 10 | 11 | #ifdef __OBJC__ 12 | #import 13 | #import 14 | #endif 15 | -------------------------------------------------------------------------------- /MultiNavigatorButtons/MultiNavigatorButtons/RootViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // RootViewController.h 3 | // MultiNavigatorButtons 4 | // 5 | // Created by 橋口 湖 on 1/5/12. 6 | // Copyright (c) 2012 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface RootViewController : UIViewController 12 | 13 | @property (strong, nonatomic) UIPageViewController *pageViewController; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /MultiNavigatorButtons/MultiNavigatorButtons/ViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.h 3 | // MultiNavigatorButtons 4 | // 5 | // Created by 橋口 湖 on 1/5/12. 6 | // Copyright (c) 2012 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface ViewController : UIViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /MultiNavigatorButtons/MultiNavigatorButtons/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /MultiNavigatorButtons/MultiNavigatorButtons/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // MultiNavigatorButtons 4 | // 5 | // Created by 橋口 湖 on 1/5/12. 6 | // Copyright (c) 2012 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | #import "AppDelegate.h" 12 | 13 | int main(int argc, char *argv[]) 14 | { 15 | @autoreleasepool { 16 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /NSFetchedResultControllerDelegateSample/NSFetchedResultControllerDelegateSample.xcdatamodel/elements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/NSFetchedResultControllerDelegateSample/NSFetchedResultControllerDelegateSample.xcdatamodel/elements -------------------------------------------------------------------------------- /NSFetchedResultControllerDelegateSample/NSFetchedResultControllerDelegateSample.xcdatamodel/layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/NSFetchedResultControllerDelegateSample/NSFetchedResultControllerDelegateSample.xcdatamodel/layout -------------------------------------------------------------------------------- /NSFetchedResultControllerDelegateSample/NSFetchedResultControllerDelegateSample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /NSFetchedResultControllerDelegateSample/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | NSHumanReadableCopyright = "© xcatsan, 2010"; 4 | -------------------------------------------------------------------------------- /NSFetchedResultControllerDelegateSample/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // NSFetchedResultControllerDelegateSample 4 | // 5 | // 6 | 7 | 8 | #import 9 | 10 | int main(int argc, char *argv[]) 11 | { 12 | 13 | NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; 14 | int retVal = UIApplicationMain(argc, argv, nil, nil); 15 | [pool release]; 16 | return retVal; 17 | 18 | } 19 | 20 | -------------------------------------------------------------------------------- /NSTimerBlocks/NSTimerBlocks_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'NSTimerBlocks' target in the 'NSTimerBlocks' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #import 8 | #endif 9 | -------------------------------------------------------------------------------- /NSTimerBlocks/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // NSTimerBlocks 4 | // 5 | // Created by Hiroshi Hashiguchi on 10/08/05. 6 | // Copyright 2010. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) { 12 | 13 | NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; 14 | int retVal = UIApplicationMain(argc, argv, nil, nil); 15 | [pool release]; 16 | return retVal; 17 | } 18 | -------------------------------------------------------------------------------- /NetworkReachable/NetworkReachable_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'NetworkReachable' target in the 'NetworkReachable' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #import 8 | #endif 9 | -------------------------------------------------------------------------------- /NetworkReachable/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // NetworkReachable 4 | // 5 | // Created by Hiroshi Hashiguchi on 10/08/12. 6 | // Copyright 2010. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) { 12 | 13 | NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; 14 | int retVal = UIApplicationMain(argc, argv, nil, nil); 15 | [pool release]; 16 | return retVal; 17 | } 18 | -------------------------------------------------------------------------------- /ObjcNewSample/Classes/ObjcNewSampleViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // ObjcNewSampleViewController.h 3 | // ObjcNewSample 4 | // 5 | // Created by Hiroshi Hashiguchi on 10/12/08. 6 | // Copyright 2010 . All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface ObjcNewSampleViewController : UIViewController { 12 | 13 | } 14 | 15 | @end 16 | 17 | -------------------------------------------------------------------------------- /ObjcNewSample/Classes/SampleModel.h: -------------------------------------------------------------------------------- 1 | // 2 | // SampleModel.h 3 | // ObjcNewSample 4 | // 5 | // Created by Hiroshi Hashiguchi on 10/12/08. 6 | // Copyright 2010 . All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | 12 | @interface SampleModel : NSObject { 13 | 14 | } 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /ObjcNewSample/Classes/SampleModel.m: -------------------------------------------------------------------------------- 1 | // 2 | // SampleModel.m 3 | // ObjcNewSample 4 | // 5 | // Created by Hiroshi Hashiguchi on 10/12/08. 6 | // Copyright 2010 . All rights reserved. 7 | // 8 | 9 | #import "SampleModel.h" 10 | 11 | @interface SampleModel() 12 | { 13 | NSString* name; 14 | } 15 | @property (nonatomic, copy) NSString* name; 16 | @end 17 | 18 | @implementation SampleModel 19 | 20 | -(NSString*)description 21 | { 22 | return self.name; 23 | } 24 | 25 | @end 26 | -------------------------------------------------------------------------------- /ObjcNewSample/ObjcNewSample_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'ObjcNewSample' target in the 'ObjcNewSample' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #import 8 | #endif 9 | -------------------------------------------------------------------------------- /ObjcNewSample/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // ObjcNewSample 4 | // 5 | // Created by Hiroshi Hashiguchi on 10/12/08. 6 | // Copyright 2010 . All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) { 12 | 13 | NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; 14 | int retVal = UIApplicationMain(argc, argv, nil, nil); 15 | [pool release]; 16 | return retVal; 17 | } 18 | -------------------------------------------------------------------------------- /PerformSelectorAfterDelay/PerformSelectorAfterDelay_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'PerformSelectorAfterDelay' target in the 'PerformSelectorAfterDelay' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #import 8 | #endif 9 | -------------------------------------------------------------------------------- /PerformSelectorAfterDelay/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // PerformSelectorAfterDelay 4 | // 5 | // Created by Hiroshi Hashiguchi on 10/07/30. 6 | // Copyright Hiroshi Hashiguchi 2010. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) { 12 | 13 | NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; 14 | int retVal = UIApplicationMain(argc, argv, nil, nil); 15 | [pool release]; 16 | return retVal; 17 | } 18 | -------------------------------------------------------------------------------- /PopupTableSample/PopupTableSample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /PopupTableSample/PopupTableSample.xcodeproj/project.xcworkspace/xcuserdata/hashi.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/PopupTableSample/PopupTableSample.xcodeproj/project.xcworkspace/xcuserdata/hashi.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /PopupTableSample/PopupTableSample.xcodeproj/project.xcworkspace/xcuserdata/hashi.xcuserdatad/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | HasAskedToTakeAutomaticSnapshotBeforeSignificantChanges 6 | 7 | SnapshotAutomaticallyBeforeSignificantChanges 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /PopupTableSample/PopupTableSample/PopupTableSample-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'PopupTableSample' target in the 'PopupTableSample' project 3 | // 4 | 5 | #import 6 | 7 | #ifndef __IPHONE_4_0 8 | #warning "This project uses features only available in iOS SDK 4.0 and later." 9 | #endif 10 | 11 | #ifdef __OBJC__ 12 | #import 13 | #import 14 | #endif 15 | -------------------------------------------------------------------------------- /PopupTableSample/PopupTableSample/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /PopupTableSample/PopupTableSample/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // PopupTableSample 4 | // 5 | // Created by Hiroshi Hashiguchi on 6/9/12. 6 | // Copyright (c) 2012 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | #import "AppDelegate.h" 12 | 13 | int main(int argc, char *argv[]) 14 | { 15 | @autoreleasepool { 16 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /PrettyFunction/Classes/ViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // PrettyFunctionViewController.h 3 | // PrettyFunction 4 | // 5 | // Created by Hiroshi Hashiguchi on 10/10/22. 6 | // Copyright 2010 . All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface ViewController : UIViewController { 12 | 13 | } 14 | 15 | @end 16 | 17 | -------------------------------------------------------------------------------- /PrettyFunction/PrettyFunction_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'PrettyFunction' target in the 'PrettyFunction' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #import 8 | #endif 9 | -------------------------------------------------------------------------------- /PrettyFunction/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // PrettyFunction 4 | // 5 | // Created by Hiroshi Hashiguchi on 10/10/22. 6 | // Copyright 2010 . All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) { 12 | 13 | NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; 14 | int retVal = UIApplicationMain(argc, argv, nil, nil); 15 | [pool release]; 16 | return retVal; 17 | } 18 | -------------------------------------------------------------------------------- /ProgressBarOnAlertView/Classes/ProgressBarOnAlertViewViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // ProgressBarOnAlertViewViewController.h 3 | // ProgressBarOnAlertView 4 | // 5 | // Created by Hiroshi Hashiguchi on 10/12/21. 6 | // Copyright 2010 . All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface ProgressBarOnAlertViewViewController : UIViewController { 12 | 13 | NSTimer* timer_; 14 | } 15 | 16 | - (IBAction)start:(id)sender; 17 | 18 | @end 19 | 20 | -------------------------------------------------------------------------------- /ProgressBarOnAlertView/ProgressBarOnAlertView_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'ProgressBarOnAlertView' target in the 'ProgressBarOnAlertView' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #import 8 | #endif 9 | -------------------------------------------------------------------------------- /ProgressBarOnAlertView/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // ProgressBarOnAlertView 4 | // 5 | // Created by Hiroshi Hashiguchi on 10/12/21. 6 | // Copyright 2010 . All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) { 12 | 13 | NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; 14 | int retVal = UIApplicationMain(argc, argv, nil, nil); 15 | [pool release]; 16 | return retVal; 17 | } 18 | -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/README -------------------------------------------------------------------------------- /ResponderChainStudy/ResponderChainStudy.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ResponderChainStudy/ResponderChainStudy/ResponderChainStudy-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'ResponderChainStudy' target in the 'ResponderChainStudy' project 3 | // 4 | 5 | #import 6 | 7 | #ifndef __IPHONE_3_0 8 | #warning "This project uses features only available in iPhone SDK 3.0 and later." 9 | #endif 10 | 11 | #ifdef __OBJC__ 12 | #import 13 | #import 14 | #endif 15 | -------------------------------------------------------------------------------- /ResponderChainStudy/ResponderChainStudy/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /ResponderChainStudy/ResponderChainStudy/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // ResponderChainStudy 4 | // 5 | // Created by Hiroshi Hashiguchi on 11/06/26. 6 | // Copyright 2011 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) 12 | { 13 | NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; 14 | int retVal = UIApplicationMain(argc, argv, nil, nil); 15 | [pool release]; 16 | return retVal; 17 | } 18 | -------------------------------------------------------------------------------- /RotateImageSample/RotateImageSample/RotateImageSample-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'RotateImageSample' target in the 'RotateImageSample' project 3 | // 4 | 5 | #import 6 | 7 | #ifndef __IPHONE_3_0 8 | #warning "This project uses features only available in iPhone SDK 3.0 and later." 9 | #endif 10 | 11 | #ifdef __OBJC__ 12 | #import 13 | #import 14 | #endif 15 | -------------------------------------------------------------------------------- /RotateImageSample/RotateImageSample/arrow_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/RotateImageSample/RotateImageSample/arrow_up.png -------------------------------------------------------------------------------- /RotateImageSample/RotateImageSample/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /RotateImageSample/RotateImageSample/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // RotateImageSample 4 | // 5 | // Created by Hiroshi Hashiguchi on 11/07/06. 6 | // Copyright 2011 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) 12 | { 13 | NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; 14 | int retVal = UIApplicationMain(argc, argv, nil, nil); 15 | [pool release]; 16 | return retVal; 17 | } 18 | -------------------------------------------------------------------------------- /SQLiteImporter/SQLiteImporter/RootViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // RootViewController.h 3 | // SQLiteImporter 4 | // 5 | // Created by Hiroshi Hashiguchi on 11/03/12. 6 | // Copyright 2011 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface RootViewController : UITableViewController { 12 | 13 | } 14 | 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /SQLiteImporter/SQLiteImporter/SQLiteImporter-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'SQLiteImporter' target in the 'SQLiteImporter' project 3 | // 4 | 5 | #import 6 | 7 | #ifndef __IPHONE_3_0 8 | #warning "This project uses features only available in iPhone SDK 3.0 and later." 9 | #endif 10 | 11 | #ifdef __OBJC__ 12 | #import 13 | #import 14 | #endif 15 | -------------------------------------------------------------------------------- /SQLiteImporter/SQLiteImporter/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /SQLiteImporter/SQLiteImporter/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // SQLiteImporter 4 | // 5 | // Created by Hiroshi Hashiguchi on 11/03/12. 6 | // Copyright 2011 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) 12 | { 13 | NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; 14 | int retVal = UIApplicationMain(argc, argv, nil, nil); 15 | [pool release]; 16 | return retVal; 17 | } 18 | -------------------------------------------------------------------------------- /SQLiteImporter/SQLiteImporterTests/SQLiteImporterTests-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'SQLiteImporterTests' target in the 'SQLiteImporterTests' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /SQLiteImporter/SQLiteImporterTests/SQLiteImporterTests.h: -------------------------------------------------------------------------------- 1 | // 2 | // SQLiteImporterTests.h 3 | // SQLiteImporterTests 4 | // 5 | // Created by Hiroshi Hashiguchi on 11/03/12. 6 | // Copyright 2011 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | 12 | @interface SQLiteImporterTests : SenTestCase { 13 | @private 14 | 15 | } 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /SQLiteImporter/SQLiteImporterTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /SQLiteSample/SQLiteSample/RootViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // RootViewController.h 3 | // SQLiteSample 4 | // 5 | // Created by Hiroshi Hashiguchi on 11/04/19. 6 | // Copyright 2011 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface RootViewController : UITableViewController { 12 | 13 | } 14 | 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /SQLiteSample/SQLiteSample/SQLiteManager.h: -------------------------------------------------------------------------------- 1 | // 2 | // SQLiteManager.h 3 | // SQLiteSample 4 | // 5 | // Created by Hiroshi Hashiguchi on 11/04/19. 6 | // Copyright 2011 __MyCompanyName__. All rights reserved. 7 | // 8 | #import 9 | 10 | #import 11 | 12 | 13 | @interface SQLiteManager : NSObject { 14 | 15 | sqlite3* db_; 16 | } 17 | 18 | + (SQLiteManager*)sharedManager; 19 | 20 | @end 21 | -------------------------------------------------------------------------------- /SQLiteSample/SQLiteSample/SQLiteSample-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'SQLiteSample' target in the 'SQLiteSample' project 3 | // 4 | 5 | #import 6 | 7 | #ifndef __IPHONE_3_0 8 | #warning "This project uses features only available in iPhone SDK 3.0 and later." 9 | #endif 10 | 11 | #ifdef __OBJC__ 12 | #import 13 | #import 14 | #endif 15 | -------------------------------------------------------------------------------- /SQLiteSample/SQLiteSample/Table.sql: -------------------------------------------------------------------------------- 1 | CREATE TABLE access_log 2 | ( 3 | timestamp REAL, 4 | screen_name TEXT, 5 | parameters TEXT, 6 | option TEXT 7 | ); 8 | -------------------------------------------------------------------------------- /SQLiteSample/SQLiteSample/access_log.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/SQLiteSample/SQLiteSample/access_log.db -------------------------------------------------------------------------------- /SQLiteSample/SQLiteSample/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /SQLiteSample/SQLiteSample/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // SQLiteSample 4 | // 5 | // Created by Hiroshi Hashiguchi on 11/04/19. 6 | // Copyright 2011 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) 12 | { 13 | NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; 14 | int retVal = UIApplicationMain(argc, argv, nil, nil); 15 | [pool release]; 16 | return retVal; 17 | } 18 | -------------------------------------------------------------------------------- /SampleKit/Headers/NSString+Extension.h: -------------------------------------------------------------------------------- 1 | // 2 | // NSString+Extension.h 3 | // SampleKit 4 | // 5 | // Created by Hiroshi Hashiguchi on 10/11/24. 6 | // Copyright 2010 . All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | 12 | @interface NSString (Extension) 13 | 14 | - (NSString*)extString; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /SampleKit/Headers/SampleClass.h: -------------------------------------------------------------------------------- 1 | // 2 | // SampleClass.h 3 | // MacOSFramework 4 | // 5 | // Created by Hiroshi Hashiguchi on 10/11/05. 6 | // Copyright 2010 . All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | 12 | @interface SampleClass : NSObject { 13 | 14 | } 15 | 16 | - (NSString*)stringHello; 17 | 18 | @end 19 | -------------------------------------------------------------------------------- /SampleKit/NSString+Extension.m: -------------------------------------------------------------------------------- 1 | // 2 | // NSString+Extension.m 3 | // SampleKit 4 | // 5 | // Created by Hiroshi Hashiguchi on 10/11/24. 6 | // Copyright 2010 . All rights reserved. 7 | // 8 | 9 | #import "NSString+Extension.h" 10 | 11 | 12 | @implementation NSString (Extension) 13 | 14 | - (NSString*)extString 15 | { 16 | return @"Extension!"; 17 | } 18 | 19 | @end 20 | -------------------------------------------------------------------------------- /SampleKit/SampleClass.m: -------------------------------------------------------------------------------- 1 | // 2 | // SampleClass.m 3 | // MacOSFramework 4 | // 5 | // Created by Hiroshi Hashiguchi on 10/11/05. 6 | // Copyright 2010 . All rights reserved. 7 | // 8 | 9 | #import "SampleClass.h" 10 | 11 | 12 | @implementation SampleClass 13 | 14 | - (NSString*)stringHello 15 | { 16 | return @"Hello mac!"; 17 | } 18 | 19 | @end 20 | -------------------------------------------------------------------------------- /SampleKit/SampleKit_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'CocoaTouchStaticLibrary' target in the 'CocoaTouchStaticLibrary' project. 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /SampleKitClient/Classes/SampleKitClientViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // SampleKitClientViewController.h 3 | // SampleKitClient 4 | // 5 | // Created by Hiroshi Hashiguchi on 10/11/15. 6 | // Copyright 2010 . All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface SampleKitClientViewController : UIViewController { 12 | 13 | } 14 | 15 | @end 16 | 17 | -------------------------------------------------------------------------------- /SampleKitClient/SampleKitClient_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'SampleKitClient' target in the 'SampleKitClient' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #import 8 | #endif 9 | -------------------------------------------------------------------------------- /SampleKitClient/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // SampleKitClient 4 | // 5 | // Created by Hiroshi Hashiguchi on 10/11/15. 6 | // Copyright 2010 . All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) { 12 | 13 | NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; 14 | int retVal = UIApplicationMain(argc, argv, nil, nil); 15 | [pool release]; 16 | return retVal; 17 | } 18 | -------------------------------------------------------------------------------- /SampleLibrary/SampleClass.h: -------------------------------------------------------------------------------- 1 | // 2 | // SampleClass.h 3 | // SampleLibrary 4 | // 5 | // Created by Hiroshi Hashiguchi on 10/11/05. 6 | // Copyright 2010 . All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | 12 | @interface SampleClass : NSObject { 13 | 14 | } 15 | 16 | - (NSString*)stringHello; 17 | 18 | @end 19 | -------------------------------------------------------------------------------- /SampleLibrary/SampleClass.m: -------------------------------------------------------------------------------- 1 | // 2 | // SampleClass.m 3 | // SampleLibrary 4 | // 5 | // Created by Hiroshi Hashiguchi on 10/11/05. 6 | // Copyright 2010 . All rights reserved. 7 | // 8 | 9 | #import "SampleClass.h" 10 | 11 | 12 | @implementation SampleClass 13 | 14 | - (NSString*)stringHello 15 | { 16 | return @"Hello world!"; 17 | } 18 | 19 | @end 20 | -------------------------------------------------------------------------------- /SampleLibrary/SampleLibrary_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'CocoaTouchStaticLibrary' target in the 'CocoaTouchStaticLibrary' project. 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /ScrollViewPaging/Classes/ScrollViewPagingViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // ScrollViewPagingViewController.h 3 | // ScrollViewPaging 4 | // 5 | // Created by Hiroshi Hashiguchi on 10/10/06. 6 | // Copyright 2010 . All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface ScrollViewPagingViewController : UIViewController { 12 | 13 | UIScrollView* scrollView; 14 | } 15 | @property (nonatomic, retain) IBOutlet UIScrollView* scrollView; 16 | 17 | @end 18 | 19 | -------------------------------------------------------------------------------- /ScrollViewPaging/CustomView.h: -------------------------------------------------------------------------------- 1 | // 2 | // CustomView.h 3 | // ScrollViewPaging 4 | // 5 | // Created by Hiroshi Hashiguchi on 10/10/06. 6 | // Copyright 2010 . All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | 12 | @interface CustomView : UIView { 13 | 14 | UIColor* color; 15 | } 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /ScrollViewPaging/ScrollViewPaging_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'ScrollViewPaging' target in the 'ScrollViewPaging' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #import 8 | #endif 9 | -------------------------------------------------------------------------------- /ScrollViewPaging/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // ScrollViewPaging 4 | // 5 | // Created by Hiroshi Hashiguchi on 10/10/06. 6 | // Copyright 2010 . All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) { 12 | 13 | NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; 14 | int retVal = UIApplicationMain(argc, argv, nil, nil); 15 | [pool release]; 16 | return retVal; 17 | } 18 | -------------------------------------------------------------------------------- /ScrollViewZooming/ScrollViewZooming_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'ScrollViewZooming' target in the 'ScrollViewZooming' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #import 8 | #endif 9 | -------------------------------------------------------------------------------- /ScrollViewZooming/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // ScrollViewZooming 4 | // 5 | // Created by Hiroshi Hashiguchi on 10/10/04. 6 | // Copyright 2010 . All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) { 12 | 13 | NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; 14 | int retVal = UIApplicationMain(argc, argv, nil, nil); 15 | [pool release]; 16 | return retVal; 17 | } 18 | -------------------------------------------------------------------------------- /ScrollViewZooming/sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/ScrollViewZooming/sample.png -------------------------------------------------------------------------------- /SearchSample/Classes/CustomCell.h: -------------------------------------------------------------------------------- 1 | // 2 | // CustomCell.h 3 | // SearchSample 4 | // 5 | // Created by Hiroshi Hashiguchi on 10/08/02. 6 | // Copyright 2010 . All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | 12 | @interface CustomCell : UITableViewCell { 13 | 14 | } 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /SearchSample/SearchSample.xcdatamodeld/.xccurrentversion: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | _XCCurrentVersionName 6 | SearchSample.xcdatamodel 7 | 8 | 9 | -------------------------------------------------------------------------------- /SearchSample/SearchSample.xcdatamodeld/SearchSample.xcdatamodel/elements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/SearchSample/SearchSample.xcdatamodeld/SearchSample.xcdatamodel/elements -------------------------------------------------------------------------------- /SearchSample/SearchSample.xcdatamodeld/SearchSample.xcdatamodel/layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/SearchSample/SearchSample.xcdatamodeld/SearchSample.xcdatamodel/layout -------------------------------------------------------------------------------- /SearchSample/SearchSample_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'SearchSample' target in the 'SearchSample' project 3 | // 4 | 5 | #import 6 | 7 | #ifndef __IPHONE_3_0 8 | #warning "This project uses features only available in iPhone SDK 3.0 and later." 9 | #endif 10 | 11 | 12 | #ifdef __OBJC__ 13 | #import 14 | #import 15 | #import 16 | #endif 17 | -------------------------------------------------------------------------------- /SearchSample/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // SearchSample 4 | // 5 | // Created by Hiroshi Hashiguchi on 10/07/21. 6 | // Copyright Hiroshi Hashiguchi 2010. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) { 12 | 13 | NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; 14 | int retVal = UIApplicationMain(argc, argv, nil, nil); 15 | [pool release]; 16 | return retVal; 17 | } 18 | -------------------------------------------------------------------------------- /SoundSamples/AIFF_BEI16.aif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/SoundSamples/AIFF_BEI16.aif -------------------------------------------------------------------------------- /SoundSamples/AIFF_BEI16@22050.aif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/SoundSamples/AIFF_BEI16@22050.aif -------------------------------------------------------------------------------- /SoundSamples/AIFF_itunes.aif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/SoundSamples/AIFF_itunes.aif -------------------------------------------------------------------------------- /SoundSamples/CAFF_LEI16.caf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/SoundSamples/CAFF_LEI16.caf -------------------------------------------------------------------------------- /SoundSamples/CAFF_LEI16@22050.caf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/SoundSamples/CAFF_LEI16@22050.caf -------------------------------------------------------------------------------- /SoundSamples/MP3_original.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/SoundSamples/MP3_original.mp3 -------------------------------------------------------------------------------- /SoundSamples/SoundSamples_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'SoundSamples' target in the 'SoundSamples' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #import 8 | #endif 9 | -------------------------------------------------------------------------------- /SoundSamples/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // SoundSamples 4 | // 5 | // Created by Hiroshi Hashiguchi on 10/09/07. 6 | // Copyright 2010. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) { 12 | 13 | NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; 14 | int retVal = UIApplicationMain(argc, argv, nil, nil); 15 | [pool release]; 16 | return retVal; 17 | } 18 | -------------------------------------------------------------------------------- /SplitViewBaseSample/Classes/SubViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // SubViewController.h 3 | // SplitViewBaseSample 4 | // 5 | // Created by Hiroshi Hashiguchi on 11/01/07. 6 | // Copyright 2011 . All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | 12 | @interface SubViewController : UITableViewController { 13 | 14 | } 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /SplitViewBaseSample/SplitViewBaseSample_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'SplitViewBaseSample' target in the 'SplitViewBaseSample' project 3 | // 4 | #import 5 | 6 | #ifndef __IPHONE_3_2 7 | #warning "This project uses features only available in iPhone SDK 3.2 and later." 8 | #endif 9 | 10 | 11 | #ifdef __OBJC__ 12 | #import 13 | #import 14 | #endif 15 | -------------------------------------------------------------------------------- /SplitViewBaseSample/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // SplitViewBaseSample 4 | // 5 | // Created by Hiroshi Hashiguchi on 11/01/07. 6 | // Copyright 2011 . All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) { 12 | 13 | NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; 14 | int retVal = UIApplicationMain(argc, argv, nil, nil); 15 | [pool release]; 16 | return retVal; 17 | } 18 | -------------------------------------------------------------------------------- /SplitViewSample/SplitViewSample/MasterViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // MasterViewController.h 3 | // SplitViewSample 4 | // 5 | // Created by 橋口 湖 on 2/16/12. 6 | // Copyright (c) 2012 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @class DetailViewController; 12 | 13 | @interface MasterViewController : UITableViewController 14 | 15 | @property (strong, nonatomic) DetailViewController *detailViewController; 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /SplitViewSample/SplitViewSample/SplitViewSample-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'SplitViewSample' target in the 'SplitViewSample' project 3 | // 4 | 5 | #import 6 | 7 | #ifndef __IPHONE_4_0 8 | #warning "This project uses features only available in iOS SDK 4.0 and later." 9 | #endif 10 | 11 | #ifdef __OBJC__ 12 | #import 13 | #import 14 | #endif 15 | -------------------------------------------------------------------------------- /SplitViewSample/SplitViewSample/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /SplitViewSample/SplitViewSample/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // SplitViewSample 4 | // 5 | // Created by 橋口 湖 on 2/16/12. 6 | // Copyright (c) 2012 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | #import "AppDelegate.h" 12 | 13 | int main(int argc, char *argv[]) 14 | { 15 | @autoreleasepool { 16 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /StaticLibrarySample/StaticLibrarySample_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'CocoaTouchStaticLibrary' target in the 'CocoaTouchStaticLibrary' project. 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /StaticLibrarySample/XCSampleClass.h: -------------------------------------------------------------------------------- 1 | // 2 | // XCSampleClass.h 3 | // StaticLibrarySample 4 | // 5 | // Created by Hiroshi Hashiguchi on 10/11/02. 6 | // Copyright 2010 . All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface XCSampleClass : NSObject { 12 | 13 | } 14 | 15 | - (NSString*)helloString; 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /StaticLibrarySample/XCSampleClass.m: -------------------------------------------------------------------------------- 1 | // 2 | // XCSampleClass.m 3 | // StaticLibrarySample 4 | // 5 | // Created by Hiroshi Hashiguchi on 10/11/02. 6 | // Copyright 2010 . All rights reserved. 7 | // 8 | 9 | #import "XCSampleClass.h" 10 | 11 | 12 | @implementation XCSampleClass 13 | 14 | - (NSString*)helloString 15 | { 16 | return @"Hellow World"; 17 | } 18 | 19 | @end 20 | -------------------------------------------------------------------------------- /StudyUnitTest/SampleClass.h: -------------------------------------------------------------------------------- 1 | // 2 | // SampleClass.h 3 | // StudyUnitTest 4 | // 5 | // Created by Hiroshi Hashiguchi on 10/11/20. 6 | // Copyright 2010 . All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | 12 | @interface SampleClass : NSObject { 13 | 14 | } 15 | 16 | - (NSString*)greeting; 17 | 18 | @end 19 | -------------------------------------------------------------------------------- /StudyUnitTest/SampleClass.m: -------------------------------------------------------------------------------- 1 | // 2 | // SampleClass.m 3 | // StudyUnitTest 4 | // 5 | // Created by Hiroshi Hashiguchi on 10/11/20. 6 | // Copyright 2010 . All rights reserved. 7 | // 8 | 9 | #import "SampleClass.h" 10 | 11 | 12 | @implementation SampleClass 13 | 14 | - (NSString*)greeting 15 | { 16 | return @"Hello"; 17 | } 18 | 19 | @end 20 | -------------------------------------------------------------------------------- /StudyUnitTest/SecondTest.m: -------------------------------------------------------------------------------- 1 | // 2 | // SecondTest.m 3 | // StudyUnitTest 4 | // 5 | // Created by Hiroshi Hashiguchi on 10/11/20. 6 | // Copyright 2010 . All rights reserved. 7 | // 8 | 9 | #import "SecondTest.h" 10 | 11 | 12 | @implementation SecondTest 13 | 14 | - (void) atestMath { 15 | 16 | STAssertTrue((1+1)==3, @"Compiler isn't feeling well today :-(" ); 17 | } 18 | 19 | @end 20 | -------------------------------------------------------------------------------- /StudyUnitTest/StudyUnitTest_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'CocoaTouchStaticLibrary' target in the 'CocoaTouchStaticLibrary' project. 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /TableHeader/TableHeader_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'TableHeader' target in the 'TableHeader' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #import 8 | #endif 9 | -------------------------------------------------------------------------------- /TableHeader/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // TableHeader 4 | // 5 | // Created by Hiroshi Hashiguchi on 10/07/26. 6 | // Copyright 2010. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) { 12 | 13 | NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; 14 | int retVal = UIApplicationMain(argc, argv, nil, nil); 15 | [pool release]; 16 | return retVal; 17 | } 18 | -------------------------------------------------------------------------------- /TaskSample/TaskSample/TaskSample-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'TaskSample' target in the 'TaskSample' project 3 | // 4 | 5 | #import 6 | 7 | #ifndef __IPHONE_3_0 8 | #warning "This project uses features only available in iPhone SDK 3.0 and later." 9 | #endif 10 | 11 | #ifdef __OBJC__ 12 | #import 13 | #import 14 | #endif 15 | -------------------------------------------------------------------------------- /TaskSample/TaskSample/TaskSampleAppDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // TaskSampleAppDelegate.h 3 | // TaskSample 4 | // 5 | // Created by 橋口 湖 on 11/03/07. 6 | // Copyright 2011 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface TaskSampleAppDelegate : NSObject { 12 | 13 | } 14 | 15 | @property (nonatomic, retain) IBOutlet UIWindow *window; 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /TaskSample/TaskSample/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /TaskSample/TaskSample/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // TaskSample 4 | // 5 | // Created by 橋口 湖 on 11/03/07. 6 | // Copyright 2011 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) 12 | { 13 | NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; 14 | int retVal = UIApplicationMain(argc, argv, nil, nil); 15 | [pool release]; 16 | return retVal; 17 | } 18 | -------------------------------------------------------------------------------- /TextInputStudy/TextInputStudy.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /TextInputStudy/TextInputStudy.xcodeproj/project.xcworkspace/xcuserdata/hashi.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/TextInputStudy/TextInputStudy.xcodeproj/project.xcworkspace/xcuserdata/hashi.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /TextInputStudy/TextInputStudy.xcodeproj/project.xcworkspace/xcuserdata/hashi.xcuserdatad/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | HasAskedToTakeAutomaticSnapshotBeforeSignificantChanges 6 | 7 | SnapshotAutomaticallyBeforeSignificantChanges 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /TextInputStudy/TextInputStudy.xcodeproj/xcuserdata/hashi.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /TextInputStudy/TextInputStudy/TextInputStudy-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'TextInputStudy' target in the 'TextInputStudy' project 3 | // 4 | 5 | #import 6 | 7 | #ifndef __IPHONE_4_0 8 | #warning "This project uses features only available in iOS SDK 4.0 and later." 9 | #endif 10 | 11 | #ifdef __OBJC__ 12 | #import 13 | #import 14 | #endif 15 | -------------------------------------------------------------------------------- /TextInputStudy/TextInputStudy/ViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.h 3 | // TextInputStudy 4 | // 5 | // Created by Hiroshi Hashiguchi on 4/15/12. 6 | // Copyright (c) 2012 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface ViewController : UIViewController 12 | @property (strong, nonatomic) IBOutlet UITextView *textView; 13 | - (IBAction)check:(id)sender; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /TextInputStudy/TextInputStudy/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /TextInputStudy/TextInputStudy/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // TextInputStudy 4 | // 5 | // Created by Hiroshi Hashiguchi on 4/15/12. 6 | // Copyright (c) 2012 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | #import "AppDelegate.h" 12 | 13 | int main(int argc, char *argv[]) 14 | { 15 | @autoreleasepool { 16 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /TextViewStudy/TextViewStudy/AppDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.h 3 | // TextViewStudy 4 | // 5 | // Created by 橋口 湖 on 4/3/12. 6 | // Copyright (c) 2012 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @class ViewController; 12 | 13 | @interface AppDelegate : UIResponder 14 | 15 | @property (strong, nonatomic) UIWindow *window; 16 | 17 | @property (strong, nonatomic) ViewController *viewController; 18 | 19 | @end 20 | -------------------------------------------------------------------------------- /TextViewStudy/TextViewStudy/TextViewStudy-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'TextViewStudy' target in the 'TextViewStudy' project 3 | // 4 | 5 | #import 6 | 7 | #ifndef __IPHONE_4_0 8 | #warning "This project uses features only available in iOS SDK 4.0 and later." 9 | #endif 10 | 11 | #ifdef __OBJC__ 12 | #import 13 | #import 14 | #endif 15 | -------------------------------------------------------------------------------- /TextViewStudy/TextViewStudy/ViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.h 3 | // TextViewStudy 4 | // 5 | // Created by 橋口 湖 on 4/3/12. 6 | // Copyright (c) 2012 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface ViewController : UIViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /TextViewStudy/TextViewStudy/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /TextViewStudy/TextViewStudy/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // TextViewStudy 4 | // 5 | // Created by 橋口 湖 on 4/3/12. 6 | // Copyright (c) 2012 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | #import "AppDelegate.h" 12 | 13 | int main(int argc, char *argv[]) 14 | { 15 | @autoreleasepool { 16 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /TransitionSample/TransitionSample_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'TransitionSample' target in the 'TransitionSample' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #import 8 | #endif 9 | -------------------------------------------------------------------------------- /TransitionSample/image01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/TransitionSample/image01.jpg -------------------------------------------------------------------------------- /TransitionSample/image02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/TransitionSample/image02.jpg -------------------------------------------------------------------------------- /TransitionSample/image03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/TransitionSample/image03.jpg -------------------------------------------------------------------------------- /TransitionSample/image04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/TransitionSample/image04.jpg -------------------------------------------------------------------------------- /TransitionSample/image05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/TransitionSample/image05.jpg -------------------------------------------------------------------------------- /TransitionSample/image06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/TransitionSample/image06.jpg -------------------------------------------------------------------------------- /TransitionSample/image07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/TransitionSample/image07.jpg -------------------------------------------------------------------------------- /TransitionSample/image08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/TransitionSample/image08.jpg -------------------------------------------------------------------------------- /TransitionSample/link.webloc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/TransitionSample/link.webloc -------------------------------------------------------------------------------- /TransitionSample/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // TransitionSample 4 | // 5 | // Created by Hiroshi Hashiguchi on 10/10/14. 6 | // Copyright 2010 . All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) { 12 | 13 | NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; 14 | int retVal = UIApplicationMain(argc, argv, nil, nil); 15 | [pool release]; 16 | return retVal; 17 | } 18 | -------------------------------------------------------------------------------- /TransitionSample2/TransitionSample2_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'TransitionSample2' target in the 'TransitionSample2' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #import 8 | #endif 9 | -------------------------------------------------------------------------------- /TransitionSample2/image01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/TransitionSample2/image01.jpg -------------------------------------------------------------------------------- /TransitionSample2/image02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/TransitionSample2/image02.jpg -------------------------------------------------------------------------------- /TransitionSample2/image03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/TransitionSample2/image03.jpg -------------------------------------------------------------------------------- /TransitionSample2/image04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/TransitionSample2/image04.jpg -------------------------------------------------------------------------------- /TransitionSample2/image05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/TransitionSample2/image05.jpg -------------------------------------------------------------------------------- /TransitionSample2/image06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/TransitionSample2/image06.jpg -------------------------------------------------------------------------------- /TransitionSample2/image07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/TransitionSample2/image07.jpg -------------------------------------------------------------------------------- /TransitionSample2/image08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/TransitionSample2/image08.jpg -------------------------------------------------------------------------------- /TransitionSample2/link.webloc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/TransitionSample2/link.webloc -------------------------------------------------------------------------------- /TransitionSample2/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // TransitionSample2 4 | // 5 | // Created by Hiroshi Hashiguchi on 10/10/14. 6 | // Copyright 2010 . All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) { 12 | 13 | NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; 14 | int retVal = UIApplicationMain(argc, argv, nil, nil); 15 | [pool release]; 16 | return retVal; 17 | } 18 | -------------------------------------------------------------------------------- /UIApplicationNotification/Classes/UIApplicationNotificationViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // UIApplicationNotificationViewController.h 3 | // UIApplicationNotification 4 | // 5 | // Created by Hiroshi Hashiguchi on 10/09/14. 6 | // Copyright 2010. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface UIApplicationNotificationViewController : UIViewController { 12 | 13 | } 14 | 15 | @end 16 | 17 | -------------------------------------------------------------------------------- /UIApplicationNotification/UIApplicationNotification_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'UIApplicationNotification' target in the 'UIApplicationNotification' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #import 8 | #endif 9 | -------------------------------------------------------------------------------- /UIApplicationNotification/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // UIApplicationNotification 4 | // 5 | // Created by Hiroshi Hashiguchi on 10/09/14. 6 | // Copyright 2010. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) { 12 | 13 | NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; 14 | int retVal = UIApplicationMain(argc, argv, nil, nil); 15 | [pool release]; 16 | return retVal; 17 | } 18 | -------------------------------------------------------------------------------- /UIDeviceSample/Classes/RootViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // RootViewController.h 3 | // UIDeviceSample 4 | // 5 | // Created by Hiroshi Hashiguchi on 10/09/12. 6 | // Copyright Hiroshi Hashiguchi 2010. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface RootViewController : UITableViewController { 12 | 13 | NSArray* tasks; 14 | NSArray* properties; 15 | } 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /UIDeviceSample/UIDeviceSample_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'UIDeviceSample' target in the 'UIDeviceSample' project 3 | // 4 | #import 5 | 6 | #ifndef __IPHONE_3_0 7 | #warning "This project uses features only available in iPhone SDK 3.0 and later." 8 | #endif 9 | 10 | 11 | #ifdef __OBJC__ 12 | #import 13 | #import 14 | #endif 15 | -------------------------------------------------------------------------------- /UIDeviceSample/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // UIDeviceSample 4 | // 5 | // Created by Hiroshi Hashiguchi on 10/09/12. 6 | // Copyright Hiroshi Hashiguchi 2010. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) { 12 | 13 | NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; 14 | int retVal = UIApplicationMain(argc, argv, nil, nil); 15 | [pool release]; 16 | return retVal; 17 | } 18 | -------------------------------------------------------------------------------- /UUTypeSample/UUTypeSample_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'UUTypeSample' target in the 'UUTypeSample' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #import 8 | #endif 9 | -------------------------------------------------------------------------------- /UUTypeSample/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // UUTypeSample 4 | // 5 | // Created by Hiroshi Hashiguchi on 10/08/12. 6 | // Copyright 2010. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) { 12 | 13 | NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; 14 | int retVal = UIApplicationMain(argc, argv, nil, nil); 15 | [pool release]; 16 | return retVal; 17 | } 18 | -------------------------------------------------------------------------------- /UniversalStaticLibrary/UniversalStaticLibrary_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'CocoaTouchStaticLibrary' target in the 'CocoaTouchStaticLibrary' project. 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /UniversalStaticLibrary/XCSampleClass.h: -------------------------------------------------------------------------------- 1 | // 2 | // XCSampleClass.h 3 | // StaticLibrarySample 4 | // 5 | // Created by Hiroshi Hashiguchi on 10/11/02. 6 | // Copyright 2010 . All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface XCSampleClass : NSObject { 12 | 13 | } 14 | 15 | - (NSString*)helloString; 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /UniversalStaticLibrary/XCSampleClass.m: -------------------------------------------------------------------------------- 1 | // 2 | // XCSampleClass.m 3 | // StaticLibrarySample 4 | // 5 | // Created by Hiroshi Hashiguchi on 10/11/02. 6 | // Copyright 2010 . All rights reserved. 7 | // 8 | 9 | #import "XCSampleClass.h" 10 | 11 | 12 | @implementation XCSampleClass 13 | 14 | - (NSString*)helloString 15 | { 16 | return @"Hello World"; 17 | } 18 | 19 | @end 20 | -------------------------------------------------------------------------------- /UniversalStaticLibraryClient/Classes/XCSampleClass.h: -------------------------------------------------------------------------------- 1 | // 2 | // XCSampleClass.h 3 | // StaticLibrarySample 4 | // 5 | // Created by Hiroshi Hashiguchi on 10/11/02. 6 | // Copyright 2010 . All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface XCSampleClass : NSObject { 12 | 13 | } 14 | 15 | - (NSString*)helloString; 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /UniversalStaticLibraryClient/UniversalStaticLibrary.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/UniversalStaticLibraryClient/UniversalStaticLibrary.a -------------------------------------------------------------------------------- /UniversalStaticLibraryClient/UniversalStaticLibraryClient_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'UniversalStaticLibraryClient' target in the 'UniversalStaticLibraryClient' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #import 8 | #endif 9 | -------------------------------------------------------------------------------- /UniversalStaticLibraryClient/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // UniversalStaticLibraryClient 4 | // 5 | // Created by Hiroshi Hashiguchi on 10/11/09. 6 | // Copyright 2010 . All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) { 12 | 13 | NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; 14 | int retVal = UIApplicationMain(argc, argv, nil, nil); 15 | [pool release]; 16 | return retVal; 17 | } 18 | -------------------------------------------------------------------------------- /UsingStaticLibrarySample/Classes/UsingStaticLibrarySampleViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // UsingStaticLibrarySampleViewController.h 3 | // UsingStaticLibrarySample 4 | // 5 | // Created by Hiroshi Hashiguchi on 10/11/02. 6 | // Copyright 2010 . All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface UsingStaticLibrarySampleViewController : UIViewController { 12 | 13 | UILabel* label; 14 | } 15 | @property (nonatomic, retain) IBOutlet UILabel* label; 16 | 17 | @end 18 | 19 | -------------------------------------------------------------------------------- /UsingStaticLibrarySample/UsingStaticLibrarySample_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'UsingStaticLibrarySample' target in the 'UsingStaticLibrarySample' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #import 8 | #endif 9 | -------------------------------------------------------------------------------- /UsingStaticLibrarySample/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // UsingStaticLibrarySample 4 | // 5 | // Created by Hiroshi Hashiguchi on 10/11/02. 6 | // Copyright 2010 . All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) { 12 | 13 | NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; 14 | int retVal = UIApplicationMain(argc, argv, nil, nil); 15 | [pool release]; 16 | return retVal; 17 | } 18 | -------------------------------------------------------------------------------- /ViewControllerMemorySample/Classes/SubSubViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // SubSubViewController.h 3 | // ViewControllerMemorySample 4 | // 5 | // Created by Hiroshi Hashiguchi on 10/10/19. 6 | // Copyright 2010 . All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | 12 | @interface SubSubViewController : UIViewController { 13 | 14 | UIImageView* parentImageView; 15 | } 16 | 17 | @property (nonatomic, assign) UIImageView* parentImageView; 18 | 19 | 20 | @end 21 | -------------------------------------------------------------------------------- /ViewControllerMemorySample/ViewControllerMemorySample_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'ViewControllerMemorySample' target in the 'ViewControllerMemorySample' project 3 | // 4 | #import 5 | 6 | #ifndef __IPHONE_3_0 7 | #warning "This project uses features only available in iPhone SDK 3.0 and later." 8 | #endif 9 | 10 | 11 | #ifdef __OBJC__ 12 | #import 13 | #import 14 | #endif 15 | -------------------------------------------------------------------------------- /ViewControllerMemorySample/image01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/ViewControllerMemorySample/image01.jpg -------------------------------------------------------------------------------- /ViewControllerMemorySample/image03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcatsan/iOS-Sample-Code/57766d583b871730e4150b2c7e68271bf8dd4ae9/ViewControllerMemorySample/image03.jpg -------------------------------------------------------------------------------- /ViewControllerMemorySample/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // ViewControllerMemorySample 4 | // 5 | // Created by Hiroshi Hashiguchi on 10/10/19. 6 | // Copyright 2010 . All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) { 12 | 13 | NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; 14 | int retVal = UIApplicationMain(argc, argv, nil, nil); 15 | [pool release]; 16 | return retVal; 17 | } 18 | -------------------------------------------------------------------------------- /WaitScreenSample/WaitScreenSample_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'WaitScreenSample' target in the 'WaitScreenSample' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #import 8 | #endif 9 | -------------------------------------------------------------------------------- /WaitScreenSample/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // WaitScreenSample 4 | // 5 | // Created by Hiroshi Hashiguchi on 10/09/13. 6 | // Copyright 2010. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) { 12 | 13 | NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; 14 | int retVal = UIApplicationMain(argc, argv, nil, nil); 15 | [pool release]; 16 | return retVal; 17 | } 18 | -------------------------------------------------------------------------------- /XcodeMacro/Classes/ViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // XcodeMacroViewController.h 3 | // XcodeMacro 4 | // 5 | // Created by Hiroshi Hashiguchi on 10/10/22. 6 | // Copyright 2010 . All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface ViewController : UIViewController { 12 | 13 | } 14 | 15 | @end 16 | 17 | -------------------------------------------------------------------------------- /XcodeMacro/XcodeMacro_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'XcodeMacro' target in the 'XcodeMacro' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #import 8 | #endif 9 | -------------------------------------------------------------------------------- /XcodeMacro/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // XcodeMacro 4 | // 5 | // Created by Hiroshi Hashiguchi on 10/10/22. 6 | // Copyright 2010 . All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) { 12 | 13 | NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; 14 | int retVal = UIApplicationMain(argc, argv, nil, nil); 15 | [pool release]; 16 | return retVal; 17 | } 18 | -------------------------------------------------------------------------------- /ftsSample/ftsSample/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /ftsSample/ftsSample/ftsSample-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'ftsSample' target in the 'ftsSample' project 3 | // 4 | 5 | #import 6 | 7 | #ifndef __IPHONE_3_0 8 | #warning "This project uses features only available in iPhone SDK 3.0 and later." 9 | #endif 10 | 11 | #ifdef __OBJC__ 12 | #import 13 | #import 14 | #endif 15 | -------------------------------------------------------------------------------- /ftsSample/ftsSample/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // ftsSample 4 | // 5 | // Created by 橋口 湖 on 11/03/04. 6 | // Copyright 2011 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) 12 | { 13 | NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; 14 | int retVal = UIApplicationMain(argc, argv, nil, nil); 15 | [pool release]; 16 | return retVal; 17 | } 18 | -------------------------------------------------------------------------------- /j.rb: -------------------------------------------------------------------------------- 1 | require 'digest/md5' 2 | hoge = Digest::MD5.new.update('000789_20MOB10Y11LOG24'); 3 | puts hoge 4 | 5 | --------------------------------------------------------------------------------