├── .gitignore ├── LICENSE ├── PSTDelegateProxy.h ├── PSTDelegateProxy.m ├── README.md └── Tests ├── PSTDelegateExample.xcodeproj └── project.pbxproj ├── PSTDelegateExample ├── Images.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── LaunchImage.launchimage │ │ └── Contents.json ├── PSTAppDelegate.h ├── PSTAppDelegate.m ├── PSTDelegateExample-Info.plist ├── PSTDelegateExample-Prefix.pch ├── PSTExampleDelegate.h ├── en.lproj │ └── InfoPlist.strings └── main.m └── PSTDelegateExampleTests ├── PSTDelegateExampleTests-Info.plist ├── PSTDelegateExampleTests.m └── en.lproj └── InfoPlist.strings /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSTDelegateProxy/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSTDelegateProxy/HEAD/LICENSE -------------------------------------------------------------------------------- /PSTDelegateProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSTDelegateProxy/HEAD/PSTDelegateProxy.h -------------------------------------------------------------------------------- /PSTDelegateProxy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSTDelegateProxy/HEAD/PSTDelegateProxy.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSTDelegateProxy/HEAD/README.md -------------------------------------------------------------------------------- /Tests/PSTDelegateExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSTDelegateProxy/HEAD/Tests/PSTDelegateExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Tests/PSTDelegateExample/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSTDelegateProxy/HEAD/Tests/PSTDelegateExample/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Tests/PSTDelegateExample/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSTDelegateProxy/HEAD/Tests/PSTDelegateExample/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /Tests/PSTDelegateExample/PSTAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSTDelegateProxy/HEAD/Tests/PSTDelegateExample/PSTAppDelegate.h -------------------------------------------------------------------------------- /Tests/PSTDelegateExample/PSTAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSTDelegateProxy/HEAD/Tests/PSTDelegateExample/PSTAppDelegate.m -------------------------------------------------------------------------------- /Tests/PSTDelegateExample/PSTDelegateExample-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSTDelegateProxy/HEAD/Tests/PSTDelegateExample/PSTDelegateExample-Info.plist -------------------------------------------------------------------------------- /Tests/PSTDelegateExample/PSTDelegateExample-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSTDelegateProxy/HEAD/Tests/PSTDelegateExample/PSTDelegateExample-Prefix.pch -------------------------------------------------------------------------------- /Tests/PSTDelegateExample/PSTExampleDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSTDelegateProxy/HEAD/Tests/PSTDelegateExample/PSTExampleDelegate.h -------------------------------------------------------------------------------- /Tests/PSTDelegateExample/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Tests/PSTDelegateExample/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSTDelegateProxy/HEAD/Tests/PSTDelegateExample/main.m -------------------------------------------------------------------------------- /Tests/PSTDelegateExampleTests/PSTDelegateExampleTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSTDelegateProxy/HEAD/Tests/PSTDelegateExampleTests/PSTDelegateExampleTests-Info.plist -------------------------------------------------------------------------------- /Tests/PSTDelegateExampleTests/PSTDelegateExampleTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSTDelegateProxy/HEAD/Tests/PSTDelegateExampleTests/PSTDelegateExampleTests.m -------------------------------------------------------------------------------- /Tests/PSTDelegateExampleTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | --------------------------------------------------------------------------------