I hereby claim:
- I am tapsandswipes on github.
- I am acvivo (https://keybase.io/acvivo) on keybase.
- I have a public key whose fingerprint is B3A6 485F 4D1F 85E5 C167 BD9D AF30 D6A3 F21A 3C10
To claim this, I am signing this object:
| UIFont.familyNames().forEach { | |
| print("\($0)") | |
| UIFont.fontNamesForFamilyName($0).forEach { | |
| print("== \($0)") | |
| } | |
| } |
| import XCTest | |
| @testable import MyApp | |
| class CallbackTest: XCTestCase { | |
| func testAsyncCalback() { | |
| let service = SomeService() | |
| // 1. Define an expectation | |
| let expectation = expectationWithDescription("SomeService does stuff and runs the callback closure") |
I hereby claim:
To claim this, I am signing this object:
| @property (nonatomic, assign, getter = isChromeHidden) BOOL chromeHidden; | |
| - (BOOL)prefersStatusBarHidden { | |
| return self.isChromeHidden; | |
| } | |
| - (UIStatusBarAnimation)preferredStatusBarUpdateAnimation { | |
| return UIStatusBarAnimationSlide; | |
| } |
| git push origin :refs/tags/<tagname> // Delete tag from remote | |
| git tag -fa <tagname> // Reset tag to current commit | |
| git push origin master --tags // Push tag to remote |