假設現在有兩個 UITextField 打完字按視窗要把keyboard縮下去
要先在class 加上 UITextFieldDelegate
後面設定請參考
[iOS] Alamofire 安裝
如果沒有 CocoPods 請先安裝
STEP1.在Xcode開一個project 然後 關掉Xcode
STEP2. 利用 terminal cd 到剛剛的project 資料夾
STPE3. terminal 下指令" pod init"
STEP4. project 資料夾內會多出Podfile ,編輯Podfile
STEP5. Podfile裡面填入
ProjectName 就是你Xcode project的名稱
STEP6. terminal 下指令" pod install"
STEP7. 最後在project 內記得要 import Alamofire
如果出現
NSAppTransportSecurity
NSAllowsArbitraryLoads
STEP1.在Xcode開一個project 然後 關掉Xcode
STEP2. 利用 terminal cd 到剛剛的project 資料夾
STPE3. terminal 下指令" pod init"
STEP4. project 資料夾內會多出Podfile ,編輯Podfile
STEP5. Podfile裡面填入
ProjectName 就是你Xcode project的名稱
STEP6. terminal 下指令" pod install"
STEP7. 最後在project 內記得要 import Alamofire
如果出現
App Transport Security has blocked a cleartext HTTP (http://) resource load since it is insecure. Temporary exceptions can be configured via your app's Info.plist file.
在info.plist 按右鍵 -> open as source code 加入下面
[iOS] checkbok 使用 google material icon 製作
恩....iOS竟然沒check box 的元件可以用
只能用google material icon 代替了
STEP.01
https://design.google.com/icons/#ic_radio_button_checked
去google material icon下載 png 檔案
只能用google material icon 代替了
STEP.01
https://design.google.com/icons/#ic_radio_button_checked
去google material icon下載 png 檔案
[iOS] checkbok 使用 google material icon 製作
恩....iOS竟然沒check box 的元件可以用
只能用google material icon 代替了
STEP.01
https://design.google.com/icons/#ic_radio_button_checked
去google material icon下載 png 檔案
只能用google material icon 代替了
STEP.01
https://design.google.com/icons/#ic_radio_button_checked
去google material icon下載 png 檔案
[iOS] checkbok 使用 google material icon 製作
恩....iOS竟然沒check box 的元件可以用
只能用google material icon 代替了
STEP.01
https://design.google.com/icons/#ic_radio_button_checked
去google material icon下載 png 檔案
只能用google material icon 代替了
STEP.01
https://design.google.com/icons/#ic_radio_button_checked
去google material icon下載 png 檔案
[iOS] Internal Rate of Return(IRR) calculator for swift version
恩....需要計算IRR就參考這裡改成swift版本的
有需要請自行取用
GitHub : https://github.com/openopen114/IRR_calculator_swift_version"
有需要請自行取用
GitHub : https://github.com/openopen114/IRR_calculator_swift_version"
[iOS] Xcode thread 1 signal sigabrt 錯誤
通常是連結錯誤
但有時又不知道是哪裡或是哪個IBOutlet
想這次是 table view 的 Identifier 忘記改(因為是直接複製過來的)
可是錯誤只有說 thread 1 signal sigabrt .....
[iOS] NSURL中文網址Crash解決辦法
要是網址中有中文或其他符號有可能造成在開網頁時使得App crash
像是UIWebView開新網頁時
所以網址字串後面要用.stringByAddingPercentEncodingWithAllowedCharacters(.URLHostAllowedCharacterSet())!處理
就像這樣
像是UIWebView開新網頁時
所以網址字串後面要用.stringByAddingPercentEncodingWithAllowedCharacters(.URLHostAllowedCharacterSet())!處理
就像這樣
[iOS] Alamofire 載入 json 檔前先清 cache
在讀取外部json檔案時,iOS都會讀到cache裡面的
所以就算json有更新,iOS還是抓到cache 舊的json檔
所以要先清cache
然後在載入json檔案
所以就算json有更新,iOS還是抓到cache 舊的json檔
所以要先清cache
然後在載入json檔案