[iOS] UITextField 隱藏 keyboard

假設現在有兩個 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


如果出現

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 加入下面
NSAppTransportSecurity
   
        NSAllowsArbitraryLoads
       
    

[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 檔案


[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 檔案


[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 檔案

[iOS] Internal Rate of Return(IRR) calculator for swift version

恩....需要計算IRR就參考這裡改成swift版本的

有需要請自行取用

GitHub : https://github.com/openopen114/IRR_calculator_swift_version"


[iOS] Xcode thread 1 signal sigabrt 錯誤

通常是連結錯誤

但有時又不知道是哪裡或是哪個IBOutlet

想這次是 table view 的 Identifier 忘記改(因為是直接複製過來的)


可是錯誤只有說  thread 1 signal sigabrt  .....

[解決] Xampp php 連接 MS SQL server sqlsrv問題

剛在試 php 連MS SQL server 2014

google 一下就有很多篇圖文並茂的教學

有成功的話在 phpinfo.php 頁面上會出現 sqlsrv


沒出現就是失敗了

[iOS] ActivityIndicator 用法

恩....通常在載入東西等待時可以用ActivityIndicator

用法很簡單只要設定開始跟停止,還有停止後隱藏

例如載入網頁時




要停止後隱藏,要在這設定勾選

[iOS] NSURL中文網址Crash解決辦法

要是網址中有中文或其他符號有可能造成在開網頁時使得App crash 

像是UIWebView開新網頁時 

所以網址字串後面要用.stringByAddingPercentEncodingWithAllowedCharacters(.URLHostAllowedCharacterSet())!處理

就像這樣

[iOS] Alamofire 載入 json 檔前先清 cache

在讀取外部json檔案時,iOS都會讀到cache裡面的
所以就算json有更新,iOS還是抓到cache 舊的json檔

所以要先清cache

然後在載入json檔案
蔡松霖
Related Posts with Thumbnails