| ページ一覧 | ブログ | twitter |  書式 | 書式(表) |

MyMemoWiki

「Swift」の版間の差分

提供: MyMemoWiki
ナビゲーションに移動 検索に移動
 
(同じ利用者による、間の105版が非表示)
1行目: 1行目:
| [[Xcode]] | [[Mac]] | [[IPhone Xcode]] | [[SwiftUI]] |  [[Swift Sample]] | [[リファクタリング]] |
+
| [[Xcode]] | [[Mac]] | [[IPhone Xcode]] | [[SwiftUI]] |  [[Swift Sample]] | [[Cocoa]] |  [[リファクタリング]] |
 
{{amazon|B081GK7636}}
 
{{amazon|B081GK7636}}
 
==環境==
 
==環境==
34行目: 34行目:
 
=====XCTest=====
 
=====XCTest=====
 
*ユニットテスト用
 
*ユニットテスト用
 +
 +
====[https://developer.apple.com/jp/mac-catalyst/ Mac Catalyst]====
 +
*https://developer.apple.com/jp/mac-catalyst/
 +
Mac Catalystを使って構築したMac向けのネイティブAppは、iPad向けAppとコードを共有でき、Mac専用の機能を追加することもできます。macOS Montereyでは、最新のAPIを使用して、ウインドウのタイトルバーにポップアップボタン、ツールチップ、サブタイトルを表示することができます。また、タッチ操作の代替機能、キーボードで操作する機能、SiriのIntentのサポートを提供できるほか、Commandキーを押しながら「P」を押していつでもプリントできるようにするなど、さまざまな操作への対応が追加されました
 +
 +
====[https://www.swift.org/package-manager/ Swift Package Manager]====
 +
----
 +
*https://www.swift.org/package-manager/
 +
*https://blitzgate.co.jp/blog/2234/
 +
*https://qiita.com/hironytic/items/09a4c16857b409c17d2c
 +
=====[https://swiftpackageindex.com/ Swift Package Index]=====
  
 
===[[Ubuntu]]へインストール===
 
===[[Ubuntu]]へインストール===
75行目: 86行目:
 
----
 
----
 
*オープンソースデバッガ
 
*オープンソースデバッガ
 +
====Interface Builder====
 +
----
 +
=====[https://www.typea.info/blog/index.php/2022/03/08/xamarin_mac_app_storyboard/ storyboard]=====
 +
*[https://www.typea.info/blog/index.php/2022/03/08/xamarin_mac_app_storyboard/ storyboard]
 +
 +
=====[https://www.typea.info/blog/index.php/2022/03/11/nstableview_celbased/ NSTableView CellBased]=====
 +
*[https://www.typea.info/blog/index.php/2022/03/11/nstableview_celbased/ NSTableView CellBased]
 +
 +
=====[https://www.typea.info/blog/index.php/2022/03/23/nstableview_viewbased_macos/ NSTableView ViewBased]=====
 +
*[https://www.typea.info/blog/index.php/2022/03/23/nstableview_viewbased_macos/ NSTableView ViewBased]
 +
 +
=====[https://www.typea.info/blog/index.php/2022/04/03/nsalert_macos/ NSAlert ダイアログ]=====
 +
*[https://www.typea.info/blog/index.php/2022/04/03/nsalert_macos/ NSAlert ダイアログ]
 +
 +
====AutoLayout====
 +
----
 +
=====[https://www.typea.info/blog/index.php/2022/03/26/autolayout_concept/ AutoLayout概要]=====
 +
*[https://www.typea.info/blog/index.php/2022/03/26/autolayout_concept/ AutoLayout概要]
 +
 +
=====[https://www.typea.info/blog/index.php/2022/03/28/interface_builder_autolayout/ AutoLayout操作]=====
 +
*[https://www.typea.info/blog/index.php/2022/03/28/interface_builder_autolayout/ AutoLayout操作]
 +
=====[https://www.typea.info/blog/index.php/2022/05/30/swift_ios_chart/ AutoLayout簡易操作 TinyConstraint]=====
 +
*[https://www.typea.info/blog/index.php/2022/05/30/swift_ios_chart/ AutoLayout簡易操作 TinyConstraint]
 +
 +
====画面遷移====
 +
----
 +
*https://qiita.com/superman9387/items/c006ced215352f28a7b9
 +
=====[https://www.typea.info/blog/index.php/2022/03/13/storyboard_childwindow_macos/ 子画面表示]=====
 +
*[https://www.typea.info/blog/index.php/2022/03/13/storyboard_childwindow_macos/ storyboard を使って子画面を表示]
 +
=====[https://www.typea.info/blog/index.php/2022/03/15/storyboard_segue_connect_screen/ segue(セグエ)で画面遷移]=====
 +
----
 +
*[https://www.typea.info/blog/index.php/2022/03/15/storyboard_segue_connect_screen/ storyboard segue(セグエ)で画面遷移]
 +
*segueを呼び出し画面遷移させる
 +
<pre>
 +
//呼び出し元
 +
performSegue(withIdentifier: "some_segue_id", sender: nil)
 +
</pre>
 +
=====[https://www.typea.info/blog/index.php/2022/06/04/ios_swift_navigation_controller/ Navigation Controller ナビゲーションバー]=====
 +
*[https://www.typea.info/blog/index.php/2022/06/04/ios_swift_navigation_controller/ NavigationController ナビゲーションバー]
 +
=====[https://www.typea.info/blog/index.php/2022/03/12/interfacebuilder_storyboard_tabview_screentransition/ Tab Viewの利用と画面遷移]=====
 +
*[https://www.typea.info/blog/index.php/2022/03/12/interfacebuilder_storyboard_tabview_screentransition/ storyboard を使って Tab Viewの利用と画面遷移]
  
 
==コマンドライン==
 
==コマンドライン==
236行目: 288行目:
 
=====Float=====
 
=====Float=====
 
=====Double=====
 
=====Double=====
 +
 +
====型を調べる====
 +
<pre>
 +
1> print(type(of:"hello"))
 +
String
 +
</pre>
  
 
===変数の定義===
 
===変数の定義===
280行目: 338行目:
 
*リテラルは、"で囲む
 
*リテラルは、"で囲む
 
*\n 改行など\でエスケープ
 
*\n 改行など\でエスケープ
 +
====書式====
 +
<pre>
 +
let frmt = String(format: "%03d", 1)
 +
</pre>
 
====トリミング====
 
====トリミング====
 
----
 
----
355行目: 417行目:
 
====初期化====
 
====初期化====
 
----
 
----
*Optional<T> は T?で宣言できる
+
*Optional<T> は T?で宣言できる : String?
*Optional<T> を T! で宣言すると、使用時に自動的にアンラップされる
+
*Optional<T> を T! で宣言すると、使用時に自動的にアンラップされる : String!
 
<pre>
 
<pre>
 
   5> let i = Optional(1)
 
   5> let i = Optional(1)
453行目: 515行目:
 
*メモリ上のバイト列を管理
 
*メモリ上のバイト列を管理
 
*Foundationのimportが必要
 
*Foundationのimportが必要
 +
====Stringとの相互変換====
 +
<pre>
 +
let data: Data? = str.data(using: .utf8)
 +
let str: String? = String(data: data, encoding: .utf8)
 +
</pre>
  
 
==コレクション==
 
==コレクション==
527行目: 594行目:
 
</pre>
 
</pre>
  
====map関数====
+
====スライス====
*元の配列内の全てのアイテムに対してアクションを行い結果に基づいた配列を作成
 
 
<pre>
 
<pre>
let base = [1,2,3]
+
  8> l
let dbl = base.map {
+
$R5: [Int] = 8 values {
     (val) -> Int in
+
  [0] = 1
 +
  [1] = 2
 +
  [2] = 3
 +
  [3] = 4
 +
  [4] = 5
 +
  [5] = 6
 +
  [6] = 7
 +
  [7] = 8
 +
}
 +
  9> l[2..<5]
 +
$R6: ArraySlice<Int> = 3 values {
 +
  [2] = 3
 +
  [3] = 4
 +
  [4] = 5
 +
</pre>
 +
 
 +
====map関数====
 +
*元の配列内の全てのアイテムに対してアクションを行い結果に基づいた配列を作成
 +
<pre>
 +
let base = [1,2,3]
 +
let dbl = base.map {
 +
     (val) -> Int in
 
     return val * 2
 
     return val * 2
 
}
 
}
605行目: 692行目:
 
</pre>
 
</pre>
  
===辞書 Dictionary<Key, Value>===
+
===辞書 [https://developer.apple.com/documentation/swift/dictionary Dictionary<Key, Value>]===
 
----
 
----
 
*キーと値をもつコレクション
 
*キーと値をもつコレクション
624行目: 711行目:
 
   3>   
 
   3>   
 
</pre>
 
</pre>
*削除
+
====削除====
 
<pre>
 
<pre>
 
  3> sex.removeValue(forKey:"1")  
 
  3> sex.removeValue(forKey:"1")  
635行目: 722行目:
 
   }
 
   }
 
}
 
}
 +
</pre>
 +
====空の辞書====
 +
<pre>
 +
var emptyDict: [String: String] = [:]
 
</pre>
 
</pre>
  
691行目: 782行目:
 
$R0: Bool = true
 
$R0: Bool = true
 
</pre>
 
</pre>
 +
===イテレーター===
 +
[https://developer.apple.com/documentation/swift/iteratorprotocol IteratorProtcol]
 +
<pre>
 +
let animals = ["Antelope", "Butterfly", "Camel", "Dolphin"]
 +
var animalIterator = animals.makeIterator()
 +
while let animal = animalIterator.next() {
 +
    print(animal)
 +
}
 +
</pre>
 +
 
==演算子==
 
==演算子==
 
*C言語の演算子はほぼ使える
 
*C言語の演算子はほぼ使える
696行目: 797行目:
 
*インクリメント(++)、デクリメント(--) は廃止された
 
*インクリメント(++)、デクリメント(--) は廃止された
 
===高度な演算===
 
===高度な演算===
 +
----
 
*Foundation をインポートすることで、sin、logなど利用可能になる
 
*Foundation をインポートすることで、sin、logなど利用可能になる
 
===型の判定===
 
===型の判定===
712行目: 814行目:
 
式 as 型
 
式 as 型
 
</pre>
 
</pre>
====アップキャスト====
+
====アップキャスト(as)====
 +
----
 
*as   
 
*as   
 
*コンパイル可能なアップキャストは常に成功
 
*コンパイル可能なアップキャストは常に成功
722行目: 825行目:
 
b: String = "abc"
 
b: String = "abc"
 
</pre>
 
</pre>
====ダウンキャスト====
+
 
 +
====ダウンキャスト(as? as!)====
 +
----
 
*as?    キャストが正しく行われた場合オプショナル型、不正な場合、nil
 
*as?    キャストが正しく行われた場合オプショナル型、不正な場合、nil
 
*as!  強制キャスト失敗した場合、実行時エラー
 
*as!  強制キャスト失敗した場合、実行時エラー
738行目: 843行目:
 
let j= a as! Int
 
let j= a as! Int
 
     ^
 
     ^
 +
</pre>
 +
 +
====独自演算子の定義====
 +
----
 +
*https://qiita.com/shimesaba/items/cb36c0120a0a9f509da7
 +
<pre>
 +
infix operator *** {
 +
    associativity none
 +
    precedence 130
 +
}
 +
func ***(lhs: Int, rhs: Int) -> Int {
 +
    return lhs * rhs
 +
}
 
</pre>
 
</pre>
  
922行目: 1,040行目:
 
===エラー処理===
 
===エラー処理===
 
----
 
----
====エラーを投げる====
+
====Optional<Wrapped>型によるエラー処理====
 +
----
 +
*値ありを成功、なしを失敗とみなす
 +
*エラーが発生する側は、戻り値の型をOptional<Wrapped>とするだけで良い
 +
*エラー処理側で、オプショナルチェイン、オプショナルバインディングなど簡潔に記述できる
 +
*呼び出し元にエラーの詳細情報を提供できない
 +
 
 +
====Result<Success,Failure>型によるエラー処理====
 +
----
 +
*成功を結果の値、失敗を詳細で表す
 +
<pre>
 +
enum ErrReson : Error {
 +
    case overflow
 +
    case even
 +
}
 +
 
 +
func someProc(_ underTenOddNum: Int) -> Result<String, ErrReson> {
 +
    if underTenOddNum >= 10 {
 +
        return .failure(.overflow)
 +
    }
 +
    if underTenOddNum % 2 == 0 {
 +
        return .failure(.even)
 +
    }
 +
    return .success("Success!! odd number & under ten")
 +
}
 +
 
 +
func checkResult(_ result: Result<String, ErrReson>) {
 +
    switch result {
 +
    case let .success(message):
 +
        print(message)
 +
    case let .failure(err):
 +
        print("\(err)")   
 +
    }
 +
}
 +
 
 +
checkResult(someProc(11))
 +
checkResult(someProc(8))
 +
checkResult(someProc(9))
 +
</pre>
 +
*結果
 +
<pre>
 +
overflow
 +
even
 +
Success!! odd number & under ten
 +
</pre<
 +
 
 +
====エラーを投げる====
 
----
 
----
 
*プロトコル Errorに適合している必要がある
 
*プロトコル Errorに適合している必要がある
929行目: 1,093行目:
 
</pre>
 
</pre>
 
*エラーを投げる関数は直後に、'''throws'''宣言が必要
 
*エラーを投げる関数は直後に、'''throws'''宣言が必要
====エラーハンドリング====
+
 
 +
====do-catchによるエラー処理====
 
----
 
----
 +
*Swift標準のエラー処理機構
 
*エラーを投げる関数を呼び出すには、関数名の前に'''try'''を付与して呼び出す必要がある
 
*エラーを投げる関数を呼び出すには、関数名の前に'''try'''を付与して呼び出す必要がある
 +
*throw分のエラーを表現するには、エラーであることを表す、Errorプロトコルに準拠する必要がある
 +
*Errorプロトコルに準拠させる場合、列挙を使用するのが一般的
 +
 
=====tryを使って呼び出すだけ =====
 
=====tryを使って呼び出すだけ =====
 
さらに上位に伝播
 
さらに上位に伝播
993行目: 1,162行目:
 
OVERFLOW
 
OVERFLOW
 
</pre>
 
</pre>
 +
====throwsキーワード====
 +
----
 +
*関数、イニシャライザ、クロージャの定義にthrowsを追加すると、それらの中で、do-catchを用いずにthrow文によるエラーを発生させることができる
  
 
===guard文===
 
===guard文===
1,314行目: 1,486行目:
 
</pre>
 
</pre>
  
==関数==
+
===連想値===
===定義===
 
 
----
 
----
 +
*列挙型では、どのケースかに加え付加情報として連想値を持つことができる
 +
*連想値として持つ型には制限はない
 
<pre>
 
<pre>
func 関数名(引数名:型 = 初期値, ...) -> 戻り値型{
+
enum SomeError : Error {
     ステートメント
+
     case notfound(searchkey: String)
     return 戻り値
+
     case invalidNum(number: Int)
 
}
 
}
 +
 +
let errReason1 = SomeError.notfound(searchkey: "username")
 +
let errReason2 = SomeError.invalidNum(number: 5)
 +
 +
print("\(errReason1)")
 +
print("\(errReason2)")
 
</pre>
 
</pre>
====引数====
+
*結果
 +
<pre>
 +
notfound(searchkey: "username")
 +
invalidNum(number: 5)
 +
</pre>
 +
 
 +
==関数==
 +
===定義===
 +
----
 +
<pre>
 +
func 関数名(引数名:型 = 初期値, ...) -> 戻り値型{
 +
    ステートメント
 +
    return 戻り値
 +
}
 +
</pre>
 +
====引数====
 
*外部引数名 内部引数名 : 型 と宣言する
 
*外部引数名 内部引数名 : 型 と宣言する
 
*外部引数名を省略したい場合は、 _ を指定する
 
*外部引数名を省略したい場合は、 _ を指定する
1,472行目: 1,666行目:
 
1
 
1
 
</pre>
 
</pre>
===タイププロパティ/静的プロパティ===
+
===クラスプロパティ/静的プロパティ===
*型に関連
+
*class/static を付与
*static を付与
+
*サブクラスで変更される可能性があるかで使い分ける
 +
*継承先で変更される場合、クラスプロパティ
 +
*継承先でも同じ値を返す場合、静的プロパティ
 +
 
 +
*クラスプロパティ
 +
<pre>
 +
class Hoge {
 +
    class var foo: String {
 +
        return "foo"
 +
    }
 +
}
 +
</pre>
 +
 
 
===プロパティオブザーバー===
 
===プロパティオブザーバー===
 
*プロパティの変更をトリガーに手続きを起動
 
*プロパティの変更をトリガーに手続きを起動
1,559行目: 1,765行目:
 
lazy var プロパティ名 : プロパティ型 = 式
 
lazy var プロパティ名 : プロパティ型 = 式
 
</pre>
 
</pre>
 +
 +
===KeyPath===
 +
*https://qiita.com/imchino/items/67a987681bca5ad0408b
 +
*「あるデータ型に定義されたプロパティまでの参照(パス)」です。
 +
*キーパス式は、型のプロパティまたは添え字を参照する。
 +
*キー・値監視などの動的プログラミングタスクでは、キーパス式を使用する。
 +
<pre>
 +
\<#type name#>.<#path#>
 +
</pre>
 +
 
==サブスクリプト==
 
==サブスクリプト==
 
*コレクションへの統一的なアクセス手法
 
*コレクションへの統一的なアクセス手法
1,652行目: 1,868行目:
 
} 
 
} 
 
</pre>
 
</pre>
===同値、比較===
+
===エクステンションによる準拠===
 
----
 
----
====Equatableプロトコル====
+
*エクステンションでプロトコルに準拠する事も可能
*==、!= により同値性を検証する
+
<pre>
====Comparableプロトコル====
+
extension エクステンションを定義する対象の型 : プロトコル名 {
 +
    プロトコルが要求する要素の定義
 +
}
 +
</pre>
 +
 
 +
===連想型===
 +
----
 +
*プロトコルの準拠時にプロパティ、引数、戻り値の型を指定できる
 +
*連想型の実際の型は準拠する側で指定する
 +
*1つの型に依存しないより抽象的なプロトコルを定義できる
 +
<pre>
 +
protocol プロトコル名 {
 +
    associated type 連装型名
 +
   
 +
    var プロパティ名 : 連想型名
 +
    func メソッド名(引数名: 連想型名)
 +
    func メソッド名() -> 連想型名
 +
}
 +
</pre>
 +
*例
 +
<pre>
 +
protocol Foo {
 +
    associatedtype Bar
 +
 
 +
    func info(value: Bar)
 +
}
 +
struct Hoge : Foo {
 +
    func info(value: Int) {
 +
        print("\(value)")
 +
    }
 +
}
 +
 
 +
let hoge = Hoge()
 +
hoge.info(value:10)
 +
</pre>
 +
 
 +
===同値、比較===
 +
----
 +
====Equatableプロトコル====
 +
*==、!= により同値性を検証する
 +
====Comparableプロトコル====
 
*値の大小比較を行う
 
*値の大小比較を行う
  
1,714行目: 1,970行目:
 
   8> r.reduce("", {result, element in result + "-" + String(element) })
 
   8> r.reduce("", {result, element in result + "-" + String(element) })
 
$R3: String = "-1-2-3"
 
$R3: String = "-1-2-3"
 +
</pre>
 +
=====カウントを取る =====
 +
<pre>
 +
let count = sequence.reduce(0) { acc, row in acc + 1 }
 
</pre>
 
</pre>
  
1,722行目: 1,982行目:
 
*firstプロパティ
 
*firstプロパティ
 
*lastプロパティ
 
*lastプロパティ
 +
 +
====変換====
 +
=====Array -> Set =====
 +
<pre>
 +
  1> let ary: [Int] = [3,2,3,2]
 +
ary: [Int] = 4 values {
 +
  [0] = 3
 +
  [1] = 2
 +
  [2] = 3
 +
  [3] = 2
 +
}
 +
  2> print(Set(ary))
 +
[3, 2]
 +
</pre>
 +
===== Set -> Array =====
 +
<pre>
 +
  6> let set: Set<Int> = [3,4,5,6]
 +
set: Set<Int> = 4 values {
 +
  [0] = 4
 +
  [1] = 6
 +
  [2] = 3
 +
  [3] = 5
 +
}
 +
  7> print(Array(set))
 +
[4, 6, 3, 5]
 +
</pre>
  
 
==クロージャ==
 
==クロージャ==
 
*基本
 
*基本
 +
*https://qiita.com/atsuastu_jr/items/e3a6990127d96c39a167
 
<pre>
 
<pre>
 
{ 引数 in 戻り値を返す式 }
 
{ 引数 in 戻り値を返す式 }
1,802行目: 2,089行目:
 
<pre>
 
<pre>
 
hello,swift!
 
hello,swift!
 +
</pre>
 +
 +
===コールバックにクロージャを利用する例===
 +
*非同期処理の結果をクロージャを用いて呼び出し元に返す
 +
<pre>
 +
static func accessRequest(completion:((String?) -> Void)?) {
 +
        let allTypes = Set([
 +
            HKQuantityType.quantityType(forIdentifier: .bodyMass)!,
 +
            /* HKQuantityType.quantityType(forIdentifier: .stepCount)!,*/
 +
        ])
 +
 +
        self.getHealthStore()?.requestAuthorization(toShare: allTypes, read: allTypes) { (success, error) in
 +
            if success {
 +
                completion?("アクセス許可: \(String(describing: success))")
 +
            } else {
 +
                completion?("アクセス不許可: \(String(describing: error?.localizedDescription))")
 +
            }
 +
        }
 +
    }
 
</pre>
 
</pre>
  
1,827行目: 2,133行目:
 
</pre>
 
</pre>
  
==並行処理==
+
======
*https://developer.apple.com/jp/news/?id=2o3euotz
+
* Message.user.name の重複を取り除き、","で連結して返す
===[https://ticklecode.com/swfitgdp/ ディスパッチキュー]===
 
----
 
*[https://ticklecode.com/swfitgdp/ Swiftでの非同期処理GDP|ディスパッチキューの解説|DispatchQueue.globalとmain]
 
*[[イベントディスパッチスレッド]]
 
 
<pre>
 
<pre>
        Button(action: {
+
    func joinAndUniqueUserNames(messages: [Message]) -> String {
            let rootDir = EncConverterService.chooseDir()
+
        var names:Set<String> = []
            let queue = DispatchQueue.global(qos: .userInitiated)
+
 
            queue.async {
+
      // クロージャ例
                EncConverterService.loadFile(directoryPath: rootDir, filepaths: self.filePaths)
+
        messages.forEach({message in names.insert(message.user.name)})
            }
+
 
         }) {
+
      // トレイリングクロージャ例       
             Text("Choose dir")
+
         messages.forEach { message in
 +
             names.insert(message.user.name)
 
         }
 
         }
 +
       
 +
        return names.joined(separator: ",")
 +
    }
 
</pre>
 
</pre>
  
==[[正規表現]]==
+
===属性===
*https://www.hackingwithswift.com/example-code/strings/nsregularexpression-how-to-match-regular-expressions-in-strings
+
----
*https://www.2nd-walker.com/2020/04/21/swift-how-to-use-nsregularexpression/
+
Swiftにおけるクロージャには、いくつかの属性を指定できます
 +
====@escapeing属性====
 +
----
 +
https://qiita.com/imchino/items/48564b0c23a64f539060
 +
*クロージャは、関数に引数として渡されたとき「関数をエスケープ」できます。
 +
*エスケープしたクロージャは、関数に戻った後でも呼び出し可能です。
 +
*エスケープクロージャのよくある例として、非同期処理をする完了ハンドラとしてのクロージャがあります。
 +
*関数の実行が完了した後にクロージャを呼び出すためには、エスケープしておく必要があります。
 
<pre>
 
<pre>
do {
+
    func getCurrentTimelineEntry(for complication: CLKComplication, withHandler handler: @escaping (CLKComplicationTimelineEntry?) -> Void) {
let pattern = #"[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}"#
+
        // Call the handler with the current timeline entry
let regex = try NSRegularExpression(pattern: pattern, options:[])
+
       
+
       
for subinput in input.split(separator: "\r\n") {
+
        handler(nil)
let line = String(subinput)
+
    }
let maches = regex.matches(in: line, options: [], range: _NSRange(0..<line.count))
 
 
print(line)
 
 
for mach in maches {
 
for i in 0 ..< mach.numberOfRanges {
 
let start = line.index(line.startIndex, offsetBy: mach.range(at: i).location)
 
let end = line.index(start, offsetBy: mach.range(at: i).length)
 
let text = String(line[start..<end])
 
print(text)
 
}
 
}
 
}
 
} catch {
 
print("RegEx fail.")
 
}
 
 
</pre>
 
</pre>
  
===IsMatch===
+
==ジェネリクス==
----
 
*https://www.hackingwithswift.com/articles/108/how-to-use-regular-expressions-in-swift
 
  
 
<pre>
 
<pre>
do {
+
func isEquals<T: Equatable> (_ x: T, _ y: T) -> Bool {
    let regex = try NSRegularExpression(pattern: MATCH_PATTERN, options:[])
+
     return x == y
     return regex.firstMatch(in: stringValue, options: [], range: NSRange(location: 0, length: stringValue.utf16.count)) != nil
 
} catch {
 
    print("\(error)");
 
 
}
 
}
 +
print("\(isEquals("a", "b"))")
 +
print("\(isEquals(1.0, 1.0))")
 
</pre>
 
</pre>
 +
===定義方法===
 +
----
  
==[[SwiftUI]]==
+
<pre>
*[[SwiftUI]]
+
func 関数名<型引数> (引数名 : 型引数) -> 戻り値型 {
===UIKitとのインターフェース===
+
    関数呼び出し実行文
*https://developer.apple.com/tutorials/swiftui/interfacing-with-uikit
+
}
SwiftUIは既存のApplieプラットフォームUIフレームワークとシームレスに動作する。
+
</pre>
 +
*
 +
<pre>
 +
func genericSample<T, U> (x: T, y: U) -> U {
 +
    let a : T = x
 +
    let b = y
 +
    print("\(a),\(b)")
 +
    return y
 +
}
 +
print(genericSample(x:1.2, y:"abc"))
 +
</pre>
  
==[[Mac]]OS==
+
===some,any===
*https://developer.apple.com/tutorials/swiftui/creating-a-macos-app
+
----
 +
https://jimaru.blog/programming/swift/swift-some-any/
  
==Playground==
+
==並行処理==
*[https://www.typea.info/blog/index.php/2020/12/06/xcode_macos_proguramming/ Playground]
+
*https://developer.apple.com/jp/news/?id=2o3euotz
===値の変化をグラフで見る===
+
*コアライブラリのFoundationでThreadクラスを提供
[[File:Playground_view_result.png|600px]]
 
  
===チュートリアル===
+
===[https://ticklecode.com/swfitgdp/ ディスパッチキュー]===
*https://developer.apple.com/tutorials/swiftui/
+
----
*[https://www.typea.info/blog/index.php/2020/12/09/swiftui_tutorial_youtube_memo/ Canvas,TextView]
+
*UIスレッド
*[https://www.typea.info/blog/index.php/2020/12/19/swiftui_tutorial_custom_image_view/ Custom Image View]
+
*[https://ticklecode.com/swfitgdp/ Swiftでの非同期処理GDP|ディスパッチキューの解説|DispatchQueue.globalとmain]
 +
*[[イベントディスパッチスレッド]]
 +
<pre>
 +
        Button(action: {
 +
            let rootDir = EncConverterService.chooseDir()
 +
            let queue = DispatchQueue.global(qos: .userInitiated)
 +
            queue.async {
 +
                EncConverterService.loadFile(directoryPath: rootDir, filepaths: self.filePaths)
 +
            }
 +
        }) {
 +
            Text("Choose dir") 
 +
        }
 +
</pre>
 +
====Grand Central Dispatch====
 +
----
 +
*GCDのキューはディスパッチキュー、以下の2種
 +
**直列ディスパッチキュー(serial dispatch queue)
 +
**並列ディスパッチキュー(concurrent dispatch queue)
 +
*利用するには既存のディスパッチキューを取得するか新規に生成
 +
*GCDは1つのメインキュート複数のグローバルキューを提供
 +
*メインキューはメインスレッドでタスクを実行する直列ディスパッチキュー
 +
*iOS/macOSでは、UIの更新は常にメインキューから行われる
 +
*取得したディスパッチキューにタスクを追加するには、DispatchQueue.async(execute:) メソッドを用いる
 +
*
 +
<pre>
 +
import Foundation
 +
import Dispatch
  
==Objective-Cの動作モデルとセレクタ==
+
let mq = DispatchQueue.main  // メインディスパッチキューを取得
*Apple製品はObjective-Cの動作モデルに基づいている
+
let gq = DispatchQueue.global(qos: .userInitiated) // グローバルキューを取得
*オブジェクトがプログラムを構成しオブジェクトが相互にメッセージを送信し合うことで動作する
+
let cq = DispatchQueue(
*このモデルではメッセージの送り先について詳しく知る必要がないため、組み合わせの自由度が高い
+
    label: "info.typea.hoge.queue",
*Objective-Cでは、メッセージ送信の際、'''セレクタ'''と呼ばれるデータを使ってメソッドを指定し動的な起動を可能としている
+
    qos: .default,
*SwiftではSelector型が提供されており、Selector型でメソッドを呼び出す仕組みは、Objective-CのNSObjectで定義されている
+
    attributes: [.concurrent]) // info.typea.hoge.queue という名前の並列ディスパッチキューを生成
*Selector型は構造体だが、'''#selector'''という特殊なイニシャライザを使用する
+
</pre>
 
+
====Operation,OperationQueue====
==Swift Package Manager==
+
----
*[https://swift.org/package-manager/ Swift Package Manager]
+
*Operationは実行タスクと情報をカプセル化したものOperationQueueがキューの役割
  
==Tips==
+
====Mainスレッドで実行====
===print改行させない===
 
 
----
 
----
 +
*UIスレッド
 
<pre>
 
<pre>
print(value, terminator: "")
+
            DispatchQueue.main.async {
 +
                self.hogeLabel.text = result
 +
            }
 +
</pre>
 +
 
 +
==ユニットテスト==
 +
===非同期処理をテストする===
 +
<pre>
 +
func testAccessRequest() {
 +
        var result : String?
 +
        let expectation = expectation(description: "非同期待ち")
 +
       
 +
        // 非同期処理の呼び出しとコールバック
 +
        HealthKitHelper.accessRequest() { accessResult in
 +
            result = accessResult
 +
            expectation.fulfill()  // 非同期待ち解除
 +
        }
 +
       
 +
        waitForExpectations(timeout: 4) // 指定時間応答がなければ失敗
 +
 
 +
        print("ACCESS REQUEST : \(String(describing: result))")
 +
        assert(result != nil)
 +
    }
 
</pre>
 
</pre>
 +
 +
==[[正規表現]]==
 +
*https://www.hackingwithswift.com/example-code/strings/nsregularexpression-how-to-match-regular-expressions-in-strings
 +
*https://www.2nd-walker.com/2020/04/21/swift-how-to-use-nsregularexpression/
 +
<pre>
 +
do {
 +
let pattern = #"[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}"#
 +
let regex = try NSRegularExpression(pattern: pattern, options:[])
 +
 +
for subinput in input.split(separator: "\r\n") {
 +
let line = String(subinput)
 +
let maches = regex.matches(in: line, options: [], range: _NSRange(0..<line.count))
 +
 +
print(line)
 +
 +
for mach in maches {
 +
for i in 0 ..< mach.numberOfRanges {
 +
let start = line.index(line.startIndex, offsetBy: mach.range(at: i).location)
 +
let end = line.index(start, offsetBy: mach.range(at: i).length)
 +
let text = String(line[start..<end])
 +
print(text)
 +
}
 +
}
 +
}
 +
} catch {
 +
print("RegEx fail.")
 +
}
 +
</pre>
 +
 +
===IsMatch===
 +
----
 +
*https://www.hackingwithswift.com/articles/108/how-to-use-regular-expressions-in-swift
 +
 +
<pre>
 +
do {
 +
    let regex = try NSRegularExpression(pattern: MATCH_PATTERN, options:[])
 +
    return regex.firstMatch(in: stringValue, options: [], range: NSRange(location: 0, length: stringValue.utf16.count)) != nil
 +
} catch {
 +
    print("\(error)");
 +
}
 +
</pre>
 +
 +
==[[SwiftUI]]==
 +
*[[SwiftUI]]
 +
===UIKitとのインターフェース===
 +
*https://developer.apple.com/tutorials/swiftui/interfacing-with-uikit
 +
SwiftUIは既存のApplieプラットフォームUIフレームワークとシームレスに動作する。
 +
 +
==[[Mac]]OS==
 +
*https://developer.apple.com/tutorials/swiftui/creating-a-macos-app
 +
 +
==Playground==
 +
*[https://www.typea.info/blog/index.php/2020/12/06/xcode_macos_proguramming/ Playground]
 +
===値の変化をグラフで見る===
 +
[[File:Playground_view_result.png|600px]]
 +
 +
===チュートリアル===
 +
*https://developer.apple.com/tutorials/swiftui/
 +
*[https://www.typea.info/blog/index.php/2020/12/09/swiftui_tutorial_youtube_memo/ Canvas,TextView]
 +
*[https://www.typea.info/blog/index.php/2020/12/19/swiftui_tutorial_custom_image_view/ Custom Image View]
 +
 +
==Objective-Cの動作モデルとセレクタ==
 +
*Apple製品はObjective-Cの動作モデルに基づいている
 +
*オブジェクトがプログラムを構成しオブジェクトが相互にメッセージを送信し合うことで動作する
 +
*このモデルではメッセージの送り先について詳しく知る必要がないため、組み合わせの自由度が高い
 +
*Objective-Cでは、メッセージ送信の際、'''セレクタ'''と呼ばれるデータを使ってメソッドを指定し動的な起動を可能としている
 +
*SwiftではSelector型が提供されており、Selector型でメソッドを呼び出す仕組みは、Objective-CのNSObjectで定義されている
 +
*Selector型は構造体だが、'''#selector'''という特殊なイニシャライザを使用する
 +
 +
==Swift Package Manager==
 +
*[https://swift.org/package-manager/ Swift Package Manager]
 +
 +
==Storyboard==
 +
===[https://www.typea.info/blog/index.php/2022/03/08/xamarin_mac_app_storyboard/ Storyboard]===
 +
===[https://www.typea.info/blog/index.php/2022/03/11/nstableview_celbased/ Table View]===
 +
===[https://www.typea.info/blog/index.php/2022/03/12/interfacebuilder_storyboard_tabview_screentransition/ Tab View画面遷移]===
 +
 +
==Tips==
 +
====watchOS====
 +
=====[https://www.typea.info/blog/index.php/2022/06/04/ios_watchos_dev_env/ watchOS を iOS プロジェクトに統合]=====
 +
 +
=====[https://www.typea.info/blog/index.php/2022/06/07/watchos_app_prestudy/ watchOS 開発概要]=====
 +
----
 +
[https://developer.apple.com/documentation/watchos-apps Developer Document]
 +
 +
=====[https://www.typea.info/blog/index.php/2022/06/08/swift_watchos_simple_app_connect_healthkit/ HealthKit利用 watchOS アプリ作成]=====
 +
 +
=====[https://www.typea.info/blog/index.php/2022/06/11/swift_watchos_complication_watchface_run_app/ コンプリケーションを文字盤に追加する]=====
 +
 +
=====[https://www.typea.info/blog/index.php/2022/06/14/swift_watchos_watchface_complication/ 文字盤に画像や情報を表示する]=====
 +
 +
=====[https://developer.apple.com/documentation/watchos-apps/setting-up-tests-for-your-watchos-app Unit Tests]=====
 +
 +
=====[https://qiita.com/am10/items/e58dfe28f024b3dc39ad WatchKitオブジェクト]=====
 +
 +
====HealthKit====
 +
=====[https://www.typea.info/blog/index.php/2022/05/31/ios_swift_healthkit/ iOS SwiftにHealthKitを組み込む]=====
 +
=====[https://www.typea.info/blog/index.php/2022/06/04/swift_ios_healthkit_healthdata/ ヘルスデータを読む]=====
 +
=====[https://www.typea.info/blog/index.php/2022/06/09/swift_watchos_save_healthdata/ ヘルスデータを書き込む]=====
 +
 +
====チャート====
 +
[https://www.typea.info/blog/index.php/2022/05/30/swift_ios_chart/ iOS Swiftにチャートを組み込む]
 +
====[[Sqlite]]====
 +
[https://www.typea.info/blog/index.php/2022/05/19/ios_swift_sqlite_via_typesafe_wapper/ iOS SwiftでSQLite使用する]
 +
 +
====ランダム====
 +
<pre>
 +
  2> Int.random(in:1 ... 9999)
 +
$R1: Int = 8549
 +
</pre>
 +
====Sum/Average====
 +
<pre>
 +
  1> let l = [1,2,3,4,5]
 +
l: [Int] = 5 values {
 +
  [0] = 1
 +
  [1] = 2
 +
  [2] = 3
 +
  [3] = 4
 +
  [4] = 5
 +
}
 +
  2> l.reduce(0,+)
 +
$R0: Int = 15
 +
  3> l.reduce(0,+) / l.count
 +
$R1: Int = 3
 +
</pre>
 +
 +
====[[デザイン]]====
 +
=====[https://photoshopvip.net/102903 配色]=====
 +
*http://photoshopvip.net/95427
 +
*https://colorhunt.co/palette/196224
 +
 +
=====アイコン=====
 +
*https://www.flaticon.com
 +
 +
====書式====
 +
=====カンマつき数値=====
 +
<pre>
 +
  2> import Foundation
 +
  3> let nfmt = NumberFormatter()
 +
  4> nfmt.numberStyle = .decimal
 +
  5> print(nfmt.string(from: NSNumber(value:12345)))
 +
Optional("12,345")
 +
</pre>
 +
 +
=====小数点桁揃え=====
 +
<pre>
 +
print(String(format:"%.1f", (5.0 / 3.0)))
 +
1.7
 +
</pre>
 +
 +
=====桁揃え=====
 +
<pre>
 +
print(String(format:"%05d", 99))
 +
00099
 +
</pre>
 +
 +
===日付===
 +
====書式====
 +
<pre>
 +
        let formatter = DateFormatter()
 +
        formatter.dateFormat = "yyyy-MM-dd"
 +
        return formatter.string(from: day)
 +
</pre>
 +
 +
====曜日判定====
 +
<pre>
 +
        let calendar = Calendar(identifier: .gregorian)
 +
        return calendar.component(.weekday, from: date)
 +
</pre>
 +
====日付計算====
 +
<pre>
 +
  3> let today = Date()
 +
today: Foundation.Date = 2022-06-18 02:38:05 UTC
 +
  4> let tommorow = Calendar.current.date(byAdding: .day, value:1, to: today)
 +
tommorow: Foundation.Date? = 2022-06-19 02:38:05 UTC
 +
</pre>
 +
*NSDateに変換
 +
<pre>
 +
2> let d = Calendar.current.date(byAdding: .month, value:1, to: Date()) as! NSDate
 +
d: NSDate = 2022-07-03 15:38:43 UTC
 +
</pre>
 +
 +
===[[JSON]]===
 +
[[Swift Sample]]
 +
 +
===print改行させない===
 +
----
 +
<pre>
 +
print(value, terminator: "")
 +
</pre>
 +
 
===ファイルを読む===
 
===ファイルを読む===
 
----
 
----

2024年9月12日 (木) 10:53時点における最新版

| Xcode | Mac | IPhone Xcode | SwiftUI | Swift Sample | Cocoa | リファクタリング |

目次

環境

Document


Swift言語ガイド

Swift言語ガイド

Hacking With Swift

Hacking With Swift

ライブラリ


標準ライブラリ


  • 言語の一部として基本機能を提供
  • インポートせずに常に利用可能

コアライブラリ


  • モジュールとしてインポートすることで利用可能となる
Foundation
  • 多くのアプリケーションに必要になる機能を提供
  • URL Loading
libdispatch
  • マルチコアハードウェア並列処理を抽象化
XCTest
  • ユニットテスト用

Mac Catalyst

Mac Catalystを使って構築したMac向けのネイティブAppは、iPad向けAppとコードを共有でき、Mac専用の機能を追加することもできます。macOS Montereyでは、最新のAPIを使用して、ウインドウのタイトルバーにポップアップボタン、ツールチップ、サブタイトルを表示することができます。また、タッチ操作の代替機能、キーボードで操作する機能、SiriのIntentのサポートを提供できるほか、Commandキーを押しながら「P」を押していつでもプリントできるようにするなど、さまざまな操作への対応が追加されました

Swift Package Manager


Swift Package Index

Ubuntuへインストール


  • ツールチェイン依存ライブラリのインストール
  1. $ sudo apt-get update
  2. $ sudo apt-get install clang libicu-dev
  1. $ wget https://download.swift.org/swift-5.5.1-release/ubuntu2004/swift-5.5.1-RELEASE/swift-5.5.1-RELEASE-ubuntu20.04.tar.gz
  2. $ tar xzf swift-5.5.1-RELEASE-ubuntu20.04.tar.gz
  • パスを通す(解凍されたディレクトリのusr/bin)
  • ~/.bashrc に追記
  1. export PATH=/home/ubuntu/opt/swift-5.5.1-RELEASE-ubuntu20.04/usr/bin:"${PATH}"

Swift ubuntu.png

Xcode

ツールチェイン


  • ツールチェインとは、コンパイラやデバッガなど開発に必要なツールを一通りまとめたもの
  • SwiftのツールチェインはXcode に含まれる

開発ツール


Swift Package Manager


  • パッケージとはソースコードとマニフェストをまとめたもの
  • マニフェストファイルは、依存関係などをまとめたもの
  • Swift Package Manager はこれらをもとにビルドする
  • マニフェストに記述された外部パッケージはビルド時にダウンロードされる

LLDB


  • オープンソースデバッガ

Interface Builder


storyboard
NSTableView CellBased
NSTableView ViewBased
NSAlert ダイアログ

AutoLayout


AutoLayout概要
AutoLayout操作
AutoLayout簡易操作 TinyConstraint

画面遷移


子画面表示
segue(セグエ)で画面遷移

  1. //呼び出し元
  2. performSegue(withIdentifier: "some_segue_id", sender: nil)
Navigation Controller ナビゲーションバー
Tab Viewの利用と画面遷移

コマンドライン

  • swiftと入力
  • 終了には、:q もしくは、ctrl+D
  • パスが通ったところに配置されていれば実行できる
  1. $ swift
  2. Welcome to Apple Swift version 5.3.1 (swiftlang-1200.0.41 clang-1200.0.32.8).
  3. Type :help for assistance.
  4. 1> print("test")
  5. test

コマンドラインツールを実行

  • アクティブ開発ディレクトリのコマンドラインツールを見つけて実行する
  • アクティブ開発ディレクトリは、xcode-select で指定する
  • アクティブ開発ディレクトリを表示
  1. $ xcode-select -p
  2. /Applications/Xcode.app/Contents/Developer
  • 以下のようにswiftコマンドを実行もできる
  1. $ xcrun swift

プロジェクトの作成と実行

  • プロジェクトの作成
  1. $ mkdir swift_demo
  2. $ cd swift_demo
  3. $ swift package init --type executable
  • ビルドして実行
  1. $ swift run
  2. [0/0] Build complete!
  3. Hello, world!
  • .build/debug に実行ファイルが出力される
  1. $ swift build
  2. [0/0] Build complete!
  3. $ .build/debug/swift_demo
  4. Hello, world!

SDK

  • SDKを指定してswiftを起動するときに、指定できるSDK一覧を表示
  1. $ xcodebuild -showsdks
  2. iOS SDKs:
  3. iOS 14.2 -sdk iphoneos14.2
  4.  
  5. iOS Simulator SDKs:
  6. Simulator - iOS 14.2 -sdk iphonesimulator14.2
  7.  
  8. macOS SDKs:
  9. DriverKit 20.0 -sdk driverkit.macosx20.0
  10. macOS 11.0 -sdk macosx11.0
  11. :

SDKを指定して、swiftを起動

  1. $ xcrun -sdk macosx11.0 swift

環境変数にSDKパスを指定

  • 以下でSDKのパスを取得し、SDKROOT環境変数に設定し、swiftを起動
  1. $ xcrun -sdk macosx11.0 --show-sdk-path
  2. /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX11.0.sdk

コメント

クイックヘルプ


  1. /// arp -a の結果をHostListに格納する
  2. ///
  3. /// - Parameters:
  4. /// - hosts: 結果を格納する Host のリストを渡す
  5. /// - Throws:
  6. /// - Returns:

Swift quick help comment.png

アクセス制御

アクセス制御 意味
open モジュール情報をインポートすればどんなソースファイルからでもアクセス可能、サブクラスの作成や上書き定義も自由にできる
public モジュール情報をインポートすればどんなソースファイルからでもアクセス可能、サブクラスの作成や上書き定義はそのクラスを定義したモジュール内でのみ可能
internal 定義を含むソースファイルと同じモジュール内からはどのソースファイルからもアクセス可能。アクセス制御規定値
fileprivate 定義されたソースファイルの中だけで使用できる
private 定義単位の内部のみで利用できる

データ型

  • 型の実体はインスタンス
  • 値型と参照型

基本データ型

Any

  • 全ての型が暗黙的に準拠しているプロトコル
  • どのような型の値も代入できるため、値を代入する型が決まっていない場合に使用できる
  1. 1> var a:Any = 123
  2. a: Int = 123
  3. 2> a = "123"
  4. 3> a
  5. $R0: String = "123"

Bool

  • true/false

Character

  • Unicodeの1文字
  • リテラルは、Stringと同様なので、アノテーションするなどが必要
  1. 1> let s = "s"
  2. s: String = "s"
  3. 2> let c: Character = "c"
  4. c: Character = "c"

String

  • 値型
  • == 比較、+ 結合
  • 高度な操作は、Foundationで提供される
  1. 1> let r = "abc".compare("def") == ComparisonResult.orderedAscending
  2. r: Bool = true

数値型

  • 変換にはイニシャライザを使用する
  1. let d = 1.5
  2. let i = Int64(d)
  • 演算は両辺の型が一致しないとエラーとなる
Int
UInt
Float
Double

型を調べる

  1. 1> print(type(of:"hello"))
  2. String

変数の定義


  • 変数

var 変数名 : 型 = 式

  1. var age : Int = 49
  • 定数(単一代入)

let 変数名 : 型 = 式

  1. let age = 49

型変換


  • 暗黙の型変換は行われない
  • Double() や Int() などのイニシャライザを利用する
  1. 1> var i:Int = 5
  2. 2> var d:Double = 0;
  3. 3> d = i
  4. error: repl.swift:3:5: error: cannot assign value of type 'Int' to type 'Double'
  5. 3> d = Double(i)
  6. 4> d
  7. $R0: Double = 5

型を確認する


  1. var greeting = "Hello, playground"
  2. type(of: greeting)

文字


文字列


  • 連結は +
  • リテラルは、"で囲む
  • \n 改行など\でエスケープ

書式

  1. let frmt = String(format: "%03d", 1)

トリミング


  1. let trimmed = " abc ".trimmingCharacters(in: .whitespaces)

文字列埋め込み


  • \(式) で展開される
  1. > var i:Int = 5
  2. i: Int = 5
  3. > let s: String = "Number \(i * 3)"
  4. s: String = "Number 15"

Raw文字列


  • 文字列の前に1つ以上の#記号を配置
  1. let pattern = #"[0-9]{0,3}"#

Substring


  • Stringをスライスした場合など、Substringのインスタンスが結果として返される

ヒアドキュメント


  • 三重引用符で開始位置を揃える
  1. let magicpacket = service.createData(mac:"64:00:6a:20:EC:60")
  2. print("""
  3. MAGIC PACKET ======== FROM ============
  4. \(magicpacket)
  5. MAGIC PACKET ======== TO ============
  6. """)

エンコーディング

nil


  • 扱う値が存在しないことを表すため、nil が用意されている
  • Swiftでは基本的に、変数や定数にnilを許容しない
  • nil 値を持つことがある場合、Int? 型などで表す -> オプショナル型

オプショナル型 Optional<T>


  • パラメータ付型指定では、Optional<Int>
  • オプショナル型からデータを取り出 -> アンラップ
  • オプショナルをprintする場合、明示的にString(describing:)を使用する
  1. var opi:Int?
  2. print("\(String(describing:opi))")
  3. opi = 1
  4. var i:Int = opi!
  5. print("\(i)")
  6.  
  • 実行
  1. nil
  2. 1
  • Optional<T>.none と nilが対応づけられている
  1. 3> let n:String? = nil
  2. n: String? = nil
  3. 4> let n = Optional<String>.none
  4. n: String? = nil

初期化


  • Optional<T> は T?で宣言できる : String?
  • Optional<T> を T! で宣言すると、使用時に自動的にアンラップされる : String!
  1. 5> let i = Optional(1)
  2. i: Int? = 1
  3. 6> let j = Optional<Int>.some(2)
  4. j: Int? = 2
  5. 7> let k:Int? = 3
  6. k: Int? = 3
  • Int?
  1. 1 > let i:Int? = 1
  2. 2 > let j = i + 1
  3. error: repl.swift:33:9: error: value of optional type 'Int?' must be unwrapped to a value of type 'Int'
  4. let j = i + 1
  • Int!
  1. 1 > var i: Int! = 1
  2. 2 > let j = i + 1
  3. j: Int = 2

アンラップ


  • オプショナルバインディング
  • ??演算子
  • 強制アンラップ
オプショナルバインディング(if-let文)
  • オプショナルがnilでない場合、すぐに処理で使用したい場合
  • if や while の条件部にのみ記述できる
  1. if let 定数名 = Optional<T>の値 {
  2.  
  3. }
  1. let optNum: Int? = hoge()
  2. if let num = optNum {
  3. // nil でない場合
  4. } else {
  5. // nil の場合
  6. }
  • 複数同時にも使用できる
  1. let optNum1: Int? = hoge()
  2. let optNum2: Int? = hoge()
  3.  
  4. if let num1 = optNum1, let num2 = optNum2 {
  5. // nil でない場合
  6. } else {
  7. // nil の場合
  8. }
??演算子
  • Optional<T>の値 ?? none の場合
  1. 8> let i:Int? = 1
  2. i: Int? = 1
  3. 9> let j =?? 2
  4. j: Int = 1
強制アンラップ
  • Optional<T>の値!
  • 強制的に取り出す。値がなければエラー
  1. 10> let i = Optional<Int>.none
  2. i: Int? = nil
  3. 11> i!
  4. __lldb_expr_24/repl.swift:11: Fatal error: Unexpectedly found nil while unwrapping an Optional value

オプショナルチェイン

  • Optional<T>の値?.メソッド  でアンラップせずにプロパティやメソッドにアクセスできる。値が存在しない場合、nil

map(_:),flatMap(_:) アンラップを行わずに値の変換を行う

  • クロージャを引数に渡す
  • flatMap はクロージャの戻り値もOptional
  1. 1> let i: Int? = 1
  2. i: Int? = 1
  3. 2> i.map({ v in v + 1})
  4. $R4: Int? = 2
  5. 1})
  6. $R5: Int? = 1
  7. 3> let j: Int? = nil
  8. j: Int? = nil
  9. 4> j.map({ v in v + 1})
  10. $R6: Int? = nil

Data型

  • メモリ上のバイト列を管理
  • Foundationのimportが必要

Stringとの相互変換

  1. let data: Data? = str.data(using: .utf8)
  2. let str: String? = String(data: data, encoding: .utf8)

コレクション

  • 以下にはコレクションとしての共通機能がある
    • 配列 Array<Element>
    • 辞書 Dictionary<Key,Value>
    • 範囲 Range<Bound>
    • 文字列 String
  • 操作できるインターフェースについては、プロトコル参照

配列 Array<T>


  • T型の配列は、Array<T> もしくは、[T]
  • 順序を持ったコレクション
  • 型省略初期化
  1. > var ia = [1,2,3,4,5]
  • 型宣言初期化
  1. > var ia2: [Int] = [1,2,3,4,5]
  • 要素0で初期化
  1. > var sa = [String]()
  2. sa: [String] = 0 values
  • もしくは
  1. > var sa2: [String] = []
  2. sa2: [String] = 0 values

参照と追加と削除

  1. 1> var ia = [1,2,3]
  2. ia: [Int] = 3 values {
  3. [0] = 1
  4. [1] = 2
  5. [2] = 3
  6. }
  • 追加
  1. 2> ia.append(4)
  2. 3> ia
  3. $R0: [Int] = 4 values {
  4. [0] = 1
  5. [1] = 2
  6. [2] = 3
  7. [3] = 4
  8. }
  • 削除
  1. 4> ia.remove(at:2)
  2. $R1: Int = 3
  3. 5> ia
  4. $R2: [Int] = 3 values {
  5. [0] = 1
  6. [1] = 2
  7. [2] = 4
  8. }
  • 追加
  1. 6> ia.insert(-1, at:2)
  2. 7> ia
  3. $R3: [Int] = 4 values {
  4. [0] = 1
  5. [1] = 2
  6. [2] = -1
  7. [3] = 4
  8. }

スライス

  1. 8> l
  2. $R5: [Int] = 8 values {
  3. [0] = 1
  4. [1] = 2
  5. [2] = 3
  6. [3] = 4
  7. [4] = 5
  8. [5] = 6
  9. [6] = 7
  10. [7] = 8
  11. }
  12. 9> l[2..<5]
  13. $R6: ArraySlice<Int> = 3 values {
  14. [2] = 3
  15. [3] = 4
  16. [4] = 5

map関数

  • 元の配列内の全てのアイテムに対してアクションを行い結果に基づいた配列を作成
  1. let base = [1,2,3]
  2. let dbl = base.map {
  3. (val) -> Int in
  4. return val * 2
  5. }
  6. print(dbl)
  7. 結果:[2, 4, 6]
  • 省略形
  1. let base = [1,2,3]
  2. let dbl = base.map({ $0 * 2 })
  3. print(dbl)
  4. 結果:[2, 4, 6]

filter関数

  • 元配列から条件に一致する配列を生成
  1. let nums = [0,1,2,3,4,5,6]
  2. print(nums.filter({ (num) -> Bool in
  3. return num % 2 == 0
  4. }))
  5. 結果:[0, 2, 4, 6]
  • 省略形
  1. let nums = [0,1,2,3,4,5,6]
  2. print(nums.filter({ $0 % 2 == 0 }))

reduce関数

  • 配列内の全ての値を単一の結果に集約
  1. let nums = [1,2,3]
  2. let initial = 10;
  3. print(nums.reduce(initial, { (curTotal, val) -> Int in
  4. return curTotal + val
  5. }))
  6. 結果:16
  • 省略形
  1. let nums = [1,2,3]
  2. let initial = 10;
  3. print(nums.reduce(initial,{ $0 + $1 }))
  4. 結果:16

タプル


  1. (型名1, 型名2, 型名3, ・・・)
  • インデックスでアクセス
  1. let prof : (String, Double, Int) = ("Yagi", 173.0, 49)
  2. print("\(prof.0) \(prof.1) \(prof.2)")
  • 変数に代入
  1. let (name, tall, age) = prof
  2. print("name is \(name) \(tall) cm \(age) yo")
  • 名前付タプル
  1. let prof2 = (name:"Yagi",tall:173.0, age:49)
  2. print("name is \(prof2.name) \(prof2.tall) cm \(prof2.age) yo")
  • 結果
  1. Yagi 173.0 49
  2. name is Yagi 173.0 cm 49 yo
  3. name is Yagi 173.0 cm 49 yo

辞書 Dictionary<Key, Value>


  • キーと値をもつコレクション
  1. 1> var sex = ["1":"male","2":"female"]
  2. sex: [String : String] = 2 key/value pairs {
  3. [0] = {
  4. key = "2"
  5. value = "female"
  6. }
  7. [1] = {
  8. key = "1"
  9. value = "male"
  10. }
  11. }
  12. 2> sex["1"]
  13. $R0: String? = "male"
  14. 3>

削除

  1. 3> sex.removeValue(forKey:"1")
  2. $R1: String? = "male"
  3. 4> sex
  4. $R2: [String : String] = 1 key/value pair {
  5. [0] = {
  6. key = "2"
  7. value = "female"
  8. }
  9. }

空の辞書

  1. var emptyDict: [String: String] = [:]

Set


  1. var setOfStrings = Set<String>()
  2. var fruitSet : Set = ["apple","orange","orange","banana"]

範囲 Range<Bound>


  • 末尾の値を含まない、..< もしくは含む ... により生成される

..<

  • Range<Bound>
  • CountableRange<Bound>
  • PartialRangeUpTo<Bound>
  1. 1> let r = 0 ..< 10
  2. r: Range<Int> = 0..<10

...

  • ClosedRange<Bound>
  • CountableClosedRange<Bound>
  • PartialRangeThrough<Bound>
  • ParatialRangeFrom<Bound>
  • CountablePartialRangeFrom<Bound>
  1. 2> let s = "a" ... "z"
  2. s: ClosedRange<String> = {
  3. lowerBound = "a"
  4. upperBound = "z"
  5. }
  • 前置
  1. 4> let t = ...1.95
  2. t: PartialRangeThrough<Double> = {
  3. upperBound = 1.95
  4. }
  • 後置
  1. 5> let f = 1.95...
  2. f: PartialRangeFrom<Double> = {
  3. lowerBound = 1.95
  4. }
  • 範囲に含まれるか
  1. 6> f.contains(3.0)
  2. $R0: Bool = true

イテレーター

IteratorProtcol

  1. let animals = ["Antelope", "Butterfly", "Camel", "Dolphin"]
  2. var animalIterator = animals.makeIterator()
  3. while let animal = animalIterator.next() {
  4. print(animal)
  5. }

演算子

  • C言語の演算子はほぼ使える
  • ポインタはないため、*、&、-> は異なった意味
  • インクリメント(++)、デクリメント(--) は廃止された

高度な演算


  • Foundation をインポートすることで、sin、logなど利用可能になる

型の判定


  • is
  1. 11> let a:Any = "123"
  2. a: String = "123"
  3. 12> a is String
  4. $R1: Bool = true

キャスト


  1. as

アップキャスト(as)


  • as
  • コンパイル可能なアップキャストは常に成功
  • 暗黙も可
  1. 1> let a: Any = "abc" as Any
  2. a: String = "abc"
  3. 2> let b: Any = "abc"
  4. b: String = "abc"

ダウンキャスト(as? as!)


  • as? キャストが正しく行われた場合オプショナル型、不正な場合、nil
  • as! 強制キャスト失敗した場合、実行時エラー
  • コンパイルできても実行時に失敗する可能性あり
  1. 8> let a:Any = "123"
  2. a: String = "123"
  3. 9> let s = a as? String
  4. s: String? = "123"
  5. 10> let i = a as? Int
  6. i: Int? = nil
  7. 11> let j= a as! Int
  8. error: repl.swift:11:6: error: '=' must have consistent whitespace on both sides
  9. let j= a as! Int
  10. ^

独自演算子の定義


  1. infix operator *** {
  2. associativity none
  3. precedence 130
  4. }
  5. func ***(lhs: Int, rhs: Int) -> Int {
  6. return lhs * rhs
  7. }

モジュールと名前空間

モジュールのインポート

  • フレームワークや外部モジュールからクラスや関数情報をimportで取込む
  • Xcodeにある、*.swiftdoc や *.swiftmodule がSwiftが利用できるモジュール情報
  1. import Foundation

名前空間

  • ドットで区切って修飾

制御構文

if

  • 条件の()は不要
  • 1文しかなくても{}は省略不可
  • 条件はBool型である必要がある
  1. if 条件 {
  2. } else if 条件 {
  3. } else {
  4. }

for

  • シーケンスプロトコルに準拠したオブジェクトを順次処理
  1. for 変数 in シーケンス {
  2. }

整数のレンジ

  • 開始値...終了値
  1. for i in 0...10 {
  2. print(i)
  3. }
  • 開始値..<終了値
  1. for i in 0..<10 {
  2. print(i)
  3. }
  • ステップでシーケンス作成(to値を含まない)
  1. for num in stride(from: 0, to: 10, by: 2) {
  2. print(num)
  3. }
  4. //結果
  5. 0
  6. 2
  7. 4
  8. 6
  9. 8
  • ステップでシーケンス作成(through値を含む)
  1. for num in stride(from: 0, through: 10, by: 2) {
  2. print(num)
  3. }
  4. //結果
  5. 0
  6. 2
  7. 4
  8. 6
  9. 8
  10. 10

for-in

  • where以下は省略可能
  1. for 定数 in where {
  2. }
  1. for i in 0 ... 10 where% 2 == 0 {
  2. print(i)
  3. }

while

  1. while 条件 {
  2. }

repeat-while

  • 必ず一回は処理したい場合
  1. repeat {
  2. } while 条件

switch

  • break不要
  • 分岐に文字列や構造を持つ型も利用できる
  • 列挙/範囲指定できる
  • breakがなくてもcaseブロック終了でswitchを抜ける
  • break書いても良い
  • fall through は明示することで可能
  • 式がとりうる値を網羅していないとコンパイルエラー
  1. switch {
  2. case ラベルn:
  3. default:
  4. }
  1. for i in 0 ... 10 {
  2. switch i {
  3. case 2, 4: // 列挙できる
  4. print("twe,four\(i)") // breakがなくてもcaseブロック終了でswitchを抜ける
  5. case 5:
  6. print("five \(i)")
  7. case 6:
  8. break // break書いても良い
  9. case 7 ..< 9: // 範囲指定
  10. print("7 <= i < 9: \(i)")
  11. fallthrough // fall through は明示することで可能
  12. default: // 式がとりうる値を網羅していないとコンパイルエラー
  13. print("other \(i)")
  14. }
  15. }
  16. 結果:
  17. other 0
  18. other 1
  19. twe,four2
  20. other 3
  21. twe,four4
  22. five 5
  23. 7 <= i < 9: 7
  24. other 7
  25. 7 <= i < 9: 8
  26. other 8
  27. other 9
  28. other 10

タプルに適用

  1. let switchingTuple = ("Yes", 123)
  2. switch switchingTuple {
  3. case ("Yes", 123):
  4. print("Tuple contains 'Yes' and '123'")
  5. case ("Yes", _):
  6. print("Tuple contains 'Yes' and something else")
  7. case (let string, _):
  8. print("Tuple contains the string '\(string)' and something else")
  9. }

ラベル

  • break はラベルのブロックを抜ける
  • continue はラベルの次繰り返しへ

ループ

  1. loop1: while {
  2. loop2: while {
  3. while {
  4. break loop1
  5. continue loop1
  6. break loop2
  7. continue loop2
  8. }
  9. }
  10. }

if switch

  1. cond1: if {
  2. cond2: if {
  3. if {
  4. break cond2
  5. }
  6. break cond1
  7. }
  8. }

do

エラー処理


Optional<Wrapped>型によるエラー処理


  • 値ありを成功、なしを失敗とみなす
  • エラーが発生する側は、戻り値の型をOptional<Wrapped>とするだけで良い
  • エラー処理側で、オプショナルチェイン、オプショナルバインディングなど簡潔に記述できる
  • 呼び出し元にエラーの詳細情報を提供できない

Result<Success,Failure>型によるエラー処理


  • 成功を結果の値、失敗を詳細で表す
  1. enum ErrReson : Error {
  2. case overflow
  3. case even
  4. }
  5.  
  6. func someProc(_ underTenOddNum: Int) -> Result<String, ErrReson> {
  7. if underTenOddNum >= 10 {
  8. return .failure(.overflow)
  9. }
  10. if underTenOddNum % 2 == 0 {
  11. return .failure(.even)
  12. }
  13. return .success("Success!! odd number & under ten")
  14. }
  15.  
  16. func checkResult(_ result: Result<String, ErrReson>) {
  17. switch result {
  18. case let .success(message):
  19. print(message)
  20. case let .failure(err):
  21. print("\(err)")
  22. }
  23. }
  24.  
  25. checkResult(someProc(11))
  26. checkResult(someProc(8))
  27. checkResult(someProc(9))
  • 結果
  1. overflow
  2. even
  3. Success!! odd number & under ten
  4. </pre<
  5.  
  6. ====エラーを投げる====
  7. ----
  8. *プロトコル Errorに適合している必要がある
  9. <pre>
  10. throw
  • エラーを投げる関数は直後に、throws宣言が必要

do-catchによるエラー処理


  • Swift標準のエラー処理機構
  • エラーを投げる関数を呼び出すには、関数名の前にtryを付与して呼び出す必要がある
  • throw分のエラーを表現するには、エラーであることを表す、Errorプロトコルに準拠する必要がある
  • Errorプロトコルに準拠させる場合、列挙を使用するのが一般的
tryを使って呼び出すだけ

さらに上位に伝播

do-catch

捕捉

try?
  • 戻り値をオプショナルとして扱う。エラーが発生した場合値が nil となる
  • 「エラーは起きるかもしれない。でも起きたとしても無視する」
try!

戻り値を通常型として扱う。エラー発生時は実行エラー

パターン
  • 定数または変数のマッチング
  • パターンを記述しないcatchも可能。発生したエラーは、errorで参照できる
  1. do {
  2. try 関数
  3. } catch パターン where {
  4. } catch {
  5. }
  1. enum ParaErr : Error {
  2. case NIL
  3. case OVERFLOW
  4. }
  5.  
  6. func sub(para:Int?) throws {
  7. if let val = para {
  8. if val > 5 {
  9. throw ParaErr.OVERFLOW
  10. }
  11. print("para is \(val).")
  12. } else {
  13. throw ParaErr.NIL
  14. }
  15. }
  16.  
  17. func test() {
  18. let paras: [Int?] = [1, nil, 10]
  19. for para in paras {
  20. do {
  21. try sub(para:para)
  22. } catch ParaErr.NIL {
  23. print("Parameter is nil.")
  24. } catch {
  25. print(error)
  26. }
  27. }
  28. }
  29. test()
  • 結果
  1. para is 1.
  2. Parameter is nil.
  3. OVERFLOW

throwsキーワード


  • 関数、イニシャライザ、クロージャの定義にthrowsを追加すると、それらの中で、do-catchを用いずにthrow文によるエラーを発生させることができる

guard文


  • 想定外の状況が発生した場合に、その状況から抜け出す(早期退出するガード節)
  • 条件には、通常の条件やオプショナル束縛などを記述できる
  • if - let 同様、guard - let が利用できる。ifと異なり、ブロック外でも利用可能
  1. guard 条件 else {
  2. /* break や return、throw など制御が戻らないことが自明な文 */
  3. }
  1. 10> func printAge(age: Int) {
  2. 11. guard age >= 0 else {
  3. 12. print("不正な年齢\(age)")
  4. 13. return
  5. 14. }
  6. 15. print("\(age)歳")
  7. 16. }
  8. 17> printAge(age: -1)
  9. 不正な年齢-1
  10. 18> printAge(age: 50)
  11. 50

遅延実行


  • 記述されている箇所より後で実行する

defer文


  • スコープを抜ける際に実行したい処理を定義する。
  • 複数のdefer文を記述した場合は逆順で実行される。

パターンマッチ


  • 値の持つ構造や性質を表現するパターンのマッチングによって制御を行うことができる
  • if,guard,for-in,while,doのcatchでも case キーワードを使えば利用できる
  1. if case パターン = 制御式 {}
  1. guard case パターン = 制御式 else {}
  • 一致したもののみ処理される
  1. for case パターン in シーケンス {}
  1. while case パターン = 制御式 {}

式パターン

  • ~= により評価
  • ~= は型別に定義されていて、範囲型では、contains(_:)メソッドで評価される
  1. 19> let n = 3
  2. 20> let r = 1...3
  3. 21> r ~= n
  4. $R4: Bool = true

バリューバインディングパターン

  • 値を変数や定数に代入する
  • var、let と他のパターンを組み合わせマッチしたら代入
  1. 1> let point = (3, 2)
  2. 2> switch point {
  3. 3. case let (x, y):
  4. 4. print("\(x),\(y)")
  5. 5. }
  6. 3,2

オプショナルパターン

  • Optional<T>の値有無を評価
  1. 6> let o: Int? = 42
  2. 7> if case .some(let x) = o {
  3. 8. print(x)
  4. 9. }
  5. 42

列挙型ケースパターン

  • 列挙型ケースとの一致
  • 列挙型参照

is/as演算子によるキャスティングパターン

  • is による判定
  1. 12> let a: Any = "s"
  2. a: String = "s"
  3. 13> switch a {
  4. 14. case is String:
  5. 15. print("str")
  6. 16. default:
  7. 17. print("other")
  8. 18. }
  9. str
  • as によるダウンキャスト
  1. 19> let a: Any = 1
  2. 20> switch a {
  3. 21. case let s as String:
  4. 22. print("str:\(s)")
  5. 23. case let i as Int:
  6. 24. print("int:\(i)")
  7. 25. default:
  8. 26. print("other")
  9. 27. }
  10. int:1

構造体

  • structは値型
  • プロトコルは、実装すべきメソッドやプロパティが定まっている
  • 構造体の値を変更するメソッドは先頭に mutating を付与
  1. struct 名前 プロトコル{
  2. 変数・定数定義
  3. イニシャライザ定義
  4. メソッド定義
  5. その他定義
  6. }
  • init() イニシャライザ
  1.  
  2. struct Person {
  3. var name: String
  4. var age: Int
  5. init(name :String , age : Int) {
  6. self.name = name
  7. self.age = age
  8. }
  9. mutating func addAge(num: Int) {
  10. self.age += num
  11. }
  12. }
  13. struct Team {
  14. let name: String
  15. let members: [Person]
  16. func printMembers(){
  17. for member in members {
  18. print("\(member.name) \(member.age)")
  19. }
  20. }
  21. }
  22.  
  23. func test() {
  24. var me = Person(name: "Yagi", age: 49)
  25. me.addAge(num: 3)
  26. print(me)
  27.  
  28. let team = Team(name:"family", members: [me])
  29. team.printMembers()
  30. }
  31.  
  32. test()
  • 実行
  1. $ swift struct.swift
  2. Person(name: "Yagi", age: 52)
  3. Yagi 52

イニシャライザ


  • カスタムイニシャライザは値を返さない関数のような形式で定義
  • func や関数名はかかず、init というキーワードを記述し、初期化のための手続きをコードブロックに記述する
  • 構造体のプロパティに自由にアクセス可能
  • 初期値のある定数の初期化はできないが、初期値がなければ一度だけ可能
  • イニシャライザで構造体のメソッドを利用できるのは、全てのプロパティの初期化が完了してから(メソッドを利用してプロパティの初期値を設定することはできない)
  • 失敗可能イニシャライザは、init? で定義、失敗した場合、nilを返す

複数のイニシャライザ


  • 関数のオーバーロードのように、必要に応じて複数のイニシャライザを定義できる
  • 引数のないイニシャライザ、全項目のイニシャライザは便宜的にコードをかかなくても既定イニシャライザとして、利用できるが、特定のイニシャライザを作成した時点で利用できなくなるので、利用するには別途記述する必要が生じる

メンバーワイズイニシャライザ


  • デフォルトで用意されているイニシャライザ
  • 型が持っているストアドプロパティと同名の引数をとるイニシャライザ
  • ストアドプロパティが初期化式と同時に定義されている場合、デフォルト引数となり、呼び出し時に省略できる
  1. 1> struct Foo {
  2. 22. var i: Int
  3. 23. var s: String = ""
  4. 24. }
  5. 25> let f = Foo(i:1, s:"a")
  6. f: Foo = {
  7. i = 1
  8. s = "a"
  9. }
  10. 26> let f = Foo(i:2)
  11. f: Foo = {
  12. i = 2
  13. s = ""
  14. }

クラス

  • self を通してインスタンスにアクセスできる
  • 大文字のSelfで、型自身にアクセスでき、スタティックメソッドなどへのアクセスが容易になる

宣言


  1. class クラス名: スーパークラス, プロトコル {
  2. var 変数: = 初期値
  3. init(引数: 型) {
  4. super.init(引数)
  5. self.変数 = 引数
  6. }
  7. func 関数(引数: 型) -> 戻り値の型 {
  8. return 戻り値
  9. }
  10. }
  1. class Person {
  2. var name: String = ""
  3. var age: Int = 0
  4. init(name :String , age : Int) {
  5. self.name = name
  6. self.age = age
  7. }
  8. func addAge(num: Int) {
  9. self.age += num
  10. }
  11. }
  12.  
  13. class Team {
  14. let name: String = ""
  15. var members: [Person] = []
  16. func addMember(_ person: Person) {
  17. self.members.append(person)
  18. }
  19. func printMembers(){
  20. for member in members {
  21. print("\(member.name) \(member.age)")
  22. }
  23. }
  24. }
  25.  
  26. func test() {
  27. let me = Person(name: "Yagi", age: 49)
  28. me.addAge(num: 3)
  29. print(me)
  30.  
  31. let team = Team()
  32. team.addMember(me)
  33. team.printMembers();
  34. }
  35.  
  36. test()
  • 結果
  1. $ swift classes.swift
  2. classes.Person
  3. Yagi 52

継承


  1. class クラス名 : スーパークラス名 {
  2. クラス定義
  3. }

オーバーライド


  • オーバーライドを行うには、override キーワードを用いて、スーパークラスの要素を再定義する
  • super でスーパークラスの実装を呼び出すことができる
  • final を記述することで、オーバーライドを禁止できる
  • final クラスにすることで、継承を禁止できる
  1. class クラス名 : スーパークラス名 {
  2. override func メソッド名 ・・・
  3. override var プロパティ名 ・・・
  4. }

文字列表現


  1. class SomeClass: CustomStringConvertible {
  2. var description: String { return "This is SomeClass" }
  3. }

列挙型

  1. enum FoodChoice {
  2. case cereal,salad,sandwich,pizza,chiken,pie
  3. }
  4. enum Meal {
  5. case breakfast,lunch,dinner,snack
  6. func foodChoices() -> [FoodChoice] {
  7. switch self {
  8. case .breakfast:
  9. return [.cereal]
  10. case .lunch:
  11. return [.salad,.sandwich,.pizza]
  12. case .dinner:
  13. return [.sandwich, .pizza, .pie]
  14. case .snack:
  15. return [.cereal,.pie]
  16. }
  17. }
  18. }
  19.  
  20. let meal: Meal = .lunch
  21. print(meal.foodChoices())
  22. 結果:[__lldb_expr_29.FoodChoice.salad, __lldb_expr_29.FoodChoice.sandwich, __lldb_expr_29.FoodChoice.pizza]

連想値


  • 列挙型では、どのケースかに加え付加情報として連想値を持つことができる
  • 連想値として持つ型には制限はない
  1. enum SomeError : Error {
  2. case notfound(searchkey: String)
  3. case invalidNum(number: Int)
  4. }
  5.  
  6. let errReason1 = SomeError.notfound(searchkey: "username")
  7. let errReason2 = SomeError.invalidNum(number: 5)
  8.  
  9. print("\(errReason1)")
  10. print("\(errReason2)")
  • 結果
  1. notfound(searchkey: "username")
  2. invalidNum(number: 5)

関数

定義


  1. func 関数名(引数名:型 = 初期値, ...) -> 戻り値型{
  2. ステートメント
  3. return 戻り値
  4. }

引数

  • 外部引数名 内部引数名 : 型 と宣言する
  • 外部引数名を省略したい場合は、 _ を指定する
  • デフォルト引数を指定できる
  1. import Foundation
  2.  
  3. // 関数定義
  4. func goodmorning(name: String) -> String {
  5. return "Good Morning \(name)!"
  6. }
  7.  
  8. // return の省略、引数ラベルの別名
  9. func hello(n name: String) -> String { "Hello \(name)!!" }
  10.  
  11. // 引数ラベルの省略
  12. func goodbye(_ name: String) -> String { "Good-bye \(name)!!"}
  13.  
  14.  
  15. // 関数定義 仮引数、戻り値は省略できる
  16. func test() {
  17. print(goodmorning(name:"Yagi"))
  18. print(hello(n:"Hiroto"))
  19. print(goodbye("Hiroto Yagi"))
  20. }
  21.  
  22. test()
  • 実行結果
  1. $ swift main.swift
  2. Good Morning Yagi!
  3. Hello Hiroto!!
  4. Good-bye Hiroto Yagi!!

inoutによる参照渡し


  • 引数のを値を変更する場合、inoutを付与
  • 実引数を&を付与して渡す
  1. import Foundation
  2.  
  3. func funcIntou(n: inout Int, m: inout Int) {
  4. let temp = n
  5. n = m
  6. m = temp
  7. }
  8.  
  9. func test() {
  10. var a = 111;
  11. var b = 999;
  12. print(a, b)
  13. funcIntou(n:&a, m:&b)
  14. print(a, b)
  15. }
  16.  
  17. test()
  • 実行結果
  1. $ swift func_inout.swift
  2. 111 999
  3. 999 111

ネストした関数


  • デフォルトでは外部から隠されている
  • 囲っている関数からは呼び出すことができる
  • 囲っている関数は、ネストした関数を外部で使用するために返すことができる。
  1. func chooseStepFunction(backward: Bool) -> (Int) -> Int {
  2. func stepForward(input: Int) -> Int { return input + 1 }
  3. func stepBackward(input: Int) -> Int { return input - 1 }
  4. return backward ? stepBackward : stepForward
  5. }
  6. var currentValue = -4
  7. let moveNearerToZero = chooseStepFunction(backward: currentValue > 0)
  8. // moveNearerToZero now refers to the nested stepForward() function
  9. while currentValue != 0 {
  10. print("\(currentValue)... ")
  11. currentValue = moveNearerToZero(currentValue)
  12. }
  13. print("zero!")
  14. // -4...
  15. // -3...
  16. // -2...
  17. // -1...
  18. // zero!

可変長引数


  • ...を記述
  1. func shell(_ outputPipe:Pipe, path:String ,args: String...) -> Int32 {
  2. }

プロパティ

  • 構造体、列挙、クラスに定義可能
  • var、letで定義

格納型プロパティ

  • 定数、変数

計算型プロパティ

  • 手続きで構成
  1. var プロパティ名:型 {
  2. get {
  3. プロパティの値を返す文
  4. }
  5. set(仮引数) {
  6. プロパティの値を更新する文
  7. }
  8. }
  1. struct Tentimes {
  2. var origin: Int
  3. var ten: Int {
  4. get {
  5. return self.origin * 10
  6. }
  7. set(num) {
  8. origin = num / 10
  9. }
  10. }
  11. }
  12.  
  13.  
  14. func test() {
  15. var n = Tentimes(origin: 10)
  16. print(n.ten)
  17. n.ten = 10
  18. print(n.origin)
  19. }
  20.  
  21. test()
  • 結果
  1. $ swift property.swift
  2. 100
  3. 1

クラスプロパティ/静的プロパティ

  • class/static を付与
  • サブクラスで変更される可能性があるかで使い分ける
  • 継承先で変更される場合、クラスプロパティ
  • 継承先でも同じ値を返す場合、静的プロパティ
  • クラスプロパティ
  1. class Hoge {
  2. class var foo: String {
  3. return "foo"
  4. }
  5. }

プロパティオブザーバー

  • プロパティの変更をトリガーに手続きを起動
  • willSet:プロパティに格納される直前の値を、newValueで参照できる。willSet(仮引数) と具体的に引数を指定もできる
  • didSet:プロパティに今まで格納されていた値を、oldValueで参照できる。didSet(仮引数) と具体的に引数を指定もできる
  1. struct PropertyObserver {
  2. var val:Int = 0 {
  3. willSet {
  4. print("new value:\(newValue)");
  5. }
  6. didSet {
  7. print("old value:\(oldValue)");
  8. }
  9. }
  10. }
  11.  
  12. func test() {
  13. var po = PropertyObserver()
  14. po.val = 1;
  15. print("\(po.val)")
  16. po.val = 2;
  17. print("\(po.val)")
  18. }
  19.  
  20. test()
  • 実行
  1. ew value:1
  2. old value:0
  3. 1
  4. new value:2
  5. old value:1
  6. 2

添字付け

  1. subscript(仮引数) -> {
  2. get {
  3. 添字で指定したプロパティを返す
  4. }
  5. set (仮引数) {
  6. プロパティの値を変更する
  7. }
  8. }
  • 実行
  1. struct Upper {
  2. var items:[String]
  3. init(count: Int) {
  4. self.items = Array(repeating:"", count:count);
  5. }
  6. subscript(pos: Int) -> String {
  7. get {
  8. return self.items[pos]
  9. }
  10. set {
  11. self.items[pos] = newValue.uppercased()
  12. }
  13. }
  14. }
  15.  
  16. func test() {
  17. var u = Upper(count:3)
  18. u[0] = "a"
  19. u[1] = "b"
  20. u[2] = "c"
  21. print("\(u[0])\(u[1])\(u[2])")
  22. }
  23.  
  24. test()
  • 結果
  1. $ swift subscript.swift
  2. ABC

レイジープロパティ

  • アクセスされるまで初期化を遅延
  1. lazy var プロパティ名 : プロパティ型 = 式

KeyPath

  • https://qiita.com/imchino/items/67a987681bca5ad0408b
  • 「あるデータ型に定義されたプロパティまでの参照(パス)」です。
  • キーパス式は、型のプロパティまたは添え字を参照する。
  • キー・値監視などの動的プログラミングタスクでは、キーパス式を使用する。
  1. \<#type name#>.<#path#>

サブスクリプト

  • コレクションへの統一的なアクセス手法
  1. subscript(引数) -> 戻り値の型 {
  2. get {
  3. return 文によって値を返す処理
  4. }
  5. set {
  6. 値を更新する処理
  7. }
  8. }
  1. 1> struct Hoge {
  2. 2. var children: [Int]
  3. 3. subscript(index: Int) -> Int {
  4. 4. get {
  5. 5. return children[index]
  6. 6. }
  7. 7. set {
  8. 8. children[index] = newValue
  9. 9. }
  10. 10. }
  11. 11. }
  12. 12>
  13. 13> var hoge = Hoge(children: [1,2,3])
  14. 14> print(hoge[2])
  15. 3

エクステンション

  • 既に存在している型にプロパティやメソッド、イニシャライザなどの構成要素を追加できる
  • ストアドプロパティは追加できないが、コンピューテッドプロパティは追加できる
  1. extension 定義する対象の型 {
  2. 対象に追加したい要素
  3. }
  1. 1> extension String {
  2. 2. func repeats(times: Int) -> String {
  3. 3. var ret = ""
  4. 4. for i in 0...times {
  5. 5. ret += self
  6. 6. }
  7. 7. return ret
  8. 8. }
  9. 9. }
  10. 10> let s = "abc"
  11. 11> s.repeats(times:3)
  12. $R0: String = "abcabcabcabc"

型のネスト

  • 型の中に型を定義できる
  1. 12> struct Foo {
  2. 13. enum Bar {
  3. 14. case a
  4. 15. case b
  5. 16. case c
  6. 17. }
  7. 18. }
  8. 19> let bar = Foo.Bar.b
  9. 20> bar
  10. $R1: Foo.Bar = b

プロトコル

  • Swiftではインターフェースを定義するためのプロトコルをクラスだけでなく、構造体や列挙にも適用可能
  • プロトコルには実装を共有できない問題があるが、拡張機能を活用することで問題を軽減できる
  • 本来関係ない型どうしをプロトコルと拡張を用いて後から連携するようにできる
  • Swiftでは、プロトコル指向開発を進めることが可能
  • プロトコルの機能を実装している場合、プロトコルに、適合(conform)、準拠しているという

定義


  1. public protocol Hogeable {
  2. public var foo: String { get } // foo という名前でStringを返すプロパティ
  3. }

採用


  • プロトコルを使用して、メソッドなどを実装することを、プロトコルを採用(adopt)するという
  • 構造体で採用
  1. struct 型名 : プロトコル名, プロトコル名, ・・・ {
  2. } 

エクステンションによる準拠


  • エクステンションでプロトコルに準拠する事も可能
  1. extension エクステンションを定義する対象の型 : プロトコル名 {
  2. プロトコルが要求する要素の定義
  3. }

連想型


  • プロトコルの準拠時にプロパティ、引数、戻り値の型を指定できる
  • 連想型の実際の型は準拠する側で指定する
  • 1つの型に依存しないより抽象的なプロトコルを定義できる
  1. protocol プロトコル名 {
  2. associated type 連装型名
  3. var プロパティ名 : 連想型名
  4. func メソッド名(引数名: 連想型名)
  5. func メソッド名() -> 連想型名
  6. }
  1. protocol Foo {
  2. associatedtype Bar
  3. func info(value: Bar)
  4. }
  5. struct Hoge : Foo {
  6. func info(value: Int) {
  7. print("\(value)")
  8. }
  9. }
  10.  
  11. let hoge = Hoge()
  12. hoge.info(value:10)

同値、比較


Equatableプロトコル

  • ==、!= により同値性を検証する

Comparableプロトコル

  • 値の大小比較を行う

シーケンスとコレクション


Sequenceプロトコル


  • 以下を提供
forEach(_:) : 順次アクセス
  1. 1> let c = [1,2,3]
  2. 2> c.forEach({v in print(v)})
  3. 1
  4. 2
  5. 3
filter(_:) : 要素の絞り込み
  1. 1> let r = 0...8
  2. 2> r.filter({ v in% 2 == 0 })
  3. $R0: [ClosedRange<Int>.Element] = 5 values {
  4. [0] = 0
  5. [1] = 2
  6. [2] = 4
  7. [3] = 6
  8. [4] = 8
  9. }
map(_:) : 要素を変換
flatMap(_:) : 要素をシーケンスに変換し1つのシーケンスに連結
  1. 5> let n = [1,2]
  2. 6> n.flatMap({ v in [v , v * 2]})
  3. $R2: [Int] = 4 values {
  4. [0] = 1
  5. [1] = 2
  6. [2] = 2
  7. [3] = 4
  8. }
cmpactMap(_:) : 要素を失敗する可能性のある処理を用いて変換
  1. 3> let mix = ["a","1","2","d"]
  2. 4> mix.compactMap({ v in Int(v) })
  3. $R1: [Int] = 2 values {
  4. [0] = 1
  5. [1] = 2
  6. }
reduce(_:) : 要素を一つの値にまとめる
  1. 7> let r = [1,2,3]
  2. 8> r.reduce("", {result, element in result + "-" + String(element) })
  3. $R3: String = "-1-2-3"
カウントを取る 
  1. let count = sequence.reduce(0) { acc, row in acc + 1 }

Collectionプロトコル


  • isEmptyプロパティ
  • countプロパティ
  • firstプロパティ
  • lastプロパティ

変換

Array -> Set
  1. 1> let ary: [Int] = [3,2,3,2]
  2. ary: [Int] = 4 values {
  3. [0] = 3
  4. [1] = 2
  5. [2] = 3
  6. [3] = 2
  7. }
  8. 2> print(Set(ary))
  9. [3, 2]
Set -> Array
  1. 6> let set: Set<Int> = [3,4,5,6]
  2. set: Set<Int> = 4 values {
  3. [0] = 4
  4. [1] = 6
  5. [2] = 3
  6. [3] = 5
  7. }
  8. 7> print(Array(set))
  9. [4, 6, 3, 5]

クロージャ

  1. { 引数 in 戻り値を返す式 }
  • 実行する文を記述する前に、inキーワードが必要
  • 仮引数には、inout、可変長引数も利用可能
  1. {
  2. ( 仮引数: ) -> in // 省略可
  3. }
  • 例(引数、戻り値なし)
  1. var hello = { () -> () in print("hello")}
  2. hello()
  • 結果
  1. hello

関数もクロージャの一つ


  • 関数もクロージャとして扱える
  • 関数名を変数に代入
  • 引数も含めて識別できる
  1. 1> func Multi(x:Int,y:Int) -> Int {
  2. 2. x * y
  3. 3. }
  4. 4>
  5. 5> let m = Multi
  6. 6> m(2,3)
  7. $R0: Int = 6

キャプチャリスト


  • クロージャはローカル変数を共有する
  • 共有の必要がない場合、クロージャのインスタンス生成時にローカル変数の値をコピーする
  1. {
  2. [キャプチャリスト]
  3. ( 仮引数: ) -> in // 省略可
  4. }
  1. var message = "Start"
  2. let c1 = { () -> () in print("\(message)") }
  3. let c2 = { [message] () -> () in print("\(message)") }
  4. message = "End"
  5. c1()
  6. c2()
  • 結果
  1. End
  2. Start

クロージャを引数にとる関数


  1. // クロージャ(c1)を引数に取る
  2. func hoge(_ s1:String, _ s2:String, _ c1:(String, String) -> String) {
  3. print(c1(s1,s2))
  4. }
  5.  
  6. // クロージャを引数に取る関数の呼び出し
  7. func testHoge() throws {
  8. hoge("hello", "swift", {(m1:String, m2:String) -> String in "\(m1),\(m2)!" })
  9. }
  • 結果
  1. hello,swift!

コールバックにクロージャを利用する例

  • 非同期処理の結果をクロージャを用いて呼び出し元に返す
  1. static func accessRequest(completion:((String?) -> Void)?) {
  2. let allTypes = Set([
  3. HKQuantityType.quantityType(forIdentifier: .bodyMass)!,
  4. /* HKQuantityType.quantityType(forIdentifier: .stepCount)!,*/
  5. ])
  6.  
  7. self.getHealthStore()?.requestAuthorization(toShare: allTypes, read: allTypes) { (success, error) in
  8. if success {
  9. completion?("アクセス許可: \(String(describing: success))")
  10. } else {
  11. completion?("アクセス不許可: \(String(describing: error?.localizedDescription))")
  12. }
  13. }
  14. }

接尾(トレイリング)クロージャ


  • クロージャを関数の引数として使用する場合、末尾であれば特別な書き方をすることができる
  • クロージャを()の外に出し、可読性を高めることができる
  1. // クロージャ(c1)を引数に取る
  2. func hoge(_ s1:String, _ s2:String, _ c1:(String, String) -> String) {
  3. print(c1(s1,s2))
  4. }
  5.  
  6. // 接尾クロージャを使用した、クロージャを最後の引数として引数取る関数の呼び出し
  7. func testHoge() throws {
  8. // クロージャを()の外に出し、可読性を高めることができる
  9. hoge("hello", "swift") { (m1, m2) in
  10. "\(m1),\(m2)!"
  11. }
  12. }
  • 結果
  1. hello,swift!

  •  Message.user.name の重複を取り除き、","で連結して返す
  1. func joinAndUniqueUserNames(messages: [Message]) -> String {
  2. var names:Set<String> = []
  3.  
  4. // クロージャ例
  5. messages.forEach({message in names.insert(message.user.name)})
  6.  
  7. // トレイリングクロージャ例
  8. messages.forEach { message in
  9. names.insert(message.user.name)
  10. }
  11. return names.joined(separator: ",")
  12. }

属性


Swiftにおけるクロージャには、いくつかの属性を指定できます

@escapeing属性


https://qiita.com/imchino/items/48564b0c23a64f539060

  • クロージャは、関数に引数として渡されたとき「関数をエスケープ」できます。
  • エスケープしたクロージャは、関数に戻った後でも呼び出し可能です。
  • エスケープクロージャのよくある例として、非同期処理をする完了ハンドラとしてのクロージャがあります。
  • 関数の実行が完了した後にクロージャを呼び出すためには、エスケープしておく必要があります。
  1. func getCurrentTimelineEntry(for complication: CLKComplication, withHandler handler: @escaping (CLKComplicationTimelineEntry?) -> Void) {
  2. // Call the handler with the current timeline entry
  3. handler(nil)
  4. }

ジェネリクス

  1. func isEquals<T: Equatable> (_ x: T, _ y: T) -> Bool {
  2. return x == y
  3. }
  4. print("\(isEquals("a", "b"))")
  5. print("\(isEquals(1.0, 1.0))")

定義方法


  1. func 関数名<型引数> (引数名 : 型引数) -> 戻り値型 {
  2. 関数呼び出し実行文
  3. }
  1. func genericSample<T, U> (x: T, y: U) -> U {
  2. let: T = x
  3. let b = y
  4. print("\(a),\(b)")
  5. return y
  6. }
  7. print(genericSample(x:1.2, y:"abc"))

some,any


https://jimaru.blog/programming/swift/swift-some-any/

並行処理

ディスパッチキュー


  1. Button(action: {
  2. let rootDir = EncConverterService.chooseDir()
  3. let queue = DispatchQueue.global(qos: .userInitiated)
  4. queue.async {
  5. EncConverterService.loadFile(directoryPath: rootDir, filepaths: self.filePaths)
  6. }
  7. }) {
  8. Text("Choose dir")
  9. }

Grand Central Dispatch


  • GCDのキューはディスパッチキュー、以下の2種
    • 直列ディスパッチキュー(serial dispatch queue)
    • 並列ディスパッチキュー(concurrent dispatch queue)
  • 利用するには既存のディスパッチキューを取得するか新規に生成
  • GCDは1つのメインキュート複数のグローバルキューを提供
  • メインキューはメインスレッドでタスクを実行する直列ディスパッチキュー
  • iOS/macOSでは、UIの更新は常にメインキューから行われる
  • 取得したディスパッチキューにタスクを追加するには、DispatchQueue.async(execute:) メソッドを用いる
  1. import Foundation
  2. import Dispatch
  3.  
  4. let mq = DispatchQueue.main // メインディスパッチキューを取得
  5. let gq = DispatchQueue.global(qos: .userInitiated) // グローバルキューを取得
  6. let cq = DispatchQueue(
  7. label: "info.typea.hoge.queue",
  8. qos: .default,
  9. attributes: [.concurrent]) // info.typea.hoge.queue という名前の並列ディスパッチキューを生成

Operation,OperationQueue


  • Operationは実行タスクと情報をカプセル化したものOperationQueueがキューの役割

Mainスレッドで実行


  • UIスレッド
  1. DispatchQueue.main.async {
  2. self.hogeLabel.text = result
  3. }

ユニットテスト

非同期処理をテストする

  1. func testAccessRequest() {
  2. var result : String?
  3. let expectation = expectation(description: "非同期待ち")
  4. // 非同期処理の呼び出しとコールバック
  5. HealthKitHelper.accessRequest() { accessResult in
  6. result = accessResult
  7. expectation.fulfill() // 非同期待ち解除
  8. }
  9. waitForExpectations(timeout: 4) // 指定時間応答がなければ失敗
  10.  
  11. print("ACCESS REQUEST : \(String(describing: result))")
  12. assert(result != nil)
  13. }

正規表現

  1. do {
  2. let pattern = #"[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}"#
  3. let regex = try NSRegularExpression(pattern: pattern, options:[])
  4. for subinput in input.split(separator: "\r\n") {
  5. let line = String(subinput)
  6. let maches = regex.matches(in: line, options: [], range: _NSRange(0..<line.count))
  7. print(line)
  8. for mach in maches {
  9. for i in 0 ..< mach.numberOfRanges {
  10. let start = line.index(line.startIndex, offsetBy: mach.range(at: i).location)
  11. let end = line.index(start, offsetBy: mach.range(at: i).length)
  12. let text = String(line[start..<end])
  13. print(text)
  14. }
  15. }
  16. }
  17. } catch {
  18. print("RegEx fail.")
  19. }

IsMatch


  1. do {
  2. let regex = try NSRegularExpression(pattern: MATCH_PATTERN, options:[])
  3. return regex.firstMatch(in: stringValue, options: [], range: NSRange(location: 0, length: stringValue.utf16.count)) != nil
  4. } catch {
  5. print("\(error)");
  6. }

SwiftUI

UIKitとのインターフェース

SwiftUIは既存のApplieプラットフォームUIフレームワークとシームレスに動作する。

MacOS

Playground

値の変化をグラフで見る

Playground view result.png

チュートリアル

Objective-Cの動作モデルとセレクタ

  • Apple製品はObjective-Cの動作モデルに基づいている
  • オブジェクトがプログラムを構成しオブジェクトが相互にメッセージを送信し合うことで動作する
  • このモデルではメッセージの送り先について詳しく知る必要がないため、組み合わせの自由度が高い
  • Objective-Cでは、メッセージ送信の際、セレクタと呼ばれるデータを使ってメソッドを指定し動的な起動を可能としている
  • SwiftではSelector型が提供されており、Selector型でメソッドを呼び出す仕組みは、Objective-CのNSObjectで定義されている
  • Selector型は構造体だが、#selectorという特殊なイニシャライザを使用する

Swift Package Manager

Storyboard

Storyboard

Table View

Tab View画面遷移

Tips

watchOS

watchOS を iOS プロジェクトに統合
watchOS 開発概要

Developer Document

HealthKit利用 watchOS アプリ作成
コンプリケーションを文字盤に追加する
文字盤に画像や情報を表示する
Unit Tests
WatchKitオブジェクト

HealthKit

iOS SwiftにHealthKitを組み込む
ヘルスデータを読む
ヘルスデータを書き込む

チャート

iOS Swiftにチャートを組み込む

Sqlite

iOS SwiftでSQLite使用する

ランダム

  1. 2> Int.random(in:1 ... 9999)
  2. $R1: Int = 8549

Sum/Average

  1. 1> let l = [1,2,3,4,5]
  2. l: [Int] = 5 values {
  3. [0] = 1
  4. [1] = 2
  5. [2] = 3
  6. [3] = 4
  7. [4] = 5
  8. }
  9. 2> l.reduce(0,+)
  10. $R0: Int = 15
  11. 3> l.reduce(0,+) / l.count
  12. $R1: Int = 3

デザイン

配色
アイコン

書式

カンマつき数値
  1. 2> import Foundation
  2. 3> let nfmt = NumberFormatter()
  3. 4> nfmt.numberStyle = .decimal
  4. 5> print(nfmt.string(from: NSNumber(value:12345)))
  5. Optional("12,345")
小数点桁揃え
  1. print(String(format:"%.1f", (5.0 / 3.0)))
  2. 1.7
桁揃え
  1. print(String(format:"%05d", 99))
  2. 00099

日付

書式

  1. let formatter = DateFormatter()
  2. formatter.dateFormat = "yyyy-MM-dd"
  3. return formatter.string(from: day)

曜日判定

  1. let calendar = Calendar(identifier: .gregorian)
  2. return calendar.component(.weekday, from: date)

日付計算

  1. 3> let today = Date()
  2. today: Foundation.Date = 2022-06-18 02:38:05 UTC
  3. 4> let tommorow = Calendar.current.date(byAdding: .day, value:1, to: today)
  4. tommorow: Foundation.Date? = 2022-06-19 02:38:05 UTC
  • NSDateに変換
  1. 2> let d = Calendar.current.date(byAdding: .month, value:1, to: Date()) as! NSDate
  2. d: NSDate = 2022-07-03 15:38:43 UTC

JSON

Swift Sample

print改行させない


  1. print(value, terminator: "")

ファイルを読む


  1. do {
  2. let data = try String(contentsOfFile: filePath, encoding: .shiftJIS)
  3. let lines = data.components(separatedBy: .newlines)
  4. for line in lines {
  5. print(line)
  6. }
  7. } catch {
  8. print("\(error)")
  9. }

エンコードエラーがあってもShift-Jisファイルを読む


  1. let bufsize = 1024
  2. let buf = UnsafeMutablePointer<UInt8>.allocate(capacity: bufsize)
  3. defer {
  4. buf.deallocate()
  5. }
  6.  
  7. let reader = InputStream(fileAtPath: file.path)!
  8. reader.open()
  9. defer {
  10. reader.close()
  11. }
  12.  
  13. while reader.hasBytesAvailable {
  14. let ret = reader.read(buf, maxLength: bufsize)
  15. if ret == 0 {
  16. break;
  17. }
  18. // shift-jis 1バイト目 0x81-0x9F , 0xE0-0xFC
  19. let f1 = UInt8("81", radix: 16)!
  20. let t1 = UInt8("9f", radix: 16)!
  21. let f2 = UInt8("e0", radix: 16)!
  22. let t2 = UInt8("fc", radix: 16)!
  23. var bytes: [UInt8] = []
  24. var isNext = false
  25. for i in 0 ... bufsize {
  26. let byte = buf[i]
  27. if isNext {
  28. bytes.append(byte)
  29. isNext = false
  30. } else {
  31. if (f1 <= byte && byte <= t1) || (f2 <= byte && byte <= t2) {
  32. bytes.append(byte)
  33. isNext = true
  34. continue
  35. } else {
  36. bytes.append(byte)
  37. }
  38. }
  39. let s = String(bytes:bytes, encoding: .shiftJIS)
  40. bytes.removeAll()
  41. print(?? "??", terminator: "")
  42. }
  43. }

再起的にファイルパスを表示


  1. static func printFiles(directoryPath: String) {
  2. print(directoryPath)
  3. do {
  4. let fm = FileManager.default
  5. let fileNames = try fm.contentsOfDirectory(atPath: directoryPath)
  6. for fileName in fileNames {
  7. let childPath = directoryPath + "/" + fileName
  8. var isDir = ObjCBool(false)
  9. fm.fileExists(atPath: childPath, isDirectory: &isDir)
  10. if isDir.boolValue {
  11. printFiles(directoryPath: childPath)
  12. }
  13. print("\t" + childPath)
  14. }
  15. } catch {
  16. print(error)
  17. }
  18. }

UnitTest(XCode)


Swift unittest xcode.png Swift unittest structure xcode.png

Network


URLからデータを取得

  1. let url = URL(string: "https://www.typea.info/blog/")!
  2. let session = URLSession(configuration: .default)
  3. let task = session.dataTask(with: url){data, response, error in
  4. guard error == nil else {
  5. return
  6. }
  7. if let httpResponse = response as? HTTPURLResponse {
  8. guard httpResponse.statusCode == 200 else {
  9. return
  10. }
  11. if let recieveData = data {
  12. if let text = String(bytes: recieveData, encoding: .utf8) {
  13. print(text)
  14. }
  15. }
  16. }
  17. }
  18. task.resume()

Bonjour


  1. $ dns-sd
  2. dns-sd -E (Enumerate recommended registration domains)
  3. dns-sd -F (Enumerate recommended browsing domains)
  4. dns-sd -R <Name> <Type> <Domain> <Port> [<TXT>...] (Register a service)
  5. dns-sd -P <Name> <Type> <Domain> <Port> <Host> <IP> [<TXT>...] (Register Proxy)
  6. dns-sd -B <Type> <Domain> (Browse for service instances)
  7. dns-sd -Z <Type> <Domain> (Output results in Zone File format)
  8. dns-sd -L <Name> <Type> <Domain> (Resolve (‘lookup’) a service instance)
  9. dns-sd -Q <name> <rrtype> <rrclass> (Generic query for any record type)
  10. dns-sd -q <name> <rrtype> <rrclass> (Generic query, using SuppressUnusable)
  11. dns-sd -G v4/v6/v4v6 <hostname> (Get address information for hostname)
  12. dns-sd -X udp/tcp/udptcp <IntPort> <ExtPort> <TTL> (NAT Port Mapping)
  13. dns-sd -H (Print usage for complete command list)
  14. dns-sd -V (Get version of currently running daemon / system service)
  15. dns-sd -O [-compress|-stdout](Dump the state of mDNSResponder to file / STDOUT)
  1. calcutta:~ hirotoyagi$ dns-sd -B
  2. Browsing for _http._tcp
  3. DATE: ---Wed 24 Feb 2021---
  4. 22:20:24.598 ...STARTING...
  5. Timestamp A/R Flags if Domain Service Type Instance Name
  6. 22:20:24.599 Add 2 6 local. _http._tcp. Brother DCP-J973N
  1. $ dns-sd -q puli.local
  2. DATE: ---Sat 01 May 2021---
  3. 10:52:54.599 ...STARTING...
  4. Timestamp A/R Flags if Name Type Class Rdata
  5. 10:52:54.771 Add 2 6 puli.local. Addr IN 192.168.0.45


digで逆引き
  • @224.0.0.251 -p 5353 はBonjourのアドレス
  1. $ dig +short -x 192.168.0.45 @224.0.0.251 -p 5353
  2. puli.local.

Error Domain=NSURLErrorDomain Code=-1022 の対処


  • info.plistのソース編集で以下を追加
  1. <key>NSAppTransportSecurity</key>
  2. <dict>
  3. <key>NSAllowsArbitraryLoads</key>
  4. <true/>
  5. </dict>

UDP


bind: Operation not permitted


  1. /AppleInternal/BuildRoot/Library/Caches/com.apple.xbs/Sources/bind9/bind9-57.5/bind9/lib/isc/unix/socket.c:5580: bind: Operation not permitted
  2. /usr/bin/dig: isc_socket_bind: unexpected error

Swift bind permission err.png