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
| { | |
| "kind": "SourceFile", | |
| "layout": [ | |
| { | |
| "kind": "CodeBlockItemList", | |
| "layout": [ | |
| { | |
| "kind": "CodeBlockItem", | |
| "layout": [ | |
| { |
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
| { | |
| "kind": "SourceFile", | |
| "layout": [ | |
| { | |
| "kind": "CodeBlockItemList", | |
| "layout": [ | |
| { | |
| "kind": "CodeBlockItem", | |
| "layout": [ | |
| { |
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
| $ kuri setup | |
| created Kuri.yml. | |
| created template for Entity | |
| created template for DataStore | |
| created template for Repository | |
| created template for UseCase | |
| created template for Translator | |
| created template for Model | |
| created template for Presenter | |
| created template for View |
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
| // Get ViewController | |
| let storyboard = UIStoryboard(name: "Storyboard", bundle: nil) | |
| let viewController = storyboard.instantiateViewControllerWithIdentifier("XXXX") as! ViewController | |
| // PerformSegue | |
| performSegueWithIdentifier("Open", sender: sender) | |
| // Nib | |
| let nib = UINib(nibName: "TableViewCell", bundle: nil) | |
| let cell = nib.instantiateWithOwner(nil, options: nil)[0] as! TableViewCell |
NewerOlder