親子日記APP
|
免費申請
|
登入
mini box 迷你盒子
這裡是工程師的筆記資料.
部落格
相簿
APP日記
書籤
標籤:
Swift3
的相關文章
瀏覽方式:
摘要列表
|
標題列表
|
全站 《Swift3》 相關
[Swift] status bar 的高度計算
2018
11
01
15:55
當接聽電話或是開啟熱點 (Hotspot) 時 會像這樣多了一列 高度20pt 的提示列 某些情境,沒注意的話 會造成畫面異常
dropbox navigation bar 被遮住 navigation bar 多了 20pt 的空白 以上是舊款 iPhone 5~8 若是 iPhone X 系列,則不會增加一條 20pt 的提示列 會像這樣: 標準的 status bar 是 20pt 用這個 API 可取得目前的 stauts bar 高度 let statusHeight = UIApplication.shared.statusBarFrame.size.height // 20 or 40 print("statusHeigh...
繼續閱讀»
分類:
Swift 學習筆記
/
留言(0)
note: iOS Facebook 登入
2018
04
11
16:01
iOS 專用 Facebook 登入 - 快速入門 https://developers.facebook.com/docs/facebook-login/ios/ 要特別注意的是 【設定 Info.plist】 在 Info.plist 中要加這段 (也可不加) <key>LSApplicationQueriesSchemes</key> <array> <string>fbapi</string> <string>fb-messenger-share-api</string> <string>fbauth2</string> <stri...
繼續閱讀»
分類:
Swift 學習筆記
/
留言(2)
swift 3/4 將訊息轉貼到 Line (呼叫 Line App)
2017
10
27
11:24
Info.plist 必須新增 <key>LSApplicationQueriesSchemes</key> <array> <string>line</string> </array> 不然會出現錯誤 http://www.jianshu.com/p/631bd7f12a38 error: "This app is not allowed...
繼續閱讀»
分類:
Swift 學習筆記
/
留言(0)
Swift: Facebook SDK 登入錯誤訊息
2017
07
07
22:47
Facebook SDK 登入時出現的錯誤:
2017-07-07 22:43:47.353693+0800 album[24122:4694784] [MC] System group container for systemgroup.com.apple.configurationprofiles path is /private/var/containers/Shared/SystemGroup/systemgroup.com.apple.confi...
繼續閱讀»
分類:
Swift 學習筆記
/
留言(0)
Swift: 在鍵盤上加上按鈕
2017
06
16
09:26
程式大概就這樣 沒太多需解釋的地方 override func viewDidLoad() { super.viewDidLoad() // Do any additional setup after loading the view, typically from a nib. emailTxt.keyboardType = .emailAddress emailTxt.clearButtonMode = .whileEditing numTxt.keyboardType = .numberPad ...
繼續閱讀»
留言(0)
Swift: 動態更改 initial viewcontroller
2017
06
15
15:49
App 的設計常常會有的狀況: 啟動 App 後 已經登入 --> 直接跳掉 App主功能畫面 尚未登入 --> 先顯示登入畫面 但 Storyboard 中已經將 Initial View Controller 指向「登入 View」時 如何在已登入狀況下,直接、馬上顯示主功能畫面? --> 只要讓程式判斷登入與否,再決定 Initial View Controller 是哪一個! 在 AppDelegate.swft 中: //App啟動後 第一個呼叫的method func application(_ application: UIApplication, didFinish...
繼續閱讀»
分類:
Swift 學習筆記
/
留言(0)
Swift: "設定" 畫面的製作
2017
05
29
22:05
設計 iPhone "設定畫面" 的效果 首先 在 Story Borard 中加入一個 Table View Controller 接著 Content 設定為 Static Cells Sections 設定為 3 (或需要的區塊數目) Style 改為 Grouped 如下圖 在各個 Cell 放上 Label 或其它你需要的物件 (再設定適當的 constraints ) 結果如下 Swift 程式部分 新增 SettingTableViewController.swift 修改這段 override func numberOfSections(in tableView: UITableView) -...
繼續閱讀»
分類:
Swift 學習筆記
/
留言(0)