Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hyperoslo/sugar
:coffee: Something sweet that goes great with your Cocoa
https://github.com/hyperoslo/sugar
ios sugar sweet swift
Last synced: 29 days ago
JSON representation
:coffee: Something sweet that goes great with your Cocoa
- Host: GitHub
- URL: https://github.com/hyperoslo/sugar
- Owner: hyperoslo
- License: other
- Created: 2015-07-09T09:10:55.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2020-06-18T11:12:48.000Z (over 4 years ago)
- Last Synced: 2024-10-15T02:40:12.020Z (29 days ago)
- Topics: ios, sugar, sweet, swift
- Language: Swift
- Homepage: https://github.com/hyperoslo
- Size: 300 KB
- Stars: 1,068
- Watchers: 37
- Forks: 69
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Sugar
Sugar is a sweetener for your Cocoa implementations.
[![CI Status](https://circleci.com/gh/hyperoslo/Sugar.png)](https://circleci.com/gh/hyperoslo/Sugar)
[![Version](https://img.shields.io/cocoapods/v/Sugar.svg?style=flat)](http://cocoadocs.org/docsets/Sugar)
[![Carthage Compatible](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat)](https://github.com/Carthage/Carthage)
[![License](https://img.shields.io/cocoapods/l/Sugar.svg?style=flat)](http://cocoadocs.org/docsets/Sugar)
[![Platform](https://img.shields.io/cocoapods/p/Sugar.svg?style=flat)](http://cocoadocs.org/docsets/Sugar)
![Swift](https://img.shields.io/badge/%20in-swift%205.0-orange.svg)Table of Contents
--- [iOS](#ios)
- [Application](#application)
- [Screen](#screen)
- [Simulator](#simulator)
- [Keyboard Observer](#keyboard-observer)
- [iOS Extensions](#ios-extensions)
- [UIView](#uiview)
- [UIImage](#uiimage)
- [OS X](#os-x)
- [OS X Extensions](#os-x-extensions)
- [NSTableView](#nstableview)
- [Shared](#shared)
- [Dates](#dates)
- [Compare](#compare)
- [Construct](#construct)
- [Frame](#frame)
- [Grand Central Dispatch](#grand-central-dispatch)
- [Localization](#localization)
- [Once](#once)
- [Operators](#operators)
- [Range](#range)
- [Regex](#regex)
- [Shared Extensions](#shared-extensions)
- [+Queueable](#queueable)
- [URLStringConvertible](#urlstringconvertible)
- [Core Foundation](#core-foundation)
- [Swizzler](#swizzler)
- [Then](#then)
- [Type Alias](#type-alias)
- [UITesting](#uitesting)
- [UnitTesting](#unittesting)
- [Installation](#installation)
- [Author](#author)
- [License](#license)## iOS
### Application
```swift
let appName = Application.name // CFBundleDisplayName : String
let appVersion = Application.version // CFBundleShortVersionString : String
let appExecutable = Application.executable // CFBundleExecutable : String
let appBundle = Application.bundle // CFBundleIdentifier : String
let appSchemes = Application.schemes // CFBundleURLSchemes : [String]
let mainAppScheme = Application.mainScheme // CFBundleURLSchemes.first : String?
```Gain easy access to main bundle information.
### Screen
```swift
let pixelSize = Screen.pixelSize // CGSize(width: screenWidth * scale, height: screenHeight * scale)
```Get the actual pixel information of the device screen.
### Simulator
```swift
if !Simulator.isRunning {
// add device specific operations here
}
```To easily exclude operations from when you as a developer runs the application in the simulator,
not subscribing to push notification or running analytics operations etc.### Keyboard Observer
Observe keyboard showing and hiding events, and handle it
```swift
let handler = BasicKeyboardHandler()
handler.show = { [weak self] height in
// move text fields up
}handler.hide = { [weak self] in
// move text fields back to original position
}keyboardObserver = KeyboardObserver(handler: handler)
```Currently support
- BasicKeyboardHandler: basic UIView animation
- InsetKeyboardHandler: animate UIScrollView insets
- ConstraintKeyboardHandler: animate bottom layout constraint
- CustomKeyboardHandler: custom handling### iOS Extensions
#### UIView
##### .optimize()
```swift
let view = UIView.optimize
/*
clipsToBounds = true
layer.drawsAsynchronously = true
opaque = true
*/
```#### UIImage
##### +Rendering mode
```swift
image.original // imageWithRenderingMode(.AlwaysOriginal)
image.template // imageWithRenderingMode(.AlwaysTemplate)
```## Shared
### SequenceType
```swift
let first: Int? = items.findFirst({ $0 > 10 })
```### Dates
#### Compare
```swift
if date1 < date2 {
// do something
} else if date1 >= date2 {
// do something else
}
```#### Construct
```swift
let _ = 5.day
let _ = 3.week
```### Frame
```swift
let view = UIView()
view.width = 200
view.height = 200
view.x = 25
view.y = 25print(view.width) // prints 200
print(view.height) // prints 200
print(view.x) // prints 25
print(view.y) // prints 25
```### Grand Central Dispatch
```swift
dispatch {
// dispatch in main queue
}dispatch(queue: .Background) {
// dispatch in background queue
}lazy var serialQueue = dispatch_queue_create("serialQueue", DISPATCH_QUEUE_SERIAL)
dispatch(queue: .Custom(serialQueue)) {
// dispatch in a serial queue
}
```Easy dispatching with grand central dispatch.
Support all the regular global queues: `Main`, `Interactive`, `Initiated`, `Utility`, `Background`.
And `.Custom()` for your own dispatch queues.### Localization
```swift
let string = localizedString("My Profile")
let formattedString = localizedString(key: "%d numbers", arguments: 10)
```Swift access (pun intended) to `NSLocalizedString`, you will get more valid auto completion
with this one, we promise.### Once
```swift
let once = Once()
once.run {
// do something
}once.run {
// no effect
}
```### Operators
```swift
var url = NSURL(string: "hyper.no")!
url ?= NSURL(string: "\\/http")
// url is equal to hyper.no
```The `?=` only assigns values if the right is not nil.
### Range
```swift
let acceptable = 200..<300
if acceptable.contains(response.statusCode) {
// Status code is between 200 and 299.
}
```### Regex
```swift
if "[email protected]".isEmail() {
// Is email
}let stringNumber = "1984"
if stringNumber.isNumber() {
// Is a number
}if stringNumber.matches("^[0-9]+$") {
// Is a number
}
```### Shared Extensions
#### +Queueable
```swift
struct Object: Queueable {
func process() -> Bool { return true }
}let myQueue = [Object(), Object()]
myQueue.processQueue()
```Make your own processing queue with ease, just make your object conform the `Queueable`.
```swift
public protocol Queueable {
func process() -> Bool
}
```#### URLStringConvertible
```swift
let urlString = "https://hyper.no"
let url = urlString.url
```Highly inspired by / borrowed from [Alamofire](https://github.com/Alamofire/Alamofire)'s [implementation](https://github.com/Alamofire/Alamofire/blob/990fded98afe5135dc418e1f6eb0287027dd067f/Source/Alamofire.swift#L31) of URLStringConvertible.
#### Core Foundation
```swift
let string = "hyper/oslo"
string.length // 10
string.truncate(5) // hyper...
string.split(/) // ["hyper", oslo]if string.isPresent {
// do something
}if string.contains("hyper") {
// found hyper
}var dirtyString = " hyper "
print(dirtyString.trim()) // prints "hyper"
```Just some extra sugar on top of `String` for getting the length, truncating, trimming or splitting a `String`.
`isPresent` is the opposite of `isEmpty`.
`contains` and be used to check if a string contains a word or pharse.
### Swizzler
```swift
class Swizzled: NSObject {override class func initialize() {
struct Static {
static var token: dispatch_once_t = 0
}if self !== Swizzled.self {
return
}dispatch_once(&Static.token) {
Swizzler.swizzle("method", cls: self)
}
}dynamic func method() -> Bool {
return true
}func swizzled_method() -> Bool {
return false
}
}let object = Swizzled()
object.method() // false
```Everyday we are swizzling, this use to be mundane, now it just Swiftling, we mean, super fast.
### Then
```
let UIView().then {
$0.backgroundColor = UIColor.blackColor()
}
```This implementation is brought to you by [@devxoul](https://github.com/devxoul) by his awesome [Then](https://github.com/devxoul/Then) repository.
### Type Alias
```swift
public typealias JSONArray = [[String : AnyObject]]
public typealias JSONDictionary = [String : AnyObject]
```### UITesting
```
if UITesting.isRunning {
// tests are running
} else {
// everything is fine, move along
}
```To easily include or exclude operations for when you are running UI tests.
### UnitTesting
```
if UnitTesting.isRunning {
// running test
}func testPerformance() {
let measurement = measure {
// run operation
}
}
```Check if you are running UniTests and to measure performance.
## Installation
**Sugar** is available through [CocoaPods](http://cocoapods.org). To install
it, simply add the following line to your Podfile:```ruby
pod 'Sugar'
```**Sugar** is also available through [Carthage](https://github.com/Carthage/Carthage).
To install just write into your Cartfile:```ruby
github "hyperoslo/Sugar"
```
**Sugar** is also available through [Swift Package Manager](https://swift.org/package-manager).
- iOS: Open Xcode, File->Swift Packages, search input **https://github.com/hyperoslo/Sugar.git**, and then select Version Up to Next Major **5.0.1** < .
- Or add dependencies in your `Package.swift`:
```ruby
.package(url: "https://github.com/hyperoslo/Sugar.git", .upToNextMajor(from: "5.0.1")),
```## Author
Hyper Interaktiv AS, [email protected]
## License
**Sugar** is available under the MIT license. See the LICENSE file for more info.