6pods
A Modern interface for attributed strings.
Make working with attributed strings simple and safe.
This is a light-weight third party alternative to the
existing inconvinient and error prone programming interface
to NSAttributedString
.
License: MIT
Modern interface to UserDefaults + Codable support please refer to README.md for usage details.
License: MIT
In Memory LRU Cache Implementation for iOS and OS X.
pod install
NMLRUCache/
containing the files NMLRUCache.h/m and NMLRUImageCache.h/m into your project.
NMLRUCache *imageCache = [NMLRUCache sharedCache];
```
[NMLRUCache sharedCache].threshHold = 20;
```
```
[imageCache setImage:image forKey:@"imageKey"];
```
```
[imageCache imageForKey:@"imageKey"];
```
License: MIT
UIDevice is handy and serves a purpose but it does lack the ability to do things like provide the screen size in inches or provide specific device model or family info.
Thats where this library comes in, a super light weight and simple set of extensions to UIDevice that make UIDevice even more fun to work with.
License: MIT
Make working with UIFont faster and less error-prone
This mico library is simply just one giant Font
enum
that can be used in place of raw Strings when choosing a font
type to use.
Use code completion of the enum case to see available fonts,
make runtime crashes due to font name typos near impossible!
License: MIT