查看了部分之前的文章,覺得知識點比較散.打算做一個集合,因此有了本文.
一.WebView NSURLErrorDomain error -999
在UIWebViewDelegate方法下,
調(diào)用錯誤信息 [error localizedDescription]會出現(xiàn) error -999的情況,只需要添加一行代碼就可以解決該問題
- (void)webView:(UIWebView*)webView didFailLoadWithError:(NSError*)error{
if([errorcode] !=NSURLErrorCancelled) {
UIAlertView *alertView = [[UIAlertViewalloc] initWithTitle:@"網(wǎng)絡(luò)異常"message:[error localizedDescription] delegate:nil cancelButtonTitle:nil otherButtonTitles:@"好的",nil];
[alertViewshow];}
}
原處地址:How do I fix NSURLErrorDomain error -999 in iPhone 3.0 OS - Stack Overflow
二.Xcode 模擬器無法運行的問題解決
更新公司APP新的圖標(biāo)后遇到了下列問題:
iOS simulator運行程序出現(xiàn)問題:
An error was encountered while running (Domain = FBSOpenApplicationErrorDomain, Code = 4)
解決方案:
iOS Simulator----> Reset Contents and Settings ----> Reset
三.XCode升級后插件失效修復(fù)辦法
Xcode插件過期恢復(fù)方法:find ~/Library/Application\\ Support/Developer/Shared/Xcode/Plug-ins -name Info.plist -maxdepth 3 | xargs -I{} defaults write {} DVTPlugInCompatibilityUUIDs -array-add E969541F-E6F9-4D25-8158-72DC3545A6C6
-array-add 后面的key獲取方法:defaults read /Applications/Xcode.app/Contents/Info DVTPlugInCompatibilityUUID
在Terminal中運行上述命令就解決了插件失效的問題
Xcode8已失效
?四.貝塞爾曲線基礎(chǔ)知識
2.Mastering the Bézier Curve in Sketch
五.ReactiveCocoa相關(guān)學(xué)習(xí)資料匯總
ReactiveCocoa 是最近比較火的一個話題,收集整理一下相關(guān)資料
3.http://www.reibang.com/p/e071206103a4
5:GitHub - vczero/react-native-lesson: React-Native入門指南
六.如何面試iOS開發(fā)工程師
前陣子在知乎看到了這篇內(nèi)容,近日偶然想起,把相關(guān)資料整理一下.
如何面試 iOS 工程師? - iOS 開發(fā) - 知乎
某同學(xué)的回答(得到出題人認可):知乎上的一個怎么面試iOS工程師的問題 - 寒流的專欄 - 博客頻道 - CSDN.NET
以及出題人本人的想法與回答:mrpeak.cn/ios/2016/01/07/push