├── .gitignore ├── Acknowledgements.txt ├── Archiving ├── TPAutoArchiver.h └── TPAutoArchiver.m ├── Categories ├── NSArray │ ├── MACollectionUtilities.h │ ├── MACollectionUtilities.m │ ├── NSArray+Linq.h │ ├── NSArray+Linq.m │ ├── NSArray+blocks.h │ ├── NSArray+blocks.m │ ├── NSArray-Utilities.h │ ├── NSArray-Utilities.m │ ├── NSArrayHelper.h │ ├── NSArrayHelper.m │ ├── NSMutableArray+MTShuffle.h │ ├── NSMutableArray+MTShuffle.m │ ├── NSMutableArray+SCQueue.h │ └── NSMutableArray+SCQueue.m ├── NSData │ ├── GTMBase64.h │ ├── GTMBase64.m │ ├── GTMNSData+zlib.h │ ├── GTMNSData+zlib.m │ ├── NSData+CommonCrypto.h │ ├── NSData+CommonCrypto.m │ ├── NSData+MTAdditions.h │ ├── NSData+MTAdditions.m │ ├── NSData+RSHexDump-MIT-License.rtf │ ├── NSData+RSHexDump.h │ └── NSData+RSHexDump.m ├── NSDate │ ├── NSDate+MTAdditions.h │ ├── NSDate+MTAdditions.m │ ├── NSDate+PSFoundation.h │ ├── NSDate+PSFoundation.m │ ├── NSDate-Utilities.h │ ├── NSDate-Utilities.m │ ├── TimeFormatters.h │ └── TimeFormatters.m ├── NSDictionary │ ├── NSDictionary+CGStructs.h │ ├── NSDictionary+CGStructs.m │ ├── NSDictionaryHelper.h │ └── NSDictionaryHelper.m ├── NSError │ ├── NSError+SCMethods.h │ └── NSError+SCMethods.m ├── NSFileManager │ ├── NSFileManager-Utilities.h │ └── NSFileManager-Utilities.m ├── NSManagedObject │ ├── NSManagedObject+AutoDescription.h │ ├── NSManagedObject+AutoDescription.m │ ├── NSManagedObject+MTSafeSetValuesForKeysWithDictionary.h │ └── NSManagedObject+MTSafeSetValuesForKeysWithDictionary.m ├── NSManagedObjectContext │ ├── NSManagedObjectContext+FetchedObjectFromURI.h │ └── NSManagedObjectContext+FetchedObjectFromURI.m ├── NSNotification │ ├── NSNotificationAdditions.h │ └── NSNotificationAdditions.m ├── NSNumber │ ├── NSNumberAdditions.h │ └── NSNumberAdditions.m ├── NSObject │ ├── JRSwizzle.h │ ├── JRSwizzle.m │ ├── NSObject+AssociatedObjects.h │ ├── NSObject+AssociatedObjects.m │ ├── NSObject+AutoDescription.h │ ├── NSObject+AutoDescription.m │ ├── NSObject+BlockObservation.h │ ├── NSObject+BlockObservation.m │ ├── NSObject+Blocks.h │ ├── NSObject+Blocks.m │ ├── NSObject+FKObserver.h │ ├── NSObject+FKObserver.m │ ├── NSObject+Utilities.h │ └── NSObject+Utilities.m ├── NSOperationQueue │ ├── NSOperationQueue+CWSharedQueue.h │ └── NSOperationQueue+CWSharedQueue.m ├── NSSet │ ├── NSSet+blocks.h │ └── NSSet+blocks.m ├── NSString │ ├── GTMNSString+HTML.h │ ├── GTMNSString+HTML.m │ ├── NSMutableString+PSAdditions.h │ ├── NSMutableString+PSAdditions.m │ ├── NSString+Cat.h │ ├── NSString+Cat.m │ ├── NSString+FlattenHTML.h │ ├── NSString+FlattenHTML.m │ ├── NSString+GSub.h │ ├── NSString+GSub.m │ ├── NSString+InflectionSupport.h │ ├── NSString+InflectionSupport.m │ ├── NSString+Truncation.h │ ├── NSString+Truncation.m │ ├── NSStringHelper.h │ ├── NSStringHelper.m │ ├── StringUtil.h │ └── StringUtil.m ├── NSTimer │ ├── NSTimer+Blocks.h │ └── NSTimer+Blocks.m ├── NSURL │ ├── NSURL+PSFoundation.h │ ├── NSURL+PSFoundation.m │ ├── NSURLHelper.h │ └── NSURLHelper.m ├── NilCategories.h ├── NilCategories.m ├── PSCategories.h ├── SKProduct │ ├── SKProduct+LocalizedPrice.h │ └── SKProduct+LocalizedPrice.m ├── UIActionSheet │ ├── UIActionSheet+SCMethods.h │ └── UIActionSheet+SCMethods.m ├── UIAlertView │ ├── UIAlertView+SCMethods.h │ └── UIAlertView+SCMethods.m ├── UIApplication │ ├── UIApplicationHelper.h │ └── UIApplicationHelper.m ├── UIButton │ ├── UIButton+FKConcise.h │ ├── UIButton+FKConcise.m │ ├── UIButton+Glossy.h │ ├── UIButton+Glossy.m │ ├── UIButton+Presets.h │ └── UIButton+Presets.m ├── UIColor │ ├── UIColor-Expanded.h │ └── UIColor-Expanded.m ├── UIDevice │ ├── UIDeviceHelper.h │ └── UIDeviceHelper.m ├── UIImage │ ├── UIImage+Alpha.h │ ├── UIImage+Alpha.m │ ├── UIImage+Cache.h │ ├── UIImage+Cache.m │ ├── UIImage+MTCache.h │ ├── UIImage+MTCache.m │ ├── UIImage+MTTiling.h │ ├── UIImage+MTTiling.m │ ├── UIImage+MTUniversalAdditions.h │ ├── UIImage+MTUniversalAdditions.m │ ├── UIImage+ProportionalFill.h │ ├── UIImage+ProportionalFill.m │ ├── UIImage+RoundedCorner.h │ ├── UIImage+RoundedCorner.m │ ├── UIImage+Tint.h │ ├── UIImage+Tint.m │ ├── UIImageHelper.h │ └── UIImageHelper.m ├── UIImageView │ ├── UIImageView+PSLib.h │ └── UIImageView+PSLib.m ├── UILabel │ ├── UILabel+PSLib.h │ └── UILabel+PSLib.m ├── UINavigationBar │ ├── UINavigationBar-CustomBackground.h │ └── UINavigationBar-CustomBackground.m ├── UIScreen │ ├── UIScreen+PSAdditions.h │ └── UIScreen+PSAdditions.m ├── UIScrollView │ ├── UIScrollView+MTUIAdditions.h │ └── UIScrollView+MTUIAdditions.m ├── UITextView │ ├── UITextView+MTUIAdditions.h │ └── UITextView+MTUIAdditions.m ├── UIToolBar │ ├── UIToolBar+PSLib.h │ └── UIToolBar+PSLib.m ├── UIView │ ├── UIView+Animation.h │ ├── UIView+Animation.m │ ├── UIView+Hierarchy.h │ ├── UIView+Hierarchy.m │ ├── UIView+MTRotation.h │ ├── UIView+MTRotation.m │ ├── UIView+MTUIAdditions.h │ ├── UIView+MTUIAdditions.m │ ├── UIView+PSAdditions.h │ ├── UIView+PSAdditions.m │ ├── UIView+Sizes.h │ ├── UIView+Sizes.m │ ├── UIView+WhenTappedBlocks.h │ ├── UIView+WhenTappedBlocks.m │ ├── UIViewExtras.m │ ├── UIViewHelper.h │ └── UIViewHelper.m └── UIViewController │ ├── UIViewController+MTAnimatedFetch.h │ ├── UIViewController+MTAnimatedFetch.m │ ├── UIViewControllerHelper.h │ └── UIViewControllerHelper.m ├── CoreGraphicsHelper.h ├── ExternalFrameworks ├── Appirater │ ├── Appirater.h │ └── Appirater.m ├── EGOImageLoader │ ├── EGOCache.h │ ├── EGOCache.m │ ├── EGOImageButton │ │ ├── EGOImageButton.h │ │ └── EGOImageButton.m │ ├── EGOImageLoader │ │ ├── EGOImageLoadConnection.h │ │ ├── EGOImageLoadConnection.m │ │ ├── EGOImageLoader.h │ │ └── EGOImageLoader.m │ └── EGOImageView │ │ ├── EGOImageView.h │ │ └── EGOImageView.m └── TDSemiModal │ ├── TDDatePickerController.h │ ├── TDDatePickerController.m │ ├── TDDatePickerController.xib │ ├── TDSemiModal.h │ ├── TDSemiModalViewController.h │ ├── TDSemiModalViewController.m │ ├── UIViewController+TDSemiModalExtension.h │ └── UIViewController+TDSemiModalExtension.m ├── HUD ├── DSActivityView.h ├── DSActivityView.m ├── MBProgressHUD.h └── MBProgressHUD.m ├── InterfaceBuilder ├── BSUIViewRearranger.h ├── BSUIViewRearranger.m ├── UIView+CWNibLocalizations.h └── UIView+CWNibLocalizations.m ├── Invocation ├── DDInvocationGrabber.h ├── DDInvocationGrabber.m ├── NSInvocation+blocks.h ├── NSInvocation+blocks.m ├── NSObject+DDExtensions.h ├── NSObject+DDExtensions.m ├── NSObject+Proxy.h └── NSObject+Proxy.m ├── Keychain ├── SFHFKeychainUtils.h └── SFHFKeychainUtils.m ├── LICENSE ├── Lumberjack ├── ColorLog.h ├── ColorLog.m ├── DDASLLogger.h ├── DDASLLogger.m ├── DDFileLogger.h ├── DDFileLogger.m ├── DDLog.h ├── DDLog.m ├── DDNSLoggerLogger.h ├── DDNSLoggerLogger.m ├── DDTTYLogger.h ├── DDTTYLogger.m ├── HOLog.h ├── HOLog.m ├── NSLogger │ ├── LoggerClient.h │ ├── LoggerClient.m │ └── LoggerCommon.h ├── PSDDFormatter.h ├── PSDDFormatter.m ├── VTPG_Common.h └── VTPG_Common.m ├── MTSplashScreen.h ├── MTSplashScreen.m ├── MTSplashScreenDelegate.h ├── Macros └── SynthesizeSingleton.h ├── Network ├── IKNetworkActivityManager.h └── IKNetworkActivityManager.m ├── PSCompatibility.h ├── PSCompatibility.m ├── PSFoundation.h ├── PSFoundation.xcodeproj └── project.pbxproj ├── PSFoundation_CoreData.h ├── PSFoundation_CoreLocation.h ├── PSFoundation_Prefix.pch ├── PSMacros.h ├── PSScrollContentView.h ├── PSScrollContentView.m ├── README.mdown ├── Reachability ├── PSReachability.h ├── PSReachability.m ├── Reachability.h └── Reachability.m ├── Sound ├── SoundEffect.h └── SoundEffect.m ├── TableView ├── DTCustomColoredAccessory.h ├── DTCustomColoredAccessory.m ├── GradientView.h ├── GradientView.m ├── PSGenericCell.h ├── PSGenericCell.m ├── PSGenericView.h ├── PSGenericView.m ├── PSShadowView.h ├── PSShadowView.m ├── PSTableViewController.h ├── PSTableViewController.m ├── ShadowedTableView.h ├── ShadowedTableView.m ├── TDBadgedCell.h ├── TDBadgedCell.m ├── UACellBackgroundView.h └── UACellBackgroundView.m ├── UITableView+FKLoading.h ├── UITableView+FKLoading.m ├── UITableViewCell+FKLoading.h ├── UITableViewCell+FKLoading.m ├── UIViewController+FKLoading.h ├── UIViewController+FKLoading.m ├── Universal ├── MTUniversalHelper.h └── MTUniversalHelper.m ├── Utils ├── ColorUtils.h ├── ColorUtils.m ├── GradientButton.h ├── GradientButton.m ├── LRPopoverManager.h ├── LRPopoverManager.m ├── PSActionSheet.h ├── PSActionSheet.m ├── PSAlertView.h ├── PSAlertView.m ├── PSClassUtils.h ├── PSClassUtils.m ├── PSGlobal.h ├── PSGlobal.m ├── PSNonEdiableTextView.h ├── PSNonEdiableTextView.m ├── PSSettingsUtil.h ├── PSSettingsUtil.m ├── PSStatusBarSaver.h ├── PSStatusBarSaver.m ├── SCFooterLabel.h ├── SCFooterLabel.m ├── SCGrfx.h ├── SCGrfx.m ├── SMModelObject.h ├── SMModelObject.m ├── SafeFetchedResultsController.h └── SafeFetchedResultsController.m ├── ZeroWeakReferences ├── MANotificationCenterAdditions.h ├── MANotificationCenterAdditions.m ├── MAWeakArray.h ├── MAWeakArray.m ├── MAWeakDictionary.h ├── MAWeakDictionary.m ├── MAZeroingWeakProxy.h ├── MAZeroingWeakProxy.m ├── MAZeroingWeakRef.h └── MAZeroingWeakRef.m └── activerecord-coredata ├── ActiveRecordHelpers.h ├── ActiveRecordHelpers.m ├── CoreData+ActiveRecordFetching.h ├── LICENSE ├── NSFetchedResultsController+ActiveRecord.h ├── NSFetchedResultsController+ActiveRecord.m ├── NSManagedObject+ActiveRecord.h ├── NSManagedObject+ActiveRecord.m ├── NSManagedObjectContext+ActiveRecord.h ├── NSManagedObjectContext+ActiveRecord.m ├── NSManagedObjectModel+ActiveRecord.h ├── NSManagedObjectModel+ActiveRecord.m ├── NSPersistentStore+ActiveRecord.h ├── NSPersistentStore+ActiveRecord.m ├── NSPersistentStoreCoordinator+ActiveRecord.h ├── NSPersistentStoreCoordinator+ActiveRecord.m └── README.creole /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/.gitignore -------------------------------------------------------------------------------- /Acknowledgements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Acknowledgements.txt -------------------------------------------------------------------------------- /Archiving/TPAutoArchiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Archiving/TPAutoArchiver.h -------------------------------------------------------------------------------- /Archiving/TPAutoArchiver.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Archiving/TPAutoArchiver.m -------------------------------------------------------------------------------- /Categories/NSArray/MACollectionUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/NSArray/MACollectionUtilities.h -------------------------------------------------------------------------------- /Categories/NSArray/MACollectionUtilities.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/NSArray/MACollectionUtilities.m -------------------------------------------------------------------------------- /Categories/NSArray/NSArray+Linq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/NSArray/NSArray+Linq.h -------------------------------------------------------------------------------- /Categories/NSArray/NSArray+Linq.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/NSArray/NSArray+Linq.m -------------------------------------------------------------------------------- /Categories/NSArray/NSArray+blocks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/NSArray/NSArray+blocks.h -------------------------------------------------------------------------------- /Categories/NSArray/NSArray+blocks.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/NSArray/NSArray+blocks.m -------------------------------------------------------------------------------- /Categories/NSArray/NSArray-Utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/NSArray/NSArray-Utilities.h -------------------------------------------------------------------------------- /Categories/NSArray/NSArray-Utilities.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/NSArray/NSArray-Utilities.m -------------------------------------------------------------------------------- /Categories/NSArray/NSArrayHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/NSArray/NSArrayHelper.h -------------------------------------------------------------------------------- /Categories/NSArray/NSArrayHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/NSArray/NSArrayHelper.m -------------------------------------------------------------------------------- /Categories/NSArray/NSMutableArray+MTShuffle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/NSArray/NSMutableArray+MTShuffle.h -------------------------------------------------------------------------------- /Categories/NSArray/NSMutableArray+MTShuffle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/NSArray/NSMutableArray+MTShuffle.m -------------------------------------------------------------------------------- /Categories/NSArray/NSMutableArray+SCQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/NSArray/NSMutableArray+SCQueue.h -------------------------------------------------------------------------------- /Categories/NSArray/NSMutableArray+SCQueue.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/NSArray/NSMutableArray+SCQueue.m -------------------------------------------------------------------------------- /Categories/NSData/GTMBase64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/NSData/GTMBase64.h -------------------------------------------------------------------------------- /Categories/NSData/GTMBase64.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/NSData/GTMBase64.m -------------------------------------------------------------------------------- /Categories/NSData/GTMNSData+zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/NSData/GTMNSData+zlib.h -------------------------------------------------------------------------------- /Categories/NSData/GTMNSData+zlib.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/NSData/GTMNSData+zlib.m -------------------------------------------------------------------------------- /Categories/NSData/NSData+CommonCrypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/NSData/NSData+CommonCrypto.h -------------------------------------------------------------------------------- /Categories/NSData/NSData+CommonCrypto.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/NSData/NSData+CommonCrypto.m -------------------------------------------------------------------------------- /Categories/NSData/NSData+MTAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/NSData/NSData+MTAdditions.h -------------------------------------------------------------------------------- /Categories/NSData/NSData+MTAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/NSData/NSData+MTAdditions.m -------------------------------------------------------------------------------- /Categories/NSData/NSData+RSHexDump-MIT-License.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/NSData/NSData+RSHexDump-MIT-License.rtf -------------------------------------------------------------------------------- /Categories/NSData/NSData+RSHexDump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/NSData/NSData+RSHexDump.h -------------------------------------------------------------------------------- /Categories/NSData/NSData+RSHexDump.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/NSData/NSData+RSHexDump.m -------------------------------------------------------------------------------- /Categories/NSDate/NSDate+MTAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/NSDate/NSDate+MTAdditions.h -------------------------------------------------------------------------------- /Categories/NSDate/NSDate+MTAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/NSDate/NSDate+MTAdditions.m -------------------------------------------------------------------------------- /Categories/NSDate/NSDate+PSFoundation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/NSDate/NSDate+PSFoundation.h -------------------------------------------------------------------------------- /Categories/NSDate/NSDate+PSFoundation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/NSDate/NSDate+PSFoundation.m -------------------------------------------------------------------------------- /Categories/NSDate/NSDate-Utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/NSDate/NSDate-Utilities.h -------------------------------------------------------------------------------- /Categories/NSDate/NSDate-Utilities.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/NSDate/NSDate-Utilities.m -------------------------------------------------------------------------------- /Categories/NSDate/TimeFormatters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/NSDate/TimeFormatters.h -------------------------------------------------------------------------------- /Categories/NSDate/TimeFormatters.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/NSDate/TimeFormatters.m -------------------------------------------------------------------------------- /Categories/NSDictionary/NSDictionary+CGStructs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/NSDictionary/NSDictionary+CGStructs.h -------------------------------------------------------------------------------- /Categories/NSDictionary/NSDictionary+CGStructs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/NSDictionary/NSDictionary+CGStructs.m -------------------------------------------------------------------------------- /Categories/NSDictionary/NSDictionaryHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/NSDictionary/NSDictionaryHelper.h -------------------------------------------------------------------------------- /Categories/NSDictionary/NSDictionaryHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/NSDictionary/NSDictionaryHelper.m -------------------------------------------------------------------------------- /Categories/NSError/NSError+SCMethods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/NSError/NSError+SCMethods.h -------------------------------------------------------------------------------- /Categories/NSError/NSError+SCMethods.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/NSError/NSError+SCMethods.m -------------------------------------------------------------------------------- /Categories/NSFileManager/NSFileManager-Utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/NSFileManager/NSFileManager-Utilities.h -------------------------------------------------------------------------------- /Categories/NSFileManager/NSFileManager-Utilities.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/NSFileManager/NSFileManager-Utilities.m -------------------------------------------------------------------------------- /Categories/NSManagedObject/NSManagedObject+AutoDescription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/NSManagedObject/NSManagedObject+AutoDescription.h -------------------------------------------------------------------------------- /Categories/NSManagedObject/NSManagedObject+AutoDescription.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/NSManagedObject/NSManagedObject+AutoDescription.m -------------------------------------------------------------------------------- /Categories/NSManagedObject/NSManagedObject+MTSafeSetValuesForKeysWithDictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/NSManagedObject/NSManagedObject+MTSafeSetValuesForKeysWithDictionary.h -------------------------------------------------------------------------------- /Categories/NSManagedObject/NSManagedObject+MTSafeSetValuesForKeysWithDictionary.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/NSManagedObject/NSManagedObject+MTSafeSetValuesForKeysWithDictionary.m -------------------------------------------------------------------------------- /Categories/NSManagedObjectContext/NSManagedObjectContext+FetchedObjectFromURI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/NSManagedObjectContext/NSManagedObjectContext+FetchedObjectFromURI.h -------------------------------------------------------------------------------- /Categories/NSManagedObjectContext/NSManagedObjectContext+FetchedObjectFromURI.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/NSManagedObjectContext/NSManagedObjectContext+FetchedObjectFromURI.m -------------------------------------------------------------------------------- /Categories/NSNotification/NSNotificationAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/NSNotification/NSNotificationAdditions.h -------------------------------------------------------------------------------- /Categories/NSNotification/NSNotificationAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/NSNotification/NSNotificationAdditions.m -------------------------------------------------------------------------------- /Categories/NSNumber/NSNumberAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/NSNumber/NSNumberAdditions.h -------------------------------------------------------------------------------- /Categories/NSNumber/NSNumberAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/NSNumber/NSNumberAdditions.m -------------------------------------------------------------------------------- /Categories/NSObject/JRSwizzle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/NSObject/JRSwizzle.h -------------------------------------------------------------------------------- /Categories/NSObject/JRSwizzle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/NSObject/JRSwizzle.m -------------------------------------------------------------------------------- /Categories/NSObject/NSObject+AssociatedObjects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/NSObject/NSObject+AssociatedObjects.h -------------------------------------------------------------------------------- /Categories/NSObject/NSObject+AssociatedObjects.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/NSObject/NSObject+AssociatedObjects.m -------------------------------------------------------------------------------- /Categories/NSObject/NSObject+AutoDescription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/NSObject/NSObject+AutoDescription.h -------------------------------------------------------------------------------- /Categories/NSObject/NSObject+AutoDescription.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/NSObject/NSObject+AutoDescription.m -------------------------------------------------------------------------------- /Categories/NSObject/NSObject+BlockObservation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/NSObject/NSObject+BlockObservation.h -------------------------------------------------------------------------------- /Categories/NSObject/NSObject+BlockObservation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/NSObject/NSObject+BlockObservation.m -------------------------------------------------------------------------------- /Categories/NSObject/NSObject+Blocks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/NSObject/NSObject+Blocks.h -------------------------------------------------------------------------------- /Categories/NSObject/NSObject+Blocks.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/NSObject/NSObject+Blocks.m -------------------------------------------------------------------------------- /Categories/NSObject/NSObject+FKObserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/NSObject/NSObject+FKObserver.h -------------------------------------------------------------------------------- /Categories/NSObject/NSObject+FKObserver.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/NSObject/NSObject+FKObserver.m -------------------------------------------------------------------------------- /Categories/NSObject/NSObject+Utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/NSObject/NSObject+Utilities.h -------------------------------------------------------------------------------- /Categories/NSObject/NSObject+Utilities.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/NSObject/NSObject+Utilities.m -------------------------------------------------------------------------------- /Categories/NSOperationQueue/NSOperationQueue+CWSharedQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/NSOperationQueue/NSOperationQueue+CWSharedQueue.h -------------------------------------------------------------------------------- /Categories/NSOperationQueue/NSOperationQueue+CWSharedQueue.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/NSOperationQueue/NSOperationQueue+CWSharedQueue.m -------------------------------------------------------------------------------- /Categories/NSSet/NSSet+blocks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/NSSet/NSSet+blocks.h -------------------------------------------------------------------------------- /Categories/NSSet/NSSet+blocks.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/NSSet/NSSet+blocks.m -------------------------------------------------------------------------------- /Categories/NSString/GTMNSString+HTML.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/NSString/GTMNSString+HTML.h -------------------------------------------------------------------------------- /Categories/NSString/GTMNSString+HTML.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/NSString/GTMNSString+HTML.m -------------------------------------------------------------------------------- /Categories/NSString/NSMutableString+PSAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/NSString/NSMutableString+PSAdditions.h -------------------------------------------------------------------------------- /Categories/NSString/NSMutableString+PSAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/NSString/NSMutableString+PSAdditions.m -------------------------------------------------------------------------------- /Categories/NSString/NSString+Cat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/NSString/NSString+Cat.h -------------------------------------------------------------------------------- /Categories/NSString/NSString+Cat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/NSString/NSString+Cat.m -------------------------------------------------------------------------------- /Categories/NSString/NSString+FlattenHTML.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/NSString/NSString+FlattenHTML.h -------------------------------------------------------------------------------- /Categories/NSString/NSString+FlattenHTML.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/NSString/NSString+FlattenHTML.m -------------------------------------------------------------------------------- /Categories/NSString/NSString+GSub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/NSString/NSString+GSub.h -------------------------------------------------------------------------------- /Categories/NSString/NSString+GSub.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/NSString/NSString+GSub.m -------------------------------------------------------------------------------- /Categories/NSString/NSString+InflectionSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/NSString/NSString+InflectionSupport.h -------------------------------------------------------------------------------- /Categories/NSString/NSString+InflectionSupport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/NSString/NSString+InflectionSupport.m -------------------------------------------------------------------------------- /Categories/NSString/NSString+Truncation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/NSString/NSString+Truncation.h -------------------------------------------------------------------------------- /Categories/NSString/NSString+Truncation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/NSString/NSString+Truncation.m -------------------------------------------------------------------------------- /Categories/NSString/NSStringHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/NSString/NSStringHelper.h -------------------------------------------------------------------------------- /Categories/NSString/NSStringHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/NSString/NSStringHelper.m -------------------------------------------------------------------------------- /Categories/NSString/StringUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/NSString/StringUtil.h -------------------------------------------------------------------------------- /Categories/NSString/StringUtil.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/NSString/StringUtil.m -------------------------------------------------------------------------------- /Categories/NSTimer/NSTimer+Blocks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/NSTimer/NSTimer+Blocks.h -------------------------------------------------------------------------------- /Categories/NSTimer/NSTimer+Blocks.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/NSTimer/NSTimer+Blocks.m -------------------------------------------------------------------------------- /Categories/NSURL/NSURL+PSFoundation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/NSURL/NSURL+PSFoundation.h -------------------------------------------------------------------------------- /Categories/NSURL/NSURL+PSFoundation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/NSURL/NSURL+PSFoundation.m -------------------------------------------------------------------------------- /Categories/NSURL/NSURLHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/NSURL/NSURLHelper.h -------------------------------------------------------------------------------- /Categories/NSURL/NSURLHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/NSURL/NSURLHelper.m -------------------------------------------------------------------------------- /Categories/NilCategories.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/NilCategories.h -------------------------------------------------------------------------------- /Categories/NilCategories.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/NilCategories.m -------------------------------------------------------------------------------- /Categories/PSCategories.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/PSCategories.h -------------------------------------------------------------------------------- /Categories/SKProduct/SKProduct+LocalizedPrice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/SKProduct/SKProduct+LocalizedPrice.h -------------------------------------------------------------------------------- /Categories/SKProduct/SKProduct+LocalizedPrice.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/SKProduct/SKProduct+LocalizedPrice.m -------------------------------------------------------------------------------- /Categories/UIActionSheet/UIActionSheet+SCMethods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/UIActionSheet/UIActionSheet+SCMethods.h -------------------------------------------------------------------------------- /Categories/UIActionSheet/UIActionSheet+SCMethods.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/UIActionSheet/UIActionSheet+SCMethods.m -------------------------------------------------------------------------------- /Categories/UIAlertView/UIAlertView+SCMethods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/UIAlertView/UIAlertView+SCMethods.h -------------------------------------------------------------------------------- /Categories/UIAlertView/UIAlertView+SCMethods.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/UIAlertView/UIAlertView+SCMethods.m -------------------------------------------------------------------------------- /Categories/UIApplication/UIApplicationHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/UIApplication/UIApplicationHelper.h -------------------------------------------------------------------------------- /Categories/UIApplication/UIApplicationHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/UIApplication/UIApplicationHelper.m -------------------------------------------------------------------------------- /Categories/UIButton/UIButton+FKConcise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/UIButton/UIButton+FKConcise.h -------------------------------------------------------------------------------- /Categories/UIButton/UIButton+FKConcise.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/UIButton/UIButton+FKConcise.m -------------------------------------------------------------------------------- /Categories/UIButton/UIButton+Glossy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/UIButton/UIButton+Glossy.h -------------------------------------------------------------------------------- /Categories/UIButton/UIButton+Glossy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/UIButton/UIButton+Glossy.m -------------------------------------------------------------------------------- /Categories/UIButton/UIButton+Presets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/UIButton/UIButton+Presets.h -------------------------------------------------------------------------------- /Categories/UIButton/UIButton+Presets.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/UIButton/UIButton+Presets.m -------------------------------------------------------------------------------- /Categories/UIColor/UIColor-Expanded.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/UIColor/UIColor-Expanded.h -------------------------------------------------------------------------------- /Categories/UIColor/UIColor-Expanded.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/UIColor/UIColor-Expanded.m -------------------------------------------------------------------------------- /Categories/UIDevice/UIDeviceHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/UIDevice/UIDeviceHelper.h -------------------------------------------------------------------------------- /Categories/UIDevice/UIDeviceHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/UIDevice/UIDeviceHelper.m -------------------------------------------------------------------------------- /Categories/UIImage/UIImage+Alpha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/UIImage/UIImage+Alpha.h -------------------------------------------------------------------------------- /Categories/UIImage/UIImage+Alpha.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/UIImage/UIImage+Alpha.m -------------------------------------------------------------------------------- /Categories/UIImage/UIImage+Cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/UIImage/UIImage+Cache.h -------------------------------------------------------------------------------- /Categories/UIImage/UIImage+Cache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/UIImage/UIImage+Cache.m -------------------------------------------------------------------------------- /Categories/UIImage/UIImage+MTCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/UIImage/UIImage+MTCache.h -------------------------------------------------------------------------------- /Categories/UIImage/UIImage+MTCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/UIImage/UIImage+MTCache.m -------------------------------------------------------------------------------- /Categories/UIImage/UIImage+MTTiling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/UIImage/UIImage+MTTiling.h -------------------------------------------------------------------------------- /Categories/UIImage/UIImage+MTTiling.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/UIImage/UIImage+MTTiling.m -------------------------------------------------------------------------------- /Categories/UIImage/UIImage+MTUniversalAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/UIImage/UIImage+MTUniversalAdditions.h -------------------------------------------------------------------------------- /Categories/UIImage/UIImage+MTUniversalAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/UIImage/UIImage+MTUniversalAdditions.m -------------------------------------------------------------------------------- /Categories/UIImage/UIImage+ProportionalFill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/UIImage/UIImage+ProportionalFill.h -------------------------------------------------------------------------------- /Categories/UIImage/UIImage+ProportionalFill.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/UIImage/UIImage+ProportionalFill.m -------------------------------------------------------------------------------- /Categories/UIImage/UIImage+RoundedCorner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/UIImage/UIImage+RoundedCorner.h -------------------------------------------------------------------------------- /Categories/UIImage/UIImage+RoundedCorner.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/UIImage/UIImage+RoundedCorner.m -------------------------------------------------------------------------------- /Categories/UIImage/UIImage+Tint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/UIImage/UIImage+Tint.h -------------------------------------------------------------------------------- /Categories/UIImage/UIImage+Tint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/UIImage/UIImage+Tint.m -------------------------------------------------------------------------------- /Categories/UIImage/UIImageHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/UIImage/UIImageHelper.h -------------------------------------------------------------------------------- /Categories/UIImage/UIImageHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/UIImage/UIImageHelper.m -------------------------------------------------------------------------------- /Categories/UIImageView/UIImageView+PSLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/UIImageView/UIImageView+PSLib.h -------------------------------------------------------------------------------- /Categories/UIImageView/UIImageView+PSLib.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/UIImageView/UIImageView+PSLib.m -------------------------------------------------------------------------------- /Categories/UILabel/UILabel+PSLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/UILabel/UILabel+PSLib.h -------------------------------------------------------------------------------- /Categories/UILabel/UILabel+PSLib.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/UILabel/UILabel+PSLib.m -------------------------------------------------------------------------------- /Categories/UINavigationBar/UINavigationBar-CustomBackground.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/UINavigationBar/UINavigationBar-CustomBackground.h -------------------------------------------------------------------------------- /Categories/UINavigationBar/UINavigationBar-CustomBackground.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/UINavigationBar/UINavigationBar-CustomBackground.m -------------------------------------------------------------------------------- /Categories/UIScreen/UIScreen+PSAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/UIScreen/UIScreen+PSAdditions.h -------------------------------------------------------------------------------- /Categories/UIScreen/UIScreen+PSAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/UIScreen/UIScreen+PSAdditions.m -------------------------------------------------------------------------------- /Categories/UIScrollView/UIScrollView+MTUIAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/UIScrollView/UIScrollView+MTUIAdditions.h -------------------------------------------------------------------------------- /Categories/UIScrollView/UIScrollView+MTUIAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/UIScrollView/UIScrollView+MTUIAdditions.m -------------------------------------------------------------------------------- /Categories/UITextView/UITextView+MTUIAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/UITextView/UITextView+MTUIAdditions.h -------------------------------------------------------------------------------- /Categories/UITextView/UITextView+MTUIAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/UITextView/UITextView+MTUIAdditions.m -------------------------------------------------------------------------------- /Categories/UIToolBar/UIToolBar+PSLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/UIToolBar/UIToolBar+PSLib.h -------------------------------------------------------------------------------- /Categories/UIToolBar/UIToolBar+PSLib.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/UIToolBar/UIToolBar+PSLib.m -------------------------------------------------------------------------------- /Categories/UIView/UIView+Animation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/UIView/UIView+Animation.h -------------------------------------------------------------------------------- /Categories/UIView/UIView+Animation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/UIView/UIView+Animation.m -------------------------------------------------------------------------------- /Categories/UIView/UIView+Hierarchy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/UIView/UIView+Hierarchy.h -------------------------------------------------------------------------------- /Categories/UIView/UIView+Hierarchy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/UIView/UIView+Hierarchy.m -------------------------------------------------------------------------------- /Categories/UIView/UIView+MTRotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/UIView/UIView+MTRotation.h -------------------------------------------------------------------------------- /Categories/UIView/UIView+MTRotation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/UIView/UIView+MTRotation.m -------------------------------------------------------------------------------- /Categories/UIView/UIView+MTUIAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/UIView/UIView+MTUIAdditions.h -------------------------------------------------------------------------------- /Categories/UIView/UIView+MTUIAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/UIView/UIView+MTUIAdditions.m -------------------------------------------------------------------------------- /Categories/UIView/UIView+PSAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/UIView/UIView+PSAdditions.h -------------------------------------------------------------------------------- /Categories/UIView/UIView+PSAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/UIView/UIView+PSAdditions.m -------------------------------------------------------------------------------- /Categories/UIView/UIView+Sizes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/UIView/UIView+Sizes.h -------------------------------------------------------------------------------- /Categories/UIView/UIView+Sizes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/UIView/UIView+Sizes.m -------------------------------------------------------------------------------- /Categories/UIView/UIView+WhenTappedBlocks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/UIView/UIView+WhenTappedBlocks.h -------------------------------------------------------------------------------- /Categories/UIView/UIView+WhenTappedBlocks.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/UIView/UIView+WhenTappedBlocks.m -------------------------------------------------------------------------------- /Categories/UIView/UIViewExtras.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/UIView/UIViewExtras.m -------------------------------------------------------------------------------- /Categories/UIView/UIViewHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/UIView/UIViewHelper.h -------------------------------------------------------------------------------- /Categories/UIView/UIViewHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/UIView/UIViewHelper.m -------------------------------------------------------------------------------- /Categories/UIViewController/UIViewController+MTAnimatedFetch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/UIViewController/UIViewController+MTAnimatedFetch.h -------------------------------------------------------------------------------- /Categories/UIViewController/UIViewController+MTAnimatedFetch.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/UIViewController/UIViewController+MTAnimatedFetch.m -------------------------------------------------------------------------------- /Categories/UIViewController/UIViewControllerHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/UIViewController/UIViewControllerHelper.h -------------------------------------------------------------------------------- /Categories/UIViewController/UIViewControllerHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Categories/UIViewController/UIViewControllerHelper.m -------------------------------------------------------------------------------- /CoreGraphicsHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/CoreGraphicsHelper.h -------------------------------------------------------------------------------- /ExternalFrameworks/Appirater/Appirater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/ExternalFrameworks/Appirater/Appirater.h -------------------------------------------------------------------------------- /ExternalFrameworks/Appirater/Appirater.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/ExternalFrameworks/Appirater/Appirater.m -------------------------------------------------------------------------------- /ExternalFrameworks/EGOImageLoader/EGOCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/ExternalFrameworks/EGOImageLoader/EGOCache.h -------------------------------------------------------------------------------- /ExternalFrameworks/EGOImageLoader/EGOCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/ExternalFrameworks/EGOImageLoader/EGOCache.m -------------------------------------------------------------------------------- /ExternalFrameworks/EGOImageLoader/EGOImageButton/EGOImageButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/ExternalFrameworks/EGOImageLoader/EGOImageButton/EGOImageButton.h -------------------------------------------------------------------------------- /ExternalFrameworks/EGOImageLoader/EGOImageButton/EGOImageButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/ExternalFrameworks/EGOImageLoader/EGOImageButton/EGOImageButton.m -------------------------------------------------------------------------------- /ExternalFrameworks/EGOImageLoader/EGOImageLoader/EGOImageLoadConnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/ExternalFrameworks/EGOImageLoader/EGOImageLoader/EGOImageLoadConnection.h -------------------------------------------------------------------------------- /ExternalFrameworks/EGOImageLoader/EGOImageLoader/EGOImageLoadConnection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/ExternalFrameworks/EGOImageLoader/EGOImageLoader/EGOImageLoadConnection.m -------------------------------------------------------------------------------- /ExternalFrameworks/EGOImageLoader/EGOImageLoader/EGOImageLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/ExternalFrameworks/EGOImageLoader/EGOImageLoader/EGOImageLoader.h -------------------------------------------------------------------------------- /ExternalFrameworks/EGOImageLoader/EGOImageLoader/EGOImageLoader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/ExternalFrameworks/EGOImageLoader/EGOImageLoader/EGOImageLoader.m -------------------------------------------------------------------------------- /ExternalFrameworks/EGOImageLoader/EGOImageView/EGOImageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/ExternalFrameworks/EGOImageLoader/EGOImageView/EGOImageView.h -------------------------------------------------------------------------------- /ExternalFrameworks/EGOImageLoader/EGOImageView/EGOImageView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/ExternalFrameworks/EGOImageLoader/EGOImageView/EGOImageView.m -------------------------------------------------------------------------------- /ExternalFrameworks/TDSemiModal/TDDatePickerController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/ExternalFrameworks/TDSemiModal/TDDatePickerController.h -------------------------------------------------------------------------------- /ExternalFrameworks/TDSemiModal/TDDatePickerController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/ExternalFrameworks/TDSemiModal/TDDatePickerController.m -------------------------------------------------------------------------------- /ExternalFrameworks/TDSemiModal/TDDatePickerController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/ExternalFrameworks/TDSemiModal/TDDatePickerController.xib -------------------------------------------------------------------------------- /ExternalFrameworks/TDSemiModal/TDSemiModal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/ExternalFrameworks/TDSemiModal/TDSemiModal.h -------------------------------------------------------------------------------- /ExternalFrameworks/TDSemiModal/TDSemiModalViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/ExternalFrameworks/TDSemiModal/TDSemiModalViewController.h -------------------------------------------------------------------------------- /ExternalFrameworks/TDSemiModal/TDSemiModalViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/ExternalFrameworks/TDSemiModal/TDSemiModalViewController.m -------------------------------------------------------------------------------- /ExternalFrameworks/TDSemiModal/UIViewController+TDSemiModalExtension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/ExternalFrameworks/TDSemiModal/UIViewController+TDSemiModalExtension.h -------------------------------------------------------------------------------- /ExternalFrameworks/TDSemiModal/UIViewController+TDSemiModalExtension.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/ExternalFrameworks/TDSemiModal/UIViewController+TDSemiModalExtension.m -------------------------------------------------------------------------------- /HUD/DSActivityView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/HUD/DSActivityView.h -------------------------------------------------------------------------------- /HUD/DSActivityView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/HUD/DSActivityView.m -------------------------------------------------------------------------------- /HUD/MBProgressHUD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/HUD/MBProgressHUD.h -------------------------------------------------------------------------------- /HUD/MBProgressHUD.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/HUD/MBProgressHUD.m -------------------------------------------------------------------------------- /InterfaceBuilder/BSUIViewRearranger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/InterfaceBuilder/BSUIViewRearranger.h -------------------------------------------------------------------------------- /InterfaceBuilder/BSUIViewRearranger.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/InterfaceBuilder/BSUIViewRearranger.m -------------------------------------------------------------------------------- /InterfaceBuilder/UIView+CWNibLocalizations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/InterfaceBuilder/UIView+CWNibLocalizations.h -------------------------------------------------------------------------------- /InterfaceBuilder/UIView+CWNibLocalizations.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/InterfaceBuilder/UIView+CWNibLocalizations.m -------------------------------------------------------------------------------- /Invocation/DDInvocationGrabber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Invocation/DDInvocationGrabber.h -------------------------------------------------------------------------------- /Invocation/DDInvocationGrabber.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Invocation/DDInvocationGrabber.m -------------------------------------------------------------------------------- /Invocation/NSInvocation+blocks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Invocation/NSInvocation+blocks.h -------------------------------------------------------------------------------- /Invocation/NSInvocation+blocks.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Invocation/NSInvocation+blocks.m -------------------------------------------------------------------------------- /Invocation/NSObject+DDExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Invocation/NSObject+DDExtensions.h -------------------------------------------------------------------------------- /Invocation/NSObject+DDExtensions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Invocation/NSObject+DDExtensions.m -------------------------------------------------------------------------------- /Invocation/NSObject+Proxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Invocation/NSObject+Proxy.h -------------------------------------------------------------------------------- /Invocation/NSObject+Proxy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Invocation/NSObject+Proxy.m -------------------------------------------------------------------------------- /Keychain/SFHFKeychainUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Keychain/SFHFKeychainUtils.h -------------------------------------------------------------------------------- /Keychain/SFHFKeychainUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Keychain/SFHFKeychainUtils.m -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/LICENSE -------------------------------------------------------------------------------- /Lumberjack/ColorLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Lumberjack/ColorLog.h -------------------------------------------------------------------------------- /Lumberjack/ColorLog.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Lumberjack/ColorLog.m -------------------------------------------------------------------------------- /Lumberjack/DDASLLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Lumberjack/DDASLLogger.h -------------------------------------------------------------------------------- /Lumberjack/DDASLLogger.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Lumberjack/DDASLLogger.m -------------------------------------------------------------------------------- /Lumberjack/DDFileLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Lumberjack/DDFileLogger.h -------------------------------------------------------------------------------- /Lumberjack/DDFileLogger.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Lumberjack/DDFileLogger.m -------------------------------------------------------------------------------- /Lumberjack/DDLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Lumberjack/DDLog.h -------------------------------------------------------------------------------- /Lumberjack/DDLog.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Lumberjack/DDLog.m -------------------------------------------------------------------------------- /Lumberjack/DDNSLoggerLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Lumberjack/DDNSLoggerLogger.h -------------------------------------------------------------------------------- /Lumberjack/DDNSLoggerLogger.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Lumberjack/DDNSLoggerLogger.m -------------------------------------------------------------------------------- /Lumberjack/DDTTYLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Lumberjack/DDTTYLogger.h -------------------------------------------------------------------------------- /Lumberjack/DDTTYLogger.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Lumberjack/DDTTYLogger.m -------------------------------------------------------------------------------- /Lumberjack/HOLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Lumberjack/HOLog.h -------------------------------------------------------------------------------- /Lumberjack/HOLog.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Lumberjack/HOLog.m -------------------------------------------------------------------------------- /Lumberjack/NSLogger/LoggerClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Lumberjack/NSLogger/LoggerClient.h -------------------------------------------------------------------------------- /Lumberjack/NSLogger/LoggerClient.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Lumberjack/NSLogger/LoggerClient.m -------------------------------------------------------------------------------- /Lumberjack/NSLogger/LoggerCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Lumberjack/NSLogger/LoggerCommon.h -------------------------------------------------------------------------------- /Lumberjack/PSDDFormatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Lumberjack/PSDDFormatter.h -------------------------------------------------------------------------------- /Lumberjack/PSDDFormatter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Lumberjack/PSDDFormatter.m -------------------------------------------------------------------------------- /Lumberjack/VTPG_Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Lumberjack/VTPG_Common.h -------------------------------------------------------------------------------- /Lumberjack/VTPG_Common.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Lumberjack/VTPG_Common.m -------------------------------------------------------------------------------- /MTSplashScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/MTSplashScreen.h -------------------------------------------------------------------------------- /MTSplashScreen.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/MTSplashScreen.m -------------------------------------------------------------------------------- /MTSplashScreenDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/MTSplashScreenDelegate.h -------------------------------------------------------------------------------- /Macros/SynthesizeSingleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Macros/SynthesizeSingleton.h -------------------------------------------------------------------------------- /Network/IKNetworkActivityManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Network/IKNetworkActivityManager.h -------------------------------------------------------------------------------- /Network/IKNetworkActivityManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Network/IKNetworkActivityManager.m -------------------------------------------------------------------------------- /PSCompatibility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/PSCompatibility.h -------------------------------------------------------------------------------- /PSCompatibility.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/PSCompatibility.m -------------------------------------------------------------------------------- /PSFoundation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/PSFoundation.h -------------------------------------------------------------------------------- /PSFoundation.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/PSFoundation.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /PSFoundation_CoreData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/PSFoundation_CoreData.h -------------------------------------------------------------------------------- /PSFoundation_CoreLocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/PSFoundation_CoreLocation.h -------------------------------------------------------------------------------- /PSFoundation_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/PSFoundation_Prefix.pch -------------------------------------------------------------------------------- /PSMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/PSMacros.h -------------------------------------------------------------------------------- /PSScrollContentView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/PSScrollContentView.h -------------------------------------------------------------------------------- /PSScrollContentView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/PSScrollContentView.m -------------------------------------------------------------------------------- /README.mdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/README.mdown -------------------------------------------------------------------------------- /Reachability/PSReachability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Reachability/PSReachability.h -------------------------------------------------------------------------------- /Reachability/PSReachability.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Reachability/PSReachability.m -------------------------------------------------------------------------------- /Reachability/Reachability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Reachability/Reachability.h -------------------------------------------------------------------------------- /Reachability/Reachability.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Reachability/Reachability.m -------------------------------------------------------------------------------- /Sound/SoundEffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Sound/SoundEffect.h -------------------------------------------------------------------------------- /Sound/SoundEffect.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Sound/SoundEffect.m -------------------------------------------------------------------------------- /TableView/DTCustomColoredAccessory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/TableView/DTCustomColoredAccessory.h -------------------------------------------------------------------------------- /TableView/DTCustomColoredAccessory.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/TableView/DTCustomColoredAccessory.m -------------------------------------------------------------------------------- /TableView/GradientView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/TableView/GradientView.h -------------------------------------------------------------------------------- /TableView/GradientView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/TableView/GradientView.m -------------------------------------------------------------------------------- /TableView/PSGenericCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/TableView/PSGenericCell.h -------------------------------------------------------------------------------- /TableView/PSGenericCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/TableView/PSGenericCell.m -------------------------------------------------------------------------------- /TableView/PSGenericView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/TableView/PSGenericView.h -------------------------------------------------------------------------------- /TableView/PSGenericView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/TableView/PSGenericView.m -------------------------------------------------------------------------------- /TableView/PSShadowView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/TableView/PSShadowView.h -------------------------------------------------------------------------------- /TableView/PSShadowView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/TableView/PSShadowView.m -------------------------------------------------------------------------------- /TableView/PSTableViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/TableView/PSTableViewController.h -------------------------------------------------------------------------------- /TableView/PSTableViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/TableView/PSTableViewController.m -------------------------------------------------------------------------------- /TableView/ShadowedTableView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/TableView/ShadowedTableView.h -------------------------------------------------------------------------------- /TableView/ShadowedTableView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/TableView/ShadowedTableView.m -------------------------------------------------------------------------------- /TableView/TDBadgedCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/TableView/TDBadgedCell.h -------------------------------------------------------------------------------- /TableView/TDBadgedCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/TableView/TDBadgedCell.m -------------------------------------------------------------------------------- /TableView/UACellBackgroundView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/TableView/UACellBackgroundView.h -------------------------------------------------------------------------------- /TableView/UACellBackgroundView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/TableView/UACellBackgroundView.m -------------------------------------------------------------------------------- /UITableView+FKLoading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/UITableView+FKLoading.h -------------------------------------------------------------------------------- /UITableView+FKLoading.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/UITableView+FKLoading.m -------------------------------------------------------------------------------- /UITableViewCell+FKLoading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/UITableViewCell+FKLoading.h -------------------------------------------------------------------------------- /UITableViewCell+FKLoading.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/UITableViewCell+FKLoading.m -------------------------------------------------------------------------------- /UIViewController+FKLoading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/UIViewController+FKLoading.h -------------------------------------------------------------------------------- /UIViewController+FKLoading.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/UIViewController+FKLoading.m -------------------------------------------------------------------------------- /Universal/MTUniversalHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Universal/MTUniversalHelper.h -------------------------------------------------------------------------------- /Universal/MTUniversalHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Universal/MTUniversalHelper.m -------------------------------------------------------------------------------- /Utils/ColorUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Utils/ColorUtils.h -------------------------------------------------------------------------------- /Utils/ColorUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Utils/ColorUtils.m -------------------------------------------------------------------------------- /Utils/GradientButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Utils/GradientButton.h -------------------------------------------------------------------------------- /Utils/GradientButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Utils/GradientButton.m -------------------------------------------------------------------------------- /Utils/LRPopoverManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Utils/LRPopoverManager.h -------------------------------------------------------------------------------- /Utils/LRPopoverManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Utils/LRPopoverManager.m -------------------------------------------------------------------------------- /Utils/PSActionSheet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Utils/PSActionSheet.h -------------------------------------------------------------------------------- /Utils/PSActionSheet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Utils/PSActionSheet.m -------------------------------------------------------------------------------- /Utils/PSAlertView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Utils/PSAlertView.h -------------------------------------------------------------------------------- /Utils/PSAlertView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Utils/PSAlertView.m -------------------------------------------------------------------------------- /Utils/PSClassUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Utils/PSClassUtils.h -------------------------------------------------------------------------------- /Utils/PSClassUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Utils/PSClassUtils.m -------------------------------------------------------------------------------- /Utils/PSGlobal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Utils/PSGlobal.h -------------------------------------------------------------------------------- /Utils/PSGlobal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Utils/PSGlobal.m -------------------------------------------------------------------------------- /Utils/PSNonEdiableTextView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Utils/PSNonEdiableTextView.h -------------------------------------------------------------------------------- /Utils/PSNonEdiableTextView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Utils/PSNonEdiableTextView.m -------------------------------------------------------------------------------- /Utils/PSSettingsUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Utils/PSSettingsUtil.h -------------------------------------------------------------------------------- /Utils/PSSettingsUtil.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Utils/PSSettingsUtil.m -------------------------------------------------------------------------------- /Utils/PSStatusBarSaver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Utils/PSStatusBarSaver.h -------------------------------------------------------------------------------- /Utils/PSStatusBarSaver.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Utils/PSStatusBarSaver.m -------------------------------------------------------------------------------- /Utils/SCFooterLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Utils/SCFooterLabel.h -------------------------------------------------------------------------------- /Utils/SCFooterLabel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Utils/SCFooterLabel.m -------------------------------------------------------------------------------- /Utils/SCGrfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Utils/SCGrfx.h -------------------------------------------------------------------------------- /Utils/SCGrfx.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Utils/SCGrfx.m -------------------------------------------------------------------------------- /Utils/SMModelObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Utils/SMModelObject.h -------------------------------------------------------------------------------- /Utils/SMModelObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Utils/SMModelObject.m -------------------------------------------------------------------------------- /Utils/SafeFetchedResultsController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Utils/SafeFetchedResultsController.h -------------------------------------------------------------------------------- /Utils/SafeFetchedResultsController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/Utils/SafeFetchedResultsController.m -------------------------------------------------------------------------------- /ZeroWeakReferences/MANotificationCenterAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/ZeroWeakReferences/MANotificationCenterAdditions.h -------------------------------------------------------------------------------- /ZeroWeakReferences/MANotificationCenterAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/ZeroWeakReferences/MANotificationCenterAdditions.m -------------------------------------------------------------------------------- /ZeroWeakReferences/MAWeakArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/ZeroWeakReferences/MAWeakArray.h -------------------------------------------------------------------------------- /ZeroWeakReferences/MAWeakArray.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/ZeroWeakReferences/MAWeakArray.m -------------------------------------------------------------------------------- /ZeroWeakReferences/MAWeakDictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/ZeroWeakReferences/MAWeakDictionary.h -------------------------------------------------------------------------------- /ZeroWeakReferences/MAWeakDictionary.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/ZeroWeakReferences/MAWeakDictionary.m -------------------------------------------------------------------------------- /ZeroWeakReferences/MAZeroingWeakProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/ZeroWeakReferences/MAZeroingWeakProxy.h -------------------------------------------------------------------------------- /ZeroWeakReferences/MAZeroingWeakProxy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/ZeroWeakReferences/MAZeroingWeakProxy.m -------------------------------------------------------------------------------- /ZeroWeakReferences/MAZeroingWeakRef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/ZeroWeakReferences/MAZeroingWeakRef.h -------------------------------------------------------------------------------- /ZeroWeakReferences/MAZeroingWeakRef.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/ZeroWeakReferences/MAZeroingWeakRef.m -------------------------------------------------------------------------------- /activerecord-coredata/ActiveRecordHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/activerecord-coredata/ActiveRecordHelpers.h -------------------------------------------------------------------------------- /activerecord-coredata/ActiveRecordHelpers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/activerecord-coredata/ActiveRecordHelpers.m -------------------------------------------------------------------------------- /activerecord-coredata/CoreData+ActiveRecordFetching.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/activerecord-coredata/CoreData+ActiveRecordFetching.h -------------------------------------------------------------------------------- /activerecord-coredata/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/activerecord-coredata/LICENSE -------------------------------------------------------------------------------- /activerecord-coredata/NSFetchedResultsController+ActiveRecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/activerecord-coredata/NSFetchedResultsController+ActiveRecord.h -------------------------------------------------------------------------------- /activerecord-coredata/NSFetchedResultsController+ActiveRecord.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/activerecord-coredata/NSFetchedResultsController+ActiveRecord.m -------------------------------------------------------------------------------- /activerecord-coredata/NSManagedObject+ActiveRecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/activerecord-coredata/NSManagedObject+ActiveRecord.h -------------------------------------------------------------------------------- /activerecord-coredata/NSManagedObject+ActiveRecord.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/activerecord-coredata/NSManagedObject+ActiveRecord.m -------------------------------------------------------------------------------- /activerecord-coredata/NSManagedObjectContext+ActiveRecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/activerecord-coredata/NSManagedObjectContext+ActiveRecord.h -------------------------------------------------------------------------------- /activerecord-coredata/NSManagedObjectContext+ActiveRecord.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/activerecord-coredata/NSManagedObjectContext+ActiveRecord.m -------------------------------------------------------------------------------- /activerecord-coredata/NSManagedObjectModel+ActiveRecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/activerecord-coredata/NSManagedObjectModel+ActiveRecord.h -------------------------------------------------------------------------------- /activerecord-coredata/NSManagedObjectModel+ActiveRecord.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/activerecord-coredata/NSManagedObjectModel+ActiveRecord.m -------------------------------------------------------------------------------- /activerecord-coredata/NSPersistentStore+ActiveRecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/activerecord-coredata/NSPersistentStore+ActiveRecord.h -------------------------------------------------------------------------------- /activerecord-coredata/NSPersistentStore+ActiveRecord.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/activerecord-coredata/NSPersistentStore+ActiveRecord.m -------------------------------------------------------------------------------- /activerecord-coredata/NSPersistentStoreCoordinator+ActiveRecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/activerecord-coredata/NSPersistentStoreCoordinator+ActiveRecord.h -------------------------------------------------------------------------------- /activerecord-coredata/NSPersistentStoreCoordinator+ActiveRecord.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/activerecord-coredata/NSPersistentStoreCoordinator+ActiveRecord.m -------------------------------------------------------------------------------- /activerecord-coredata/README.creole: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/PSFoundation/HEAD/activerecord-coredata/README.creole --------------------------------------------------------------------------------