I am getting a crash log that I can't repro with the message:
"Selector name found in current argument registers: release"
I cannot figure out what this means and googling, has not given me any good answers.
It is labeled as Exception Type: SIGTRAP
And the line of code that it is crashing at is:
let accentColor = data.AccentColor == nil ? UIColor.blackColor() : data.AccentColor!
The same line of code worked in the init() function, but it seems to be crashing at this later point after the user taps a button
This crash is happening a fair amount when I send it out to users, but I can't repro it or figure out what may be causing it.
What does this error message mean and what can I do to fix the issue?