I get a crash log that I cannot reproduce with the message:
"Selector name found in current argument registers: release"
I can not understand what this means and googling did not give me good answers.
It is marked as Exception Type: SIGTRAP
And the line of code with which it is broken is:
let accentColor = data.AccentColor == nil ? UIColor.blackColor() : data.AccentColor!
The same line of code works in the init () function, but it seems to be reset at this later stage after the user clicked a button
This crash happens with a sufficient amount when I send it to users, but I cannot reproduce it or find out what might cause it.
What does this error message mean and what can I do to fix the problem?
source share