1:AFNetworking狀態欄網路請求效果直接在AppDelegate裡面didFinishLaunchingWithOptions進行設置[[AFNetworkActivityIndicatorManager sharedManager] setEnabled:YES];這樣在有用AF請求的網...
1:AFNetworking狀態欄網路請求效果
直接在AppDelegate裡面didFinishLaunchingWithOptions進行設置
[[AFNetworkActivityIndicatorManager sharedManager] setEnabled:YES];
這樣在有用AF請求的網路都會自動有效果;就不必在每個請求里單獨寫;
2:UIScrollView偏移64問題
在一個VC里如果第一個控制項是UIScrollView,註意是第一個控制項,就是首先addsubview在VC.view上。接著加到scrollView上的View就會在Y點上發生64的偏移(也就是navigationBar的高度44+電池條的高度20)。
這個在iOS7以後才會出現。
解決辦法:
self.automaticallyAdjustsScrollViewInsets = false; self是你當前那個VC。
如果這個scrollView不是第一個加到self.view上的。也不會發生64的偏移。
3:消息清除一些基礎知識
a:[[UIApplication sharedApplication] cancelAllLocalNotifications]; // 撤銷所有的
b:[[UIApplication sharedApplication] cancelLocalNotification:notification]; // 撤銷某個Notificiation,若要刪除某個特定的Notification,則可以在UserInfo中加入標記,遍歷所有的Notification來刪除。
4:does not contain bitcode
/Users/**/Framework/SDKs/PolymerPay/Library/mobStat/lib**SDK.a(**ForSDK.o)’does not contain bitcode. You must rebuild it with bitcode enabled (Xcodesetting ENABLE_BITCODE), obtain an updated library from the vendor, or disablebitcode for this target. for architecture arm64
要麼讓第三方庫支持,要麼關閉target的bitcode選項。
實際上,在Xcode 7中,我們新建一個iOS程式時,bitcode選項預設是設置為YES的。我們可以在”Build Settings”->”Enable Bitcode”選項中看到這個設置。不過,我們現在需要考慮的是三個平臺:iOS,Mac OS,watchOS。對於iOS,bitcode是可選的;對於watchOS,bitcode是必須的;而Mac OS是不支持bitcode。
5:友盟第三方登錄新浪微博報
WeiboSDK CanNotAuthInWeiboApp WBAuthorizeRequest
AppRedirectURL 配置不一致··
登錄新浪開發者····在我的應用->應用信息->高級應用->授權設置->應用回調頁中的 url 地址保持一致就可 以了
XCODE里的Bundle Identifier要一樣