.net的RSA加解密與UWP 2016-10-18 notes 前言牢騷 我是要在uwp下使用加密演算法並傳送到server去,由Server進行解密。於是在google中下關鍵字”.net rsa e
Swift 多執行緒與檔案下載 2016-10-14 notes Swift的執行緒分為主要和背景。 Main Queue / Concurrent Queue 主執行緒不能執行同步工作,只能執行非同步工作。 主執行緒語法 1 2 3 4 5 6 7 8 let task1 = { for i in 1...5{ print ("Task1: (\i)")
Swift 檔案路徑與讀寫檔 2016-10-11 notes iOS的路徑 專案資料夾內的路徑 利用Bundle.main獲取 可以指定檔案名稱以及副檔名。 1 2 3 4 // 得到url let url = Bundle.main.url(forResource: "myjson", withExtension: "json") // 得到path let path
Swift 聲音播放與錄製 2016-10-06 notes 播放系統音效 超簡單只需要兩行 1 2 import AudioToolbox AudioServicesPlaySystemSound(1000) 播放自己放在app的音樂 先把自己的音效拖進Xcode,記得選擇”copy items if needed&
Swift 基礎語法筆記 2016-10-04 notes 參考資料 感謝大大~~ https://itisjoe.gitbooks.io/swiftgo/content/ 因應swift3,筆記內容與gitbook上略有不同 struct和enum是value type, class是reference