iOS 常見(jiàn)錯(cuò)誤(持續(xù)更新)

問(wèn)題:Unbalanced calls to begin/end appearance transitions for
解決:
如果是自定義的UITabBarController需要加入以下方法

#pragma mark - view周期
-(void)viewWillAppear:(BOOL)animated
{
    [self.selectedViewController beginAppearanceTransition: YES animated: animated]; 
}

-(void) viewDidAppear:(BOOL)animated
{
    [self.selectedViewController endAppearanceTransition];
}

-(void) viewWillDisappear:(BOOL)animated
{
    [self.selectedViewController beginAppearanceTransition: NO animated: animated];
}

-(void) viewDidDisappear:(BOOL)animated
{
    [self.selectedViewController endAppearanceTransition];
}

問(wèn)題:subsystem: com.apple.UIKit, category: Touch, enable_level: 0, persist_level: 0, default_ttl: 1, info_ttl: 0, debug_ttl: 0, generate_symptoms: 0, enable_oversize: 1, privacy_setting: 2, enable_private_data: 0
解決:




添加鍵值為:OS_ACTIVITY_MODE
Value值為:disable

問(wèn)題:Xcode8之后訪問(wèn)相冊(cè)、相機(jī)、位置、麥克風(fēng)、藍(lán)牙等權(quán)限
解決:


NSBluetoothPeripheralUsageDescription
訪問(wèn)藍(lán)牙

NSCalendarsUsageDescription
訪問(wèn)日歷

NSCameraUsageDescription
相機(jī)

NSPhotoLibraryUsageDescription
相冊(cè)

NSContactsUsageDescription
通訊錄

NSLocationAlwaysUsageDescription
始終訪問(wèn)位置

NSLocationUsageDescription
位置

NSLocationWhenInUseUsageDescription
在使用期間訪問(wèn)位置

NSMicrophoneUsageDescription
麥克風(fēng)

NSAppleMusicUsageDescription
訪問(wèn)媒體資料庫(kù)

NSHealthShareUsageDescription
訪問(wèn)健康分享

NSHealthUpdateUsageDescription
訪問(wèn)健康更新

NSMotionUsageDescription
訪問(wèn)運(yùn)動(dòng)與健身

NSRemindersUsageDescription
訪問(wèn)提醒事項(xiàng)


問(wèn)題:Snapshotting a view that has not been rendered results in an empty snapshot. Ensure your view has been rendered at least once before snapshotting or snapshot after screen updates.

解決:將跳轉(zhuǎn)的相機(jī)VC屬性設(shè)置成
picker.modalPresentationStyle = UIModalPresentationOverCurrentContext;

問(wèn)題:[MC] Reading from public effective user settings.

解決:設(shè)置權(quán)限的plist需要給一個(gè)描述
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
【社區(qū)內(nèi)容提示】社區(qū)部分內(nèi)容疑似由AI輔助生成,瀏覽時(shí)請(qǐng)結(jié)合常識(shí)與多方信息審慎甄別。
平臺(tái)聲明:文章內(nèi)容(如有圖片或視頻亦包括在內(nèi))由作者上傳并發(fā)布,文章內(nèi)容僅代表作者本人觀點(diǎn),簡(jiǎn)書(shū)系信息發(fā)布平臺(tái),僅提供信息存儲(chǔ)服務(wù)。

相關(guān)閱讀更多精彩內(nèi)容

友情鏈接更多精彩內(nèi)容