This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| for someView in self.view.subviews { | |
| if let blockView = someView as? BlockView { | |
| blockView.frame = CGRectZero | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #define AVMUIColorFromRGB(rgbValue) [UIColor colorWithRed:((float)((rgbValue & 0xFF0000) >> 16))/255.0 green:((float)((rgbValue & 0xFF00) >> 8))/255.0 blue:((float)(rgbValue & 0xFF))/255.0 alpha:1.0] | |
| #define AVMUIColorFromRGBWithAlpha(rgbValue,a) [UIColor colorWithRed:((float)((rgbValue & 0xFF0000) >> 16))/255.0 green:((float)((rgbValue & 0xFF00) >> 8))/255.0 blue:((float)(rgbValue & 0xFF))/255.0 alpha:a] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| https://www.icloud.com/pages/AwBWCAESECFa5ANJ2Ovm6rGZnxOShfkaKtAtWbKL-kWs26XjE2zH6CAXwVDf_16tEpOv7IEWX2lKZQp8rY-O5Sc65gMCUCAQEEIDfFCoaj_HzFdXxDkjW3iLQnO3cT5hCKoV6X5-JQQgXW#Blank_7 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| echo $1 | tr "[:lower:]" "[:upper:]" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| switch (poiModel.visited, poiModel.type) { | |
| case (true, Poi.Type.Star) : annotationView.type = LMPoiAnnotationView.IconType.VisitedSpecial | |
| case (true, _) : annotationView.type = LMPoiAnnotationView.IconType.Visited | |
| case (false, Poi.Type.Star) : annotationView.type = LMPoiAnnotationView.IconType.MissedSpecial | |
| case (false, _) : annotationView.type = LMPoiAnnotationView.IconType.Missed | |
| default : () | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| func foo(first: Int, second: Int, third: String) { | |
| //... | |
| } | |
| let args = (1, 2, "bar") | |
| foo(args) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| zardoz@MBPR ~/Projects/LittleMouse (master*) $ ./objc-dependency-visualizer/generate-objc-dependencies-to-json.rb -d -p "/Users/zardoz/Library/Developer/Xcode/DerivedData/Little_Mouse-amujtlftngfqiwftknemzgkcsiep/Build/Intermediates/Little Mouse.build/Debug-iphonesimulator/Little_Mouse.build" | |
| var dependencies = { | |
| links: | |
| [ | |
| error: unable to open '/Users/zardoz/Library/Developer/Xcode/DerivedData/Little_Mouse-amujtlftngfqiwftknemzgkcsiep/Build/Intermediates/Little': No such file or directory |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| zardoz@MBPR ~/Projects/LittleMouse (master*) $ ./objc-dependency-visualizer/generate-objc-dependencies-to-json.rb -d -p "/Users/zardoz/Library/Developer/Xcode/DerivedData/Little_Mouse-amujtlftngfqiwftknemzgkcsiep/Build/Intermediates/Little Mouse.build/Debug-iphonesimulator/Little_Mouse.build" | |
| var dependencies = { | |
| links: | |
| [ | |
| error: unable to open '/Users/zardoz/Library/Developer/Xcode/DerivedData/Little_Mouse-amujtlftngfqiwftknemzgkcsiep/Build/Intermediates/Little': No such file or directory |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # with space in path | |
| zardoz@MBPR ~/Projects/LittleMouse (master*) $ ./objc-dependency-visualizer/generate-objc-dependencies-to-json.rb -d -p "/Users/zardoz/Library/Developer/Xcode/DerivedData/Little_Mouse-amujtlftngfqiwftknemzgkcsiep/Build/Intermediates/Little Mouse.build/Debug-iphonesimulator/Little_Mouse.build" | |
| var dependencies = { | |
| links: | |
| [ | |
| error: unable to open '/Users/zardoz/Library/Developer/Xcode/DerivedData/Little_Mouse-amujtlftngfqiwftknemzgkcsiep/Build/Intermediates/Little': No such file or directory | |
| # with escaped space | |
| zardoz@MBPR ~/Projects/LittleMouse (master*) $ ./objc-dependency-visualizer/generate-objc-dependencies-to-json.rb -d -p "/Users/zardoz/Library/Developer/Xcode/DerivedData/Little_Mouse-amujtlftngfqiwftknemzgkcsiep/Build/Intermediates/Little\ Mouse.build/Debug-iphonesimulator/Little_Mouse.build" | |
| var dependencies = { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| => Switching to working directory: /Users/vagrant/git | |
| $ cd /Users/vagrant/git | |
| 2015/12/11 05:20:09 Failed to get valid project file (invalid project file): Standalone.workspace | |
| exit status 1 | |
| ERRO[05:20:09] Step (Xcode: Unit Test) failed, error: (exit status 1) |
OlderNewer