dyld: Library not loaded: /System/Library/Frameworks/UserNotifications.framework/UserNotifications

来源:互联网 发布:手机淘宝账号注册步骤 编辑:程序博客网 时间:2024/05/17 23:22

一、问题

编译通过,联机调试时,应用启动闪退,XCODE的Output出现提示:

dyld: Library not loaded: /System/Library/Frameworks/UserNotifications.framework/UserNotifications

  Referenced from: /Users/mc/Library/Developer/CoreSimulator/Devices/A9D37BDD-EB06-4451-9776-A716D6C61024/data/Containers/Bundle/Application/9E0690BC-B044-4763-9236-1C8F9A63FCA1/TeaseHappy.app/TeaseHappy

  Reason: image not found

二、解决方法

Found out the solution to the problem. The problem was setting the added frameworks as requiredinstead of optional

Go TO Project-> Targets-> Build Phases-> Link Binary with Libraries

There, set the status of UserNotifications.framework to Optional

This solved my problem.


0 0