Connect to your site Wi-Fi. Scan the QR code OR enter the PIN at https://swiftcast.tv/ Open a casting-enabled app and tap the casting icon
public class MyPublicClass:NSObject { public func publicMethod() { println("\(self.dynamicType.description()) public method") } internal func internalMethod() { println("\(self.dynamicType.description()) internal method") } private func privateMethod() { println("\(self.dynamicType.description()) private method") } func task() { MyPublicClass().privateMethod() MyInternalClass().privateMethod() MyP
Swift を学ぼう 弊社でも iOS エンジニアはもちろん、サーバーサイドのエンジニアや AWS エンジニアも Swift に興味津々です。Objective-C より読みやすく、モダンな書き方になっている反面、仕様を読み込んでみるとちょっと分かりづらいところもあったりします。 そこで、これまで Web で公開されている Swift について学べる記事を日本語の記事を中心にまとめてみました。今後も有益な情報が公開されたらガンガン追記していきます! 公式情報 一番有益な情報は間違いなく公式の情報です。 Xcode 6 から導入されたツール「Playground」で試しながら読んでいくことを想定して書かれているようです。Playground を使って挙動を確認しながら学ぶのが一番良いと思います。 Swift Programming Language | Apple Developer The
In the next code I'm trying to call the deinit method releasing all the references to the Person Class instance Mark but the deinit is never called. Why? class Person{ let name:String init(name:String){ self.name = name println("Person created") } deinit { println("Person \(name) deinit") } } var Mark:Person? = Person(name:"Mark") Mark = nil // Shouldn't the person deinit method be called here? It
Build apps using a powerful open language.
概要 思ったよりバズったので、いくつか加筆修正しました beta3でArrayの型指定の方法が変わったなーと思って眺めていたら、もっと根本的な変化がありました。 SwiftのArrayがヤバイなどで話題になってたやつです。 公式ドキュメント The Swift Programming Language 変更点 Array in Swift has been completely redesigned to have full value semantics like Dictionary and String have always had in Swift. This resolves various mutability problems – now a 'let' array is completely immutable, and a 'var' array is complet
名前空間 「Swiftにおいて名前空間は暗黙のうちに提供される。すべてのクラスはそのモジュール (Xcode上のターゲット)によって暗黙のうちにスコープが制限される。クラスプレフィックスはもはや不要」 原文: Namespacing is implicit in swift, all classes (etc) are implicitly scoped by the module (Xcode target) they are in. no class prefixes needed https://twitter.com/clattner_llvm/status/474730716941385729 (Swiftの作者 Chris Lattnerのツイート) アクセス制限修飾子 (public, private, etc..) 現状public, privateなどの予約語は存在しない
数日間iOS8/Xcode6/Swiftな環境で色々試してみて、Swiftを使っていて思ったよりがっかりした点が多かったのでちょっとまとめてみようと思います。 動的な処理がSwiftだけでは一切できない [NSObject performSelector:]の類と、NSInvocationがSwiftからは一切呼び出せません。使おうとすると怒られます。objc/runtime.hは試していませんが、同様に直接Swift経由では呼び出せず間にObjective-Cをかます必要があるのではないかと思われます。 @optionalなprotocolが限定的にしか使用できない 具体的には@objc属性を付けないと使えません。しかしながらこのような後方互換性のためだけに存在する属性をいつまでもAppleがサポートするかは疑問が残るというのと、もう一つ以下の様な問題があります。 @objc属性のついた
2014-06-04 Swiftを触ってみた Swiftの基本を学習したメモ。 Objective-CやCocoaの知識は全く無い。とりあえずObjective-Cより速いとか。LLVMでネイティブコードにコンパイル出来るらしい。 参考 ドキュメントは公式を読む。 とりあえずSwift Tourをザッと眺めてみる。 Web https://developer.apple.com/swift/ https://developer.apple.com/library/prerelease/ios/referencelibrary/GettingStarted/LandingPage/index.html 書籍 https://itunes.apple.com/jp/book/swift-programming-language/id881256329?l=en&mt=11 ダウンロード Xco
Swiftの基本を学習したメモ。 Objective-CやCocoaの知識は全く無い。とりあえずObjective-Cより速いとか。LLVMでネイティブコードにコンパイル出来るらしい。 参考 ドキュメントは公式を読む。 とりあえずSwift Tourをザッと眺めてみる。 Web https://developer.apple.com/swift/ https://developer.apple.com/library/prerelease/ios/referencelibrary/GettingStarted/LandingPage/index.html 書籍 ダウンロード Xcode 6 Betaをダウンロード。 REPL コマンドラインから実行します。 $ /Applications/Xcode6-Beta.app/Contents/Developer/Toolchains/Xcode
Swiftに関するメモ - 一覧 https://developer.apple.com/swift/ より The Swift Programming Language (iBooks Store)をざっくり目を通してつらつらと。 プロパティの監視 (willSet と didSet) Objective-C でいうところの KVO (Key-Value-Observing) のような位置づけになるんでしょうか、プロパティに対して、willSet と didSet というオブザーバーを設定することができます。 struct SomeClass { var value: Int { willSet { // value がセットする前に呼ばれる } didSet { // value がセットされた直後に呼ばれる } } }
Swiftに関するメモ - 一覧 https://developer.apple.com/swift/ より The Swift Programming Language (iBooks Store)をざっくり目を通してつらつらと。 前回は class と struct に触れたところまで。今回はそこから。 まだまだコード書いてません。 class と struct 宣言と利用 class SomeClass { var value = 0 // インスタンス変数 value で初期値 = 0 // ... 中略 ... }
Swiftに関するメモ - 一覧 https://developer.apple.com/swift/ より まだコード書いていません。 とりあえずThe Swift Programming Language (iBooks Store)をざっくり目を通してつらつらと。 こちらに続きがあります。 定数と変数 定数は let で、変数は var で。: で型指定できる。 配列とディクショナリ(連想配列) 配列 : [value0,value1,value2] ディクショナリ : [key1:value1,key2:value2] letで宣言すれば immutable で、varで宣言すれば mutable 。 配列 in でイテレーション。 配列の要素の型を指定する時は型に[]をつける。例えば、String[]。 (2014.07.08 追記) beta 3 より [String] と括弧
リリース、障害情報などのサービスのお知らせ
最新の人気エントリーの配信
処理を実行中です
j次のブックマーク
k前のブックマーク
lあとで読む
eコメント一覧を開く
oページを開く