├── .gitignore ├── README.md ├── iOSHelper-For-Mac.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── xcuserdata │ │ └── Fidetro.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── Fidetro.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ └── xcschememanagement.plist ├── iOSHelper-For-Mac ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json ├── Base.lproj │ └── Main.storyboard ├── CellCodeViewController.h ├── CellCodeViewController.m ├── CustomTextView.h ├── CustomTextView.m ├── FindCNViewController.h ├── FindCNViewController.m ├── Info.plist ├── InitViewController.h ├── InitViewController.m ├── JSONToPropertyViewController.h ├── JSONToPropertyViewController.m ├── LazyGetViewController.h ├── LazyGetViewController.m ├── MainTabViewController.h ├── MainTabViewController.m ├── RegexHelper.h ├── RegexHelper.m ├── TranslationViewController.h ├── TranslationViewController.m ├── cat.png ├── iOSHelper_For_Mac.entitlements └── main.m ├── src ├── 1.gif ├── 2.gif ├── 3.gif ├── 4.gif └── 5.gif └── test.numbers /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fidetro/iOSHelper-For-Mac/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fidetro/iOSHelper-For-Mac/HEAD/README.md -------------------------------------------------------------------------------- /iOSHelper-For-Mac.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fidetro/iOSHelper-For-Mac/HEAD/iOSHelper-For-Mac.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /iOSHelper-For-Mac.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fidetro/iOSHelper-For-Mac/HEAD/iOSHelper-For-Mac.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /iOSHelper-For-Mac.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fidetro/iOSHelper-For-Mac/HEAD/iOSHelper-For-Mac.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /iOSHelper-For-Mac.xcodeproj/project.xcworkspace/xcuserdata/Fidetro.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fidetro/iOSHelper-For-Mac/HEAD/iOSHelper-For-Mac.xcodeproj/project.xcworkspace/xcuserdata/Fidetro.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /iOSHelper-For-Mac.xcodeproj/xcuserdata/Fidetro.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fidetro/iOSHelper-For-Mac/HEAD/iOSHelper-For-Mac.xcodeproj/xcuserdata/Fidetro.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /iOSHelper-For-Mac.xcodeproj/xcuserdata/Fidetro.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fidetro/iOSHelper-For-Mac/HEAD/iOSHelper-For-Mac.xcodeproj/xcuserdata/Fidetro.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /iOSHelper-For-Mac/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fidetro/iOSHelper-For-Mac/HEAD/iOSHelper-For-Mac/AppDelegate.h -------------------------------------------------------------------------------- /iOSHelper-For-Mac/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fidetro/iOSHelper-For-Mac/HEAD/iOSHelper-For-Mac/AppDelegate.m -------------------------------------------------------------------------------- /iOSHelper-For-Mac/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fidetro/iOSHelper-For-Mac/HEAD/iOSHelper-For-Mac/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /iOSHelper-For-Mac/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fidetro/iOSHelper-For-Mac/HEAD/iOSHelper-For-Mac/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /iOSHelper-For-Mac/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fidetro/iOSHelper-For-Mac/HEAD/iOSHelper-For-Mac/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /iOSHelper-For-Mac/CellCodeViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fidetro/iOSHelper-For-Mac/HEAD/iOSHelper-For-Mac/CellCodeViewController.h -------------------------------------------------------------------------------- /iOSHelper-For-Mac/CellCodeViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fidetro/iOSHelper-For-Mac/HEAD/iOSHelper-For-Mac/CellCodeViewController.m -------------------------------------------------------------------------------- /iOSHelper-For-Mac/CustomTextView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fidetro/iOSHelper-For-Mac/HEAD/iOSHelper-For-Mac/CustomTextView.h -------------------------------------------------------------------------------- /iOSHelper-For-Mac/CustomTextView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fidetro/iOSHelper-For-Mac/HEAD/iOSHelper-For-Mac/CustomTextView.m -------------------------------------------------------------------------------- /iOSHelper-For-Mac/FindCNViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fidetro/iOSHelper-For-Mac/HEAD/iOSHelper-For-Mac/FindCNViewController.h -------------------------------------------------------------------------------- /iOSHelper-For-Mac/FindCNViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fidetro/iOSHelper-For-Mac/HEAD/iOSHelper-For-Mac/FindCNViewController.m -------------------------------------------------------------------------------- /iOSHelper-For-Mac/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fidetro/iOSHelper-For-Mac/HEAD/iOSHelper-For-Mac/Info.plist -------------------------------------------------------------------------------- /iOSHelper-For-Mac/InitViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fidetro/iOSHelper-For-Mac/HEAD/iOSHelper-For-Mac/InitViewController.h -------------------------------------------------------------------------------- /iOSHelper-For-Mac/InitViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fidetro/iOSHelper-For-Mac/HEAD/iOSHelper-For-Mac/InitViewController.m -------------------------------------------------------------------------------- /iOSHelper-For-Mac/JSONToPropertyViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fidetro/iOSHelper-For-Mac/HEAD/iOSHelper-For-Mac/JSONToPropertyViewController.h -------------------------------------------------------------------------------- /iOSHelper-For-Mac/JSONToPropertyViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fidetro/iOSHelper-For-Mac/HEAD/iOSHelper-For-Mac/JSONToPropertyViewController.m -------------------------------------------------------------------------------- /iOSHelper-For-Mac/LazyGetViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fidetro/iOSHelper-For-Mac/HEAD/iOSHelper-For-Mac/LazyGetViewController.h -------------------------------------------------------------------------------- /iOSHelper-For-Mac/LazyGetViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fidetro/iOSHelper-For-Mac/HEAD/iOSHelper-For-Mac/LazyGetViewController.m -------------------------------------------------------------------------------- /iOSHelper-For-Mac/MainTabViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fidetro/iOSHelper-For-Mac/HEAD/iOSHelper-For-Mac/MainTabViewController.h -------------------------------------------------------------------------------- /iOSHelper-For-Mac/MainTabViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fidetro/iOSHelper-For-Mac/HEAD/iOSHelper-For-Mac/MainTabViewController.m -------------------------------------------------------------------------------- /iOSHelper-For-Mac/RegexHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fidetro/iOSHelper-For-Mac/HEAD/iOSHelper-For-Mac/RegexHelper.h -------------------------------------------------------------------------------- /iOSHelper-For-Mac/RegexHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fidetro/iOSHelper-For-Mac/HEAD/iOSHelper-For-Mac/RegexHelper.m -------------------------------------------------------------------------------- /iOSHelper-For-Mac/TranslationViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fidetro/iOSHelper-For-Mac/HEAD/iOSHelper-For-Mac/TranslationViewController.h -------------------------------------------------------------------------------- /iOSHelper-For-Mac/TranslationViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fidetro/iOSHelper-For-Mac/HEAD/iOSHelper-For-Mac/TranslationViewController.m -------------------------------------------------------------------------------- /iOSHelper-For-Mac/cat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fidetro/iOSHelper-For-Mac/HEAD/iOSHelper-For-Mac/cat.png -------------------------------------------------------------------------------- /iOSHelper-For-Mac/iOSHelper_For_Mac.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fidetro/iOSHelper-For-Mac/HEAD/iOSHelper-For-Mac/iOSHelper_For_Mac.entitlements -------------------------------------------------------------------------------- /iOSHelper-For-Mac/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fidetro/iOSHelper-For-Mac/HEAD/iOSHelper-For-Mac/main.m -------------------------------------------------------------------------------- /src/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fidetro/iOSHelper-For-Mac/HEAD/src/1.gif -------------------------------------------------------------------------------- /src/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fidetro/iOSHelper-For-Mac/HEAD/src/2.gif -------------------------------------------------------------------------------- /src/3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fidetro/iOSHelper-For-Mac/HEAD/src/3.gif -------------------------------------------------------------------------------- /src/4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fidetro/iOSHelper-For-Mac/HEAD/src/4.gif -------------------------------------------------------------------------------- /src/5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fidetro/iOSHelper-For-Mac/HEAD/src/5.gif -------------------------------------------------------------------------------- /test.numbers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fidetro/iOSHelper-For-Mac/HEAD/test.numbers --------------------------------------------------------------------------------