storyboard上で、initial view controllerから他のview controllerに対してrelationshipを確立します。同様に、それらのview controllerから他のview controllerにrelationshipを確立します。最終的に、storyboard上のほとんど、あるいは全てのview controllerを一つのグラフに接続します。接続されたview controllerが、iOSによっていつインスタンス化されるかは、relationshipのタイプによって決まります。
ネットワークを扱うフレームワークを新規に作る必要はない。 このフレームワークは非常に多くのアプリで検証されており、必要な機能のほとんどを含んでいる。
ターゲットOSとAFNetworkingの対応
- JRebelを利用すると、アプリケーションの再起動なしで実行中のアプリケーションに加えた変更を即座に反映することができます(ホットリローディング)。まるでPHPのようにサクサク書けるッ!
- Scala開発者にはライセンスが$0で提供されます。Javaで利用する場合は購入してね☆彡
以下がインストールされているものとする。
更新: | 2013-07-30 |
---|---|
バージョン: | 0.1.1 |
作者: | @voluntas |
URL: | http://voluntas.github.io/ |
概要
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
# 少し凝った zshrc | |
# License : MIT | |
# http://mollifier.mit-license.org/ | |
######################################## | |
# 環境変数 | |
export LANG=ja_JP.UTF-8 | |
# 色を使用出来るようにする |
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
# シンプルな zshrc | |
# License : MIT | |
# http://mollifier.mit-license.org/ | |
# 環境変数 | |
export LANG=ja_JP.UTF-8 | |
# 補完機能を有効にする | |
autoload -Uz compinit | |
compinit |
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
// play-jsonをフツーのプロジェクトでも使いたいサンプル | |
name := "hello" | |
version := "1.0" | |
scalaVersion := "2.10.3" | |
resolvers += "Typesafe repository" at "http://repo.typesafe.com/typesafe/releases/" |
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
;; helm-for-document | |
(require 'helm-elisp) | |
(setq helm-for-document-sources-info | |
(list | |
helm-c-source-info-emacs | |
helm-c-source-info-elisp | |
helm-c-source-info-gnus | |
helm-c-source-info-pages | |
helm-c-source-info-org | |
helm-c-source-info-cl)) |