Home > Net >  Thread 1: " [UIImage systemImageNamed:]: unrecognized selector sent to class 0x111e616e0"
Thread 1: " [UIImage systemImageNamed:]: unrecognized selector sent to class 0x111e616e0"

Time:02-11

Thread 1: " [UIImage systemImageNamed:]: unrecognized selector sent to class 0x111e616e0"

This error occurs in app delegate when trying to run my application in iOS 12 iphone 6s but its working normally in iOS 13 devices Error text shown in XCode

CodePudding user response:

The reason behind crash is SFSymbol is only available on iOS 13 and above version.

UIImage(systemName: "") -> It will crash on iOS 12 and below version.

If you want to use SFsymbol in iOS 12 and below version then check this URL

How to use SF Symbols in iOS 12 and below?

  • Related