iOS開發中一些容易忽略和致使出錯的問題

1.    設置tag值事注意:git

設置tag值時必須大於100,  tableView 的頭尾高度 不能設置爲0.。能夠是0.001vim

2.iOS 9.3系統  之後沒法http 請求的解決辦法緩存

在 info.plist 文件中增長一項字典  :NSAppTransportSecurity,在該字典增長一項 : NSAllowsArbitraryLoads  值爲true插件

 3.PCH 路徑 設置: code

$(SRCROOT)/$(PROJECT_NAME)/PrefixHeader.pchstring

4.//Xcode插件存放路徑it

~/Library/Application Support/Developer/Shared/Xcode/Plug-insio

5.清理Xcode編譯緩存:編譯

路徑:Library/Developer/Xcode/DerivedData  執行命令:git merge 或者git rebase(如提示報警重啓Xcode就行了)table

6.文本長按彈出複製粘貼框時顯示的是英文 解決辦法

/*

 解決辦法是用vim直接打開工程的Info.plist文件,在文件中增長以下內容便可

 <key>CFBundleLocalizations</key>

 <array>

        <string>zh_CN</string>

        <string>en</string>

 </array>

 

 */

另外一種方式:修改Info.plist文件的Localization native development region屬性值爲China

相關文章
相關標籤/搜索