消除 Xcode7 中 directory not found for option 'xxxx' 警告 升级Xcode7之后,你会遇到一些警告信息,诸如以下一条: ld: warning: directory not found for option '-F/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.0.sdk/Developer/Lib…
directory not found for option '-LS60' 选择项目名称----->Targets----->Build Settings----->Search Paths----->Library Search Paths 删除相应的路径 版权声明:本文博主原创文章.博客,未经同意不得转载.…
在XCode7中使用cocos2d-x 3.3以上版本的WebView控件时,碰到了编译错误 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. 很明显,就是苹果将http协议修改成了https协议,需要使用TLS…
看到朋友再写一个SQL语句:两个表a1表中有SN.SN2.TN,b1表有SM.SM2.TN2,若a1的SN中的数据和b1的SM中的数据是一致的,那么将a1中对应的数据修改成b1中对应的数据. update a1 set SN2 = (select B1.SM2 from b1 where A1.SN = B1.SM),TN = (select B1.TN2 from b1 where A1.SN = B1.SM) where a1.SN in (select SMfrom b1);…