Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/alexito4/ampadditions
UIKit Additions: some categories for improve the iOS Development.
https://github.com/alexito4/ampadditions
Last synced: about 2 months ago
JSON representation
UIKit Additions: some categories for improve the iOS Development.
- Host: GitHub
- URL: https://github.com/alexito4/ampadditions
- Owner: alexito4
- License: mit
- Created: 2012-07-25T20:47:12.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2014-05-29T12:36:56.000Z (over 10 years ago)
- Last Synced: 2024-05-01T21:49:17.193Z (8 months ago)
- Language: Objective-C
- Size: 660 KB
- Stars: 9
- Watchers: 3
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
## UIKit-AMPAdditions
AMPAddiions bring to you some categories for improve the iOS Development.
# Usage
1. Add the AMPAdditions folder to your project.
2. Import AMPAdditions.h file to your -Prefix.pch file.
3. Add this Frameworks:
- MapKit.framework
- QuartzCore.framework
- CoreImage.framework
- CoreGraphics.framework# Additions
- MKMapView
- NSArray
- NSObject
- UIActionSheet
- UIAlertView
- UIApplication
- UIColor
- UIDevice
- UIFont
- UIImageView
- UINavigationController
- UISplitViewController
- UIView# In vendor
- NSDate-Extensions | Erica Sadun | https://github.com/erica/NSDate-Extensions
- UIWebView-RemoveShadow | Mark Rickert | https://github.com/markrickert/UIWebView-RemoveShadow# Useful Macros
*Included Macros from my project SupportMacros https://github.com/alexito4/SupportMacros*# Compare System Versions
There are some useful macros for comparing system version.if (SYSTEM_VERSION_LESS_THAN(@"6.0")) {
// ...
}See the rest in the AMPMacros.h file.