1
1
mirror of https://github.com/exyte/Macaw.git synced 2024-08-16 08:30:33 +03:00

Macaw xcodeproject updated to swift 2.3

This commit is contained in:
Viktor Sukochev 2016-09-20 21:17:58 +06:00
parent d28d14180e
commit 3d519ceac1
27 changed files with 489 additions and 467 deletions

View File

@ -1,4 +1,4 @@
// Generated by Apple Swift version 2.2 (swiftlang-703.0.18.8 clang-703.0.31)
// Generated by Apple Swift version 2.3 (swiftlang-800.10.12 clang-800.0.38)
#pragma clang diagnostic push
#if defined(__has_include) && __has_include(<swift/objc-prologue.h>)

View File

@ -1,4 +1,4 @@
// Generated by Apple Swift version 2.2 (swiftlang-703.0.18.8 clang-703.0.31)
// Generated by Apple Swift version 2.3 (swiftlang-800.10.12 clang-800.0.38)
#pragma clang diagnostic push
#if defined(__has_include) && __has_include(<swift/objc-prologue.h>)

View File

@ -54,8 +54,7 @@ class AnimationsView: MacawView {
}
for i in 0 ... (n - 1) {
arc4random()
// Node
let circle = Circle(cx: r, cy: r, r: r)
let shape = Shape(

File diff suppressed because it is too large Load Diff

View File

@ -1,3 +1,4 @@
import Foundation
let animationProducer = AnimationProducer()

View File

@ -1,4 +1,4 @@
import Foundation
import UIKit
import RxSwift
public class Text: Node {

View File

@ -1,3 +1,5 @@
import Foundation
class SVGParserRegexHelper {
private static let transformAttributePattern = "([a-z]+)\\(((\\-?\\d+\\.?\\d*\\s*,?\\s*)+)\\)"
@ -41,4 +43,4 @@ class SVGParserRegexHelper {
return self.textElementMatcher
}
}
}