Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ playground.xcworkspace
# Add this line if you want to avoid checking in source code from Swift Package Manager dependencies.
# Packages/
.build/
.swiftpm/

# CocoaPods
#
Expand Down
1 change: 1 addition & 0 deletions FazeKit/Classes/CIFilterAdditions.swift
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
//

import Foundation
import UIKit
import CoreImage
import AVFoundation

Expand Down
1 change: 1 addition & 0 deletions FazeKit/Classes/DrawingAdditions.swift
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
//

import Foundation
import UIKit

public extension UIImage {
static func usingContext(size: CGSize = CGSize(width: 1, height: 1), execute: (CGContext) -> Void) -> UIImage? {
Expand Down
1 change: 1 addition & 0 deletions FazeKit/Classes/ResourceUtils.swift
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
//

import Foundation
import UIKit

public enum FileType {
case png
Expand Down
3 changes: 3 additions & 0 deletions FazeKit/Classes/StringAdditions.swift
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@

// gist: https://gist.github.com/albertbori/0faf7de867d96eb83591
// stackoverflow: http://stackoverflow.com/questions/27570910/swift-fast-low-level-string-lastindexof
import Foundation
import UIKit

public extension String {
@available(*, deprecated, message: "Use replacingOccurrences(of:, with:) instead")
func replace(_ target: String, withString: String) -> String {
Expand Down
1 change: 1 addition & 0 deletions FazeKit/Classes/UIApplicationAdditions.swift
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
//

import Foundation
import UIKit

private var activityCount: Int = 0

Expand Down
1 change: 1 addition & 0 deletions FazeKit/Classes/UIImageFilterAdditions.swift
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
//

import Foundation
import UIKit
import CoreImage
import AVFoundation

Expand Down
1 change: 1 addition & 0 deletions FazeKit/Classes/UINavigationControllerAdditions.swift
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
//

import Foundation
import UIKit

public extension UINavigationController {
func firstViewController<T: UIViewController>(ofKind kind: T.Type = T.self) -> T? {
Expand Down
1 change: 1 addition & 0 deletions Sources/FazeKit/Classes/CIFilterAdditions.swift
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
//

import Foundation
import UIKit
import CoreImage
import AVFoundation

Expand Down
1 change: 1 addition & 0 deletions Sources/FazeKit/Classes/DrawingAdditions.swift
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
//

import Foundation
import UIKit

public extension UIImage {
static func usingContext(size: CGSize = CGSize(width: 1, height: 1), execute: (CGContext) -> Void) -> UIImage? {
Expand Down
1 change: 1 addition & 0 deletions Sources/FazeKit/Classes/KeyboardHelper.swift
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
//

import Foundation
import UIKit

public class KeyboardHelper {
public static func getAnimationOptions(notification: Notification) -> UIView.AnimationOptions? {
Expand Down
1 change: 1 addition & 0 deletions Sources/FazeKit/Classes/ResourceUtils.swift
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
//

import Foundation
import UIKit

public enum FileType {
case png
Expand Down
3 changes: 3 additions & 0 deletions Sources/FazeKit/Classes/StringAdditions.swift
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@

// gist: https://gist.github.com/albertbori/0faf7de867d96eb83591
// stackoverflow: http://stackoverflow.com/questions/27570910/swift-fast-low-level-string-lastindexof
import Foundation
import UIKit

public extension String {
@available(*, deprecated, message: "Use replacingOccurrences(of:, with:) instead")
func replace(_ target: String, withString: String) -> String {
Expand Down
1 change: 1 addition & 0 deletions Sources/FazeKit/Classes/UIApplicationAdditions.swift
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
//

import Foundation
import UIKit

private var activityCount: Int = 0

Expand Down
1 change: 1 addition & 0 deletions Sources/FazeKit/Classes/UIImageFilterAdditions.swift
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
//

import Foundation
import UIKit
import CoreImage
import AVFoundation

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
//

import Foundation
import UIKit

public extension UINavigationController {
func firstViewController<T: UIViewController>(ofKind kind: T.Type = T.self) -> T? {
Expand Down