- 「カンファレンス動画鑑賞会のススメ」 @ Osaka.swift #1
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
| { | |
| "language": "ja-JP", | |
| "rate": 0.5, | |
| "pitch": 1.0, | |
| "volume": 0.8, | |
| "postDelay": 0.5, | |
| "presets" : [ | |
| { | |
| "text" : "準備できましたぁ" | |
| }, |
- Speech Synthesis - Appleのドキュメント
- AVSpeechSynthesizer: Making iOS Talk - WWDC 2018 Video
- PDFKit
- Introducing PDFKit on iOS - WWDC 2017 Video
- iOS 11 Programming 第10章 PDF Kit - 書籍
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
| var d = [String: String?]() | |
| var s: String? = nil | |
| d["key"] = s // nil入る | |
| print(d) | |
| d["key"] = nil // 削除 | |
| print(d) |
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
| import Rx from "rx-lite-extras"; | |
| const observable1 = Rx.Observable.create(observer => { | |
| console.log("[A] call onNext(1)"); | |
| observer.onNext(1); | |
| console.log("[A] called onNext(1)"); | |
| console.log("[B] call onNext(2)"); | |
| observer.onNext(2); | |
| console.log("[B] called onNext(2)"); |
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
| #import <UIKit/UIKit.h> | |
| #import <XCTest/XCTest.h> | |
| @interface ObjCExp1Tests : XCTestCase | |
| @end | |
| @implementation ObjCExp1Tests | |
| - (void)setUp { |
NewerOlder