├── .gitignore ├── PhotoAppLink ├── PALAppInfo.h ├── PALAppInfo.m ├── PALConfig.h ├── PALManager.h ├── PALManager.m ├── PALMoreAppsController.h ├── PALMoreAppsController.m ├── PALMoreAppsTableCellView.h ├── PALMoreAppsTableCellView.m ├── PALSendToController.h ├── PALSendToController.m ├── PALSendToController.xib └── images │ ├── PAL_brushed_metal.png │ ├── PAL_button_background.png │ ├── PAL_button_background@2x.png │ ├── PAL_default_app_icon.png │ ├── PAL_default_app_icon@2x.png │ ├── PAL_scrollview_background.png │ ├── PAL_scrollview_background@2x.png │ ├── PAL_tablecell_background.png │ ├── PAL_tableview_shadow.png │ ├── PAL_unknown_app_icon.png │ └── PAL_unknown_app_icon@2x.png ├── README.md ├── TestApp ├── Classes │ ├── TestAppDelegate.h │ ├── TestAppDelegate.m │ ├── TestAppRootViewController.h │ └── TestAppRootViewController.m ├── Icon.png ├── Icon@2x.png ├── MainWindow.xib ├── PhotoAppLinkTestApp-Info.plist ├── PhotoAppLinkTestApp.xcodeproj │ └── project.pbxproj ├── PhotoAppLinkTestAppViewController.xib ├── PhotoAppLinkTestApp_Prefix.pch ├── TestImage.png ├── facebook-icon.png ├── facebook-icon@2x.png ├── main.m ├── twitter-icon.png └── twitter-icon@2x.png └── photoapplink_debug.plist /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pocketpixels/PhotoAppLink/HEAD/.gitignore -------------------------------------------------------------------------------- /PhotoAppLink/PALAppInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pocketpixels/PhotoAppLink/HEAD/PhotoAppLink/PALAppInfo.h -------------------------------------------------------------------------------- /PhotoAppLink/PALAppInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pocketpixels/PhotoAppLink/HEAD/PhotoAppLink/PALAppInfo.m -------------------------------------------------------------------------------- /PhotoAppLink/PALConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pocketpixels/PhotoAppLink/HEAD/PhotoAppLink/PALConfig.h -------------------------------------------------------------------------------- /PhotoAppLink/PALManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pocketpixels/PhotoAppLink/HEAD/PhotoAppLink/PALManager.h -------------------------------------------------------------------------------- /PhotoAppLink/PALManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pocketpixels/PhotoAppLink/HEAD/PhotoAppLink/PALManager.m -------------------------------------------------------------------------------- /PhotoAppLink/PALMoreAppsController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pocketpixels/PhotoAppLink/HEAD/PhotoAppLink/PALMoreAppsController.h -------------------------------------------------------------------------------- /PhotoAppLink/PALMoreAppsController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pocketpixels/PhotoAppLink/HEAD/PhotoAppLink/PALMoreAppsController.m -------------------------------------------------------------------------------- /PhotoAppLink/PALMoreAppsTableCellView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pocketpixels/PhotoAppLink/HEAD/PhotoAppLink/PALMoreAppsTableCellView.h -------------------------------------------------------------------------------- /PhotoAppLink/PALMoreAppsTableCellView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pocketpixels/PhotoAppLink/HEAD/PhotoAppLink/PALMoreAppsTableCellView.m -------------------------------------------------------------------------------- /PhotoAppLink/PALSendToController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pocketpixels/PhotoAppLink/HEAD/PhotoAppLink/PALSendToController.h -------------------------------------------------------------------------------- /PhotoAppLink/PALSendToController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pocketpixels/PhotoAppLink/HEAD/PhotoAppLink/PALSendToController.m -------------------------------------------------------------------------------- /PhotoAppLink/PALSendToController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pocketpixels/PhotoAppLink/HEAD/PhotoAppLink/PALSendToController.xib -------------------------------------------------------------------------------- /PhotoAppLink/images/PAL_brushed_metal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pocketpixels/PhotoAppLink/HEAD/PhotoAppLink/images/PAL_brushed_metal.png -------------------------------------------------------------------------------- /PhotoAppLink/images/PAL_button_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pocketpixels/PhotoAppLink/HEAD/PhotoAppLink/images/PAL_button_background.png -------------------------------------------------------------------------------- /PhotoAppLink/images/PAL_button_background@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pocketpixels/PhotoAppLink/HEAD/PhotoAppLink/images/PAL_button_background@2x.png -------------------------------------------------------------------------------- /PhotoAppLink/images/PAL_default_app_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pocketpixels/PhotoAppLink/HEAD/PhotoAppLink/images/PAL_default_app_icon.png -------------------------------------------------------------------------------- /PhotoAppLink/images/PAL_default_app_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pocketpixels/PhotoAppLink/HEAD/PhotoAppLink/images/PAL_default_app_icon@2x.png -------------------------------------------------------------------------------- /PhotoAppLink/images/PAL_scrollview_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pocketpixels/PhotoAppLink/HEAD/PhotoAppLink/images/PAL_scrollview_background.png -------------------------------------------------------------------------------- /PhotoAppLink/images/PAL_scrollview_background@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pocketpixels/PhotoAppLink/HEAD/PhotoAppLink/images/PAL_scrollview_background@2x.png -------------------------------------------------------------------------------- /PhotoAppLink/images/PAL_tablecell_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pocketpixels/PhotoAppLink/HEAD/PhotoAppLink/images/PAL_tablecell_background.png -------------------------------------------------------------------------------- /PhotoAppLink/images/PAL_tableview_shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pocketpixels/PhotoAppLink/HEAD/PhotoAppLink/images/PAL_tableview_shadow.png -------------------------------------------------------------------------------- /PhotoAppLink/images/PAL_unknown_app_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pocketpixels/PhotoAppLink/HEAD/PhotoAppLink/images/PAL_unknown_app_icon.png -------------------------------------------------------------------------------- /PhotoAppLink/images/PAL_unknown_app_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pocketpixels/PhotoAppLink/HEAD/PhotoAppLink/images/PAL_unknown_app_icon@2x.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pocketpixels/PhotoAppLink/HEAD/README.md -------------------------------------------------------------------------------- /TestApp/Classes/TestAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pocketpixels/PhotoAppLink/HEAD/TestApp/Classes/TestAppDelegate.h -------------------------------------------------------------------------------- /TestApp/Classes/TestAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pocketpixels/PhotoAppLink/HEAD/TestApp/Classes/TestAppDelegate.m -------------------------------------------------------------------------------- /TestApp/Classes/TestAppRootViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pocketpixels/PhotoAppLink/HEAD/TestApp/Classes/TestAppRootViewController.h -------------------------------------------------------------------------------- /TestApp/Classes/TestAppRootViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pocketpixels/PhotoAppLink/HEAD/TestApp/Classes/TestAppRootViewController.m -------------------------------------------------------------------------------- /TestApp/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pocketpixels/PhotoAppLink/HEAD/TestApp/Icon.png -------------------------------------------------------------------------------- /TestApp/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pocketpixels/PhotoAppLink/HEAD/TestApp/Icon@2x.png -------------------------------------------------------------------------------- /TestApp/MainWindow.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pocketpixels/PhotoAppLink/HEAD/TestApp/MainWindow.xib -------------------------------------------------------------------------------- /TestApp/PhotoAppLinkTestApp-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pocketpixels/PhotoAppLink/HEAD/TestApp/PhotoAppLinkTestApp-Info.plist -------------------------------------------------------------------------------- /TestApp/PhotoAppLinkTestApp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pocketpixels/PhotoAppLink/HEAD/TestApp/PhotoAppLinkTestApp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /TestApp/PhotoAppLinkTestAppViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pocketpixels/PhotoAppLink/HEAD/TestApp/PhotoAppLinkTestAppViewController.xib -------------------------------------------------------------------------------- /TestApp/PhotoAppLinkTestApp_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pocketpixels/PhotoAppLink/HEAD/TestApp/PhotoAppLinkTestApp_Prefix.pch -------------------------------------------------------------------------------- /TestApp/TestImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pocketpixels/PhotoAppLink/HEAD/TestApp/TestImage.png -------------------------------------------------------------------------------- /TestApp/facebook-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pocketpixels/PhotoAppLink/HEAD/TestApp/facebook-icon.png -------------------------------------------------------------------------------- /TestApp/facebook-icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pocketpixels/PhotoAppLink/HEAD/TestApp/facebook-icon@2x.png -------------------------------------------------------------------------------- /TestApp/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pocketpixels/PhotoAppLink/HEAD/TestApp/main.m -------------------------------------------------------------------------------- /TestApp/twitter-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pocketpixels/PhotoAppLink/HEAD/TestApp/twitter-icon.png -------------------------------------------------------------------------------- /TestApp/twitter-icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pocketpixels/PhotoAppLink/HEAD/TestApp/twitter-icon@2x.png -------------------------------------------------------------------------------- /photoapplink_debug.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pocketpixels/PhotoAppLink/HEAD/photoapplink_debug.plist --------------------------------------------------------------------------------